summaryrefslogtreecommitdiff
path: root/Source/cmGhsMultiTargetGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* fix a load of include-what-you-use violationsDaniel Pfeifer2016-09-031-0/+1
|
* cmLocalGenerator: Pass configuration to GetTargetFlagsTobias Hunger2016-06-081-1/+1
| | | | | Move the configuration lookup to call sites. This will allow multi-configuration callers to use the method.
* GHS: Compute include directories consistently with other generatorsBrad King2016-05-241-2/+4
| | | | | All generators use cmLocalGenerator::GetIncludeDirectories to construct the final list of include directories for a target.
* GHS: Use shorter object file names on collisionGeoff Viola2016-05-181-14/+6
|
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-315/+239
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* GHS: Shorten long object paths with duplicate source namesGeoff Viola2016-05-061-21/+70
| | | | | Detect when the resulting object path is too long and compute an alternative name using a hash.
* Format include directive blocks and ordering with clang-formatBrad King2016-04-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sort include directives within each block (separated by a blank line) in lexicographic order (except to prioritize `sys/types.h` first). First run `clang-format` with the config file: --- SortIncludes: false ... Commit the result temporarily. Then run `clang-format` again with: --- SortIncludes: true IncludeCategories: - Regex: 'sys/types.h' Priority: -1 ... Commit the result temporarily. Start a new branch and cherry-pick the second commit. Manually resolve conflicts to preserve indentation of re-ordered includes. This cleans up the include ordering without changing any other style. Use the following command to run `clang-format`: $ git ls-files -z -- \ '*.c' '*.cc' '*.cpp' '*.cxx' '*.h' '*.hh' '*.hpp' '*.hxx' | egrep -z -v '(Lexer|Parser|ParserHelper)\.' | egrep -z -v '^Source/cm_sha2' | egrep -z -v '^Source/(kwsys|CursesDialog/form)/' | egrep -z -v '^Utilities/(KW|cm).*/' | egrep -z -v '^Tests/Module/GenerateExportHeader' | egrep -z -v '^Tests/RunCMake/CommandLine/cmake_depends/test_UTF-16LE.h' | xargs -0 clang-format -i This selects source files that do not come from a third-party. Inspired-by: Daniel Pfeifer <daniel@pfeifer-mail.de>
* Source: Stabilize include orderBrad King2016-04-291-0/+1
| | | | | Each source file has a logical first include file. Include it in an isolated block so that tools that sort includes do not move them.
* GHS: Fix handling of duplicate source filenames (#16046)Geoff Viola2016-04-251-0/+42
| | | | | Green Hills MULTI project files must specify explicitly distinct object file names for source files with the same name.
* GHS: Implement link flags and dirs for non-target groups (#16029)Geoff Viola2016-03-281-2/+32
|
* GHS: Fix try_compile (#15975)Geoff Viola2016-03-211-2/+8
|
* cmGeneratorTarget: Add API for target-relative commands.Stephen Kelly2015-10-261-2/+2
|
* GHS: Port to cmGeneratorTarget.Stephen Kelly2015-10-241-26/+30
|
* cmGeneratorTarget: Move GetExportMacro from cmTarget.Stephen Kelly2015-10-211-1/+1
|
* cmLocalGenerator: Port some API to cmGeneratorTarget.Stephen Kelly2015-10-171-4/+9
|
* Merge topic 'ghs-drop-optgroup'Brad King2015-10-161-3/+3
|\ | | | | | | | | ce7ccafc GHS: Remove extra flag to GHS MULTI compiler (#15771)
| * GHS: Remove extra flag to GHS MULTI compiler (#15771)Geoff Viola2015-10-151-3/+3
| | | | | | | | | | | | Do not produce "{optgroup=GhsCommonOptions}" in the generated .gpj files. The flag was added originally to match an old project file, but it does not seem necessary and is not compatible with all GHS versions.
* | cmState: Move TargetType enum from cmTarget.Stephen Kelly2015-10-151-4/+4
| | | | | | | | | | | | | | Mostly automated: values=( "EXECUTABLE" "STATIC_LIBRARY" "SHARED_LIBRARY" "MODULE_LIBRARY" "OBJECT_LIBRARY" "UTILITY" "GLOBAL_TARGET" "INTERFACE_LIBRARY" "UNKNOWN_LIBRARY" "TargetType") for i in "${values[@]}"; do git grep -l cmTarget::$i | xargs sed -i "s|cmTarget::$i|cmState::$i|g"; done
* | Generators: Use GetType from the cmGeneratorTarget.Stephen Kelly2015-10-151-3/+3
|/
* cmLocalGenerator: Add Home directory accessors.Stephen Kelly2015-10-091-2/+4
| | | | Reduce reasons for cmLocalGenerator to have a cmMakefile.
* Access sources through cmGeneratorTarget.Stephen Kelly2015-10-071-2/+2
|
* GHS: Port API to cmGeneratorTarget.Stephen Kelly2015-10-071-6/+8
|
* GHS: Fix generated file path slashes and quoting for 6.1.6Geoff Viola2015-09-091-4/+7
|
* GHS: Tell MULTI to delete .elf.ael fileGeoff Viola2015-09-091-7/+5
|
* cmGeneratorTarget: Move compile defintions processing from cmTarget.Stephen Kelly2015-08-261-1/+2
|
* cmGeneratorTarget: Move compile options processing from cmTarget.Stephen Kelly2015-08-261-2/+2
|
* cmGeneratorTarget: Move include directory processing from cmTarget.Stephen Kelly2015-08-261-1/+1
|
* cmGeneratorTarget: Move GetLinkerLanguage from cmTarget.Stephen Kelly2015-08-051-1/+2
|
* cmComputeTargetDepends: Change API to use cmGeneratorTarget.Stephen Kelly2015-07-011-2/+2
|
* GHS: Use a cmGeneratorTarget in generator API.Stephen Kelly2015-06-221-9/+9
|
* Add a 'Green Hills MULTI' generator on WindowsGeoff Viola2015-04-201-0/+600
Green Hills MULTI is an IDE for embedded real-time systems. The IDE's product page can be found here: http://www.ghs.com/products/MULTI_IDE.html It supports cross compiling on ARM, Intel x86, and other architectures with various operating systems. The IDE exists on Linux and Windows host systems, but CMake will currently only generate the project files on Windows host systems.