summaryrefslogtreecommitdiffstats
path: root/build2/cc/windows-rpath.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearKaren Arutyunov2019-01-161-1/+1
|
* Fix issues with interaction between binless logic and Windows DLLsBoris Kolpackov2018-09-061-2/+2
|
* Initial work on binless (binary-less aka header-only) library supportBoris Kolpackov2018-09-041-2/+2
|
* Implement missing pieces in utility libraries supportBoris Kolpackov2018-08-251-2/+12
| | | | In particular, we can now build static libraries out of utility libraries.
* Implement support for excluded and ad hoc prerequisitesBoris Kolpackov2018-06-281-2/+2
| | | | | | | | | | | | | | The inclusion/exclusion is controlled via the 'include' prerequisite-specific variable. Valid values are: false - exclude true - include adhoc - include but treat as an ad hoc input For example: lib{foo}: cxx{win32-utility}: include = ($cxx.targe.class == 'windows') exe{bar}: libs{plugin}: include = adhoc
* Update copyright yearKaren Arutyunov2018-05-191-1/+1
|
* Implement forwarded configurations and backlinkingBoris Kolpackov2018-04-261-5/+4
|
* Get rid of action rule override semanticsBoris Kolpackov2018-02-031-21/+21
| | | | | Instead we now have two more or less separate match states for outer and inner parts of an action.
* Fix few undefined behavior (ubsan) bugsBoris Kolpackov2018-01-041-3/+4
|
* Fix bug in pdb member searchBoris Kolpackov2017-08-011-8/+12
|
* See through utility libraries in Windows rpath emulation codeBoris Kolpackov2017-07-291-8/+10
|
* Fix bug in installed import library search on WindowsBoris Kolpackov2017-07-291-0/+6
|
* Implement support for linking whole archiveBoris Kolpackov2017-07-281-6/+6
|
* Initial infrastructure for utility librariesBoris Kolpackov2017-07-271-6/+6
|
* Add support for ln testscript builtinKaren Arutyunov2017-06-151-12/+10
|
* Add hxx extension for headersKaren Arutyunov2017-05-011-7/+7
|
* Make use of throw_generic_error()Karen Arutyunov2017-03-221-0/+8
|
* Implement parallel matchBoris Kolpackov2017-03-021-5/+12
|
* Use target:as<> instead of static_cast for target castingBoris Kolpackov2017-02-131-2/+1
|
* Pass const target& to recipesBoris Kolpackov2017-02-131-14/+15
|
* Pass const scope& where modification should not happenBoris Kolpackov2017-02-131-4/+6
|
* Make use of operator<<(ostream, exception)Karen Arutyunov2017-01-091-4/+4
|
* Update copyright yearBoris Kolpackov2017-01-051-1/+1
|
* Add io_error alias for std::ios_base::failureKaren Arutyunov2016-09-151-1/+1
|
* Fix crashing on unhandled system_error thrown by file_exists()Karen Arutyunov2016-09-131-2/+2
|
* Fix Windows rpath supportBoris Kolpackov2016-08-281-41/+146
|
* Implement support for C compilationBoris Kolpackov2016-08-121-0/+273
We now have two new modules: cc (c-common) and c.