Subversion Repositories DevTools

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
7323 2295 d 16 h dpurdie /core_devl/branches/gitBuilder/ Merge from SVN002  
7322 2676 d 19 h dpurdie /core_devl/branches/gitBuilder/ Merge in running changes  
7321 2801 d 19 h dpurdie /core_devl/branches/gitBuilder/  
7320 2956 d 17 h dpurdie /core_devl/branches/gitBuilder/ Many changes to support the building within a sandbox by an automated build system.  
7307 3015 d 19 h dpurdie /core_devl/branches/gitBuilder/ Post Merge commit  
7304 3045 d 16 h dpurdie /core_devl/branches/gitBuilder/ Manually merge in changes from the main development  
7299 2295 d 20 h dpurdie /core_devl/branches/gitBuilder/ Created to duplicate the work done on svn002  
6133 3128 d 21 h dpurdie /core_devl/trunk/ ------------------------------------------------------------------------
Version: 3.13.6000.cr Released: 04-May-17
------------------------------------------------------------------------

Minor changes:
* Makefile directive: PackageFiles
Added option: --PreserveSymlinks.
Used internally for preserving symlinks when building SDKs

* Utility: jats_generate_deployable
Ongoing improvements.

Internal:
Class: JatsCopy::CopyDir
Added options
NoRecurse
NoSubDirList


------------------------------------------------------------------------
Version: 3.13.5000.cr Released: 13-Apr-17
------------------------------------------------------------------------

Minor changes:
* Makefiles: Enhanced platform specifier
Allows mixed use of included and excluded platform names.
ie: Src ('DEVLINUX,!UBUNUT12', .... )

* New Utilities: jats_generate_deployable, jats_generate_bom
Experimental utilities for generation of BOMS

------------------------------------------------------------------------
Version: 3.13.4000.cr Released: 31-Mar-17
------------------------------------------------------------------------

Minor changes:
* Build Files. BuildSrcArchive
Exclude .svn sub directories.

* Utility: jats_sandbox
Improved behaviour of packages that do not build with the current
build filters. They will be silently skipped and not create
build errors.

* Build Files - New alias : INSTRUMENT
This is an alias for active instrumented build targets

* Build Files - New directive : BuildAliasDef
Shorthand for
BuildAlias ('xxx,--Define', ... );
This is the preferred method for defining aliases

* Build Files - BuildAlias directive
The build alias has been extended to support the use of a '!' operator
This allows one, or more platforms to be removed from a definition.
Examples:
BuildAlias( 'A1,--Define', 'DEVLINUX,!ARM9TDMI');
BuildAliasDef ('A1', 'DEVLINUX,!ARM9TDMI');
All platforms covered by the DEVLINUX alias, except ARM9TDMI

BuildAlias( 'A2,--Define', '!ARM9TDMI');
BuildAliasDef( 'A2', '!ARM9TDMI');
All active platforms, except the ARM9TDMI.

* Platforms: GENERIC_XXX
Improved operation of machType based generic platforms when used within the
build system.

Experimental:
* Support for Red Hat Enterprise Linux 7
Compiler is supported via the new platform RHEL7
Jats support is provided via a machine type of linux_x64.
This will change

------------------------------------------------------------------------
Version: 3.13.3000.cr Released: 13-Mar-17
------------------------------------------------------------------------

Minor changes:
* Build Files. BuildSrcArchive
Added a 'platform' argument. It is only used on build machines to
prevent the archive being build on multiple machines.

------------------------------------------------------------------------
Version: 3.13.1000.cr Released: 01-Mar-17
------------------------------------------------------------------------

Minor changes:
* Directive: MakePerlModule
Fixed build issues associated with building Perl Modules under VS2012.
Minor differences in the operation of nmake.

* Build Files
Handle build.pl files with out a BuildInterface directive
Will force an interface directory called 'interface'

Modified parsing of the BuildName to handle some instances of
incorrect use of the '--RelaxedVersion' option.

Note: This option is to be deprecated. Do not use it.
Jats will handle '.cots' packages correctly by itself.

* New Platforms: GENERIC_XXX
A collection of platforms (Alias of GENERICS) that provide an architecture
specific build target. The name of the target is created by joining the
keyword GENERIC_ with the Jats Machine Type.
ie: GENERIC_WIN32, GENERIC_LINUX_I386, GENERIC_LINUX_X64

These targets cannot be mixed with non-generic targets (on the same machine), nor the GENERIC
build target. It is possible to mix GENERIC_WIN32 with UBUNTU16 as they appear on
different architectures.

The targets function is in a similar manner to the GENERIC build target, but
are directed to one or more machines.

Intended uses:
Windows: Creating installers.
The NSIS builder does not require a compiler toolchain.

All: Specialized packaging.

* Makefiles
New option in the platform specifier. --Alias=alias1[:alias2]*
Allows the directive to be true if the current build has the specified alias.
Eg:
PackageFile ('--Alias=TOOLSET',DEVLINUX', ...)
Will package the file(s) if the current build is for a platform that is
a part of the TOOLSET alias AND is also member of the DEVLINUX alias.
It could also have been written as:
PackageFile ('--Alias=TOOLSET',--Alias=DEVLINUX', ...)
but NOT as:
PackageFile ('--Alias=TOOLSET:DEVLINUX', ...)
PackageFile ('TOOLSET,DEVLINUX', ...)
as these will be true if current platform is a TOOLSET or DEVLINUX

* Utility: sandbox
Subcommand info
- Added option to test fingerprints
- Display status in a column for easy reading

------------------------------------------------------------------------
Version: 3.13.0000.cr Released: 20-Feb-17
------------------------------------------------------------------------

Minor changes:
* New build.pl directive BuilToolset.
This directive will enable the generation of the TOOLSET alias.
Provides a sanity test to ensure that tools can be built.
Includes options to limit use to specific architectures

* Support for building many of the platforms on a linux_x64 based machine
Previously many of the compiler were limited to the Ubuntu12 machines.
These can now be built on an Ubuntu16 based machine.

* GenerateFiles directive
Added --Var(Toolset) and --Var(Native).

* Utility: sandbox
Added a 'fingerprint' command to manipulate packages fingerprints.

Sped up the location of build files. The results are cached and
recalulated if the user adds or removes packages from the sandbox.

Internal changes:
* Centralizing build platform information.
 
5885 3445 d 15 h dpurdie /core_devl/trunk/ Added title to LCOV pages  
5884 3445 d 16 h dpurdie /core_devl/trunk/ Rework of code coveral tool - gcov
* Prevent generated files all over the file system - keep then in the package
* Handle some strange build topologies (crypto)
* Simplify the filtering of unwanted artifacts
 
5883 3446 d 19 h dpurdie /core_devl/trunk/ [JATS-266] - jats install and package - does not preserve symbolic links
Modify JatsFileUtil to support the preservation of a symlink
 
5882 3446 d 21 h dpurdie /core_devl/trunk/ [JATS-266] - jats install and package - does not preserve symbolic links
Mark shared library soname and link name bits as needing symlinks
Modify JatsFileUtil to support the preservation of a symlink
 
5817 3463 d 22 h dpurdie /core_devl/trunk/CFG/ UBUNUTU12C11_INSTRUMENT and UBUNUTU12_INSTRUMENT platforms
lcov includes branch coverage

All _INSTRUMENT targets
Limit coverage to file within the package
Now excludes all external libraries
 
5796 3473 d 14 h dpurdie /core_devl/trunk/ [JATS-373] UBUNUTU12C11 and UBUNUTU12C11_INSTRUMENT platforms
Specify the dynamic linker used to load programs generated by this compiler
 
5744 3505 d 15 h dpurdie /core_devl/trunk/ Minor changes:
* Utility cache_dpkg
When used by the build system, the contents of the 'lcov' directory
will not be cached.

Add facility to allow build system to wait for package replication
to occur. Only active when a replica store is configured.

* UBUNUTU12C11 and UBUNUTU12C11_INSTRUMENT platforms
Added 'rpath' elements to generated executables to ensure that
the all glibc components required by the runtime can be located.
 
5736 3509 d 14 h dpurdie /core_devl/trunk/ Minor changes:
* C11 Support under GCC
Use '-std=gnu++11' for building c++ files (Not -std=c++11)
Note: Use of the compiler definition 'linux' is non-standard
__linux__ is the standard definition.
 
5731 3509 d 16 h dpurdie /core_devl/trunk/ Set up path to gcov so that it is extracted from the compiler toolchain  
5726 3512 d 13 h dpurdie /core_devl/trunk/ Added '-std=c++11' for building c++ files  
5716 3515 d 15 h dpurdie /core_devl/trunk/ Added platforms UBUNTU12C11 and UBUNTU12C11_INSTRUMENT  
5708 3520 d 16 h dpurdie /core_devl/trunk/ Remove trimeout from unit tests under Windows only
Added COBRA2 and VIPER2
 
5619 3564 d 16 h dpurdie /core_devl/trunk/ Minor changes:
* SK20 Toolchain
Version 4.1.0 of the SK20 toolchain has beencompletely replaced
with a new version. 4.1.1. The SK20V1 target uses the new compiler.

Version 4.1.0 was not used to generate released software. It is
no longer needed. The new compiler-version is available in the
arm-unknown-linux-gnueabi-sk20 package.
 
5330 3695 d 19 h dpurdie /core_devl/trunk/ Added support for compiler version 4.1.0.0 of the SK20 platform.  
5115 3831 d 19 h dpurdie /core_devl/trunk/ GCC CompileOption - Generate PIC
Fix --Alias in BuildProduct
 
4928 3942 d 20 h dpurdie /core_devl/trunk/  
4835 3970 d 21 h dpurdie /core_devl/trunk/ Fixed issue with lcov versions.
It is now configurable for each platform.
 
4814 3977 d 15 h dpurdie /core_devl/trunk/ Initial 64 bit support for Windows and Ubuntu  
4778 3992 d 20 h dpurdie /core_devl/trunk/ Reworked the mechanism for extending rules and recipes for pre/post Unit Test support
Added Post UTF processing for Java Packages
 
4728 4031 d 15 h dpurdie /core_devl/trunk/ Minor changes:
* New build Alias - NATIVE
NATIVE is a set of platforms, in the current build, which build
artifacts that can be expected to run on the build machine.

The NATIVE alias has been created to simplify the support
for automated unit tests.

* New build platform - UBUNTU12_INSTUMENT
This build target is similar to UBUNTU12, except that it
generates instrumented code with gcov. The platform's unit tests
will create and maintain a set of lcov files.

Packages generated withthis target SHOULD NOT be deployed to the field.
 
4109 4356 d 15 h dpurdie /core_devl/trunk/ Initial support for the SK20 Device  
4094 4396 d 13 h dpurdie /core_devl/trunk/ Utility: svn createPackage
Perform a validity check on any directory tree being imported. It
must not contain any of the following reserved directory names:
.svn, .git, .hg, .cvs, tags, trunk or branches

GCC Based build targets
Extended CTAGS support to GCC based targets.
'jats make ctags' will generate a ctags file.
 
4034 4472 d 19 h dpurdie /core_devl/trunk/ Support for android NDK.
Added 3 platforms (ANDROIDARM, ANDROIDMIPS and ANDROIDX86) and an alias ANDROIDNDK
Extended GCC toolset to allow compiler to be provided by a package
 
4003 4496 d 14 h dpurdie /core_devl/trunk/ Automated Build System Support for machines that do not build the package  
3967 4515 d 14 h dpurdie /core_devl/trunk/ Merge work to trunk for Version: 3.2.0000.cr  
373 5094 d 8 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Major changes:
* GCC Toolset
Modified the creation and maintenance of debug information.
New methodology is:
Debug information is created for both production and debug builds
Debug information is placed in a .dbg file, which is linked to the
executable, or shared library. The .dbg file is packaged in the manner
as the main binary.

This methodology does not bloat the binary with debug information, while
retaining debug information. The binary transferred to an embedded
device does not contain debug information, yet the image used in the
debugger can still access the debug information. This is the best of
both worlds.

Minor changes:
* HTML Documentation
JatsWelcome.html - Extended references to BMS documentation.
 
369 5117 d 10 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Minor changes:
* New Platform and Toolchain
Platform is RIORDT. This uses the MSP430 toolchain.
Beta release of this toolchain

* Jats Escrow. Escrow extraction
Force views created to be done in the same manner as the build daemon.
Under Clearcase, do not include the /main/0 rule.

* Utility: ccrelease (jats release, jats extract)
Correct use of /main/0 on Unix platforms to match Windows behavior.
Only add /main/0 if the user has provided a path to a directory within
a vob.

* Various changes to remove warnings when used with perl 5.14.
Note: Perl 5.14 is not recommended.
Perl 5.8.8 is recommended.

* Windows utilities
Updated 7z to version 9.20.

* Subversion Support
Support for 1.7 error messages
Extended the 'jats svn' utility. New subcommands:
paths - Display Subversion tag to URL conversions
tag - Convert a path or URL to a Release Manager Tag
url - Convert Release Manager tag to URL

* COBRA Toolset
Suppress compiler warning on incompatible ABI

* Create dpkg utility
Allows packaging from a sandbox, but only of package versions 99.99.99
 
339 5573 d 6 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Major changes:
* SharedLib directives for Solaris and GCC targets.
Added support to control the 'soname' embedded within the shared
library. Refer the MASS-00166 for full details. Use with care.
 
337 5573 d 14 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Major changes:
* New platform - 'COBRA'.
Support for the ARM926EJS based hardware.
This is a Linux based target.
Requires a new compiler to be installed into build machines
 
335 5574 d 12 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Major changes:
* [DEVI-062103]
Many (11) toolsets - all that generate linker dependency
files for creating shared libraries or programs.
Solaris, Gcc, WIN32, Wince, MOS, Verix, Keil, AVR_IAR,
CSHARP, MCR, Pharlap.

Better, simpler, and in some cases correct, generation
of dependency files used in linking. Also generate separate
files for Production and Debug builds.

Minor changes:
* Jats sandbox command
The 'info' subcommand will highlight external packages that cannot be
found in any of the the package archives.

* Jats release -extract
The ClearCase view that is created will have a comment tag added that
describes:
- the directory in which the user created the view
- the date of creation

* PackageFile directive
Now supports --NoRecurse and --Recurse in conjunction with --DirTree

Internal:
* PackageFile, PackageHdr and InstallHdr directives
Removed --Abs option - its not supported
Fixed --Full option.
 
333 5622 d 14 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Major changes:

Minor changes:
* Dependency Generation Tool - mkdepend
Correct a problem encountered when the name of an included file
matches the name of a subdirectory within the include search path
resulting in multiple builds.

* SOLARIS and LINUX toolsets
Corrected problem in dependency tracking of shared libraries
Dependency between shared librares was not being used at all.

Only affected Solaris and Linux builds
 
321 5783 d 13 h dpurdie /core_devl/trunk/ DevTools/core_devl: Checkin by Svn Import
Major changes:
* Makefile directive helper function: If
Used within another directive to enable or disable arguments passed to the
outer directive. The first argument is a 'platform' specifier - as in
all Jats Make directives. If making for the specified platform, then the
remainder of the arguments are inserted into the directives argument
stream.

Example:

SharedLib ( '*', 'mySharedLib', @OBJS
, If ('WIN32', '-llibrary1', '-llibrary2' )
, If ('SOLARIS', '-llibrary3' )
);
Minor changes:
* Makefile directive: InstallLibs
Correctly installs, as libraries, files that are specified with a 'Src'
directive. This is consistent with the operation of the PackageLibs
directive.

* GCC Toolkit
Changes to the shared library dependency processing to bring it inline
with other toolers. Will terminate after determining that some
libraries cannot be found. This will ensure that the error message is at
the point of termination.

* Jats save_build utility
Corrected problem in unreserving a reserved checkout of a build.pl file
under windows.

* Jats sandbox
ClearCase views created with in the sandbox are created with a tag that
is named after the sandbox. This allows multiple instances of a view
in different sandboxes.