summaryrefslogtreecommitdiffstats
path: root/build2/utility.ixx
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-161-1/+1
|
* Update copyright yearKaren Arutyunov2018-05-191-1/+1
|
* Move trim(), next_word() to libbutlBoris Kolpackov2018-04-281-29/+0
|
* Strip out_root when hashing linker input pathsBoris Kolpackov2018-03-211-0/+18
| | | | | This allows moving out_root of simple projects (no rpath, -I$out_root, or similar) without causing a re-link which we use for testing.
* Extend find_option_prefix() to return optionBoris Kolpackov2018-01-051-4/+4
|
* Filter out warning as error options during preprocessingBoris Kolpackov2017-08-061-12/+12
|
* Add workaround for Clang module import during preprocessingBoris Kolpackov2017-06-121-4/+25
|
* Update copyright yearBoris Kolpackov2017-01-051-1/+1
|
* Handle *.export.libs, distinguish interface and implementation dependenciesBoris Kolpackov2016-08-241-0/+14
| | | | | | | | | | | | | | | | | | | | | A library dependency on another libraries is either "interface" or "implementation". If it is interface, then everyone who links to this library should also link to the interface dependency, explicitly. A good example of an interface dependency is a library API that is called in inline functions. Interface dependencies of a library should be explicitly listed in the *.export.libs (where we can also list target names). So the typical usage will be along these lines: import int_libs = libfoo%lib{foo} import int_libs += ... import imp_libs = libbar%lib{bar} import imp_libs += ... lib{baz}: ... $int_libs $imp_libs lib{baz}: cxx.export.libs = $int_libs
* Implement support for C compilationBoris Kolpackov2016-08-121-1/+48
| | | | We now have two new modules: cc (c-common) and c.
* Make /EHsc and /MD default for VC compilerBoris Kolpackov2016-07-291-2/+29
|
* Name and cleanup extra VC files (.pdb, .ilk, .idb)Boris Kolpackov2016-07-151-2/+2
|
* New variable architectureBoris Kolpackov2016-03-281-0/+1
|
* Implement compiler guessing, including icc and msvcBoris Kolpackov2016-03-071-0/+29
|
* Implement auxiliary dependency database (.d files), use in cxx.compileBoris Kolpackov2016-02-291-0/+27
This is part of the "High Fidelity Build" work.