aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/link.cxx
AgeCommit message (Collapse)AuthorFilesLines
2016-08-26Add pkg-config support for import installedBoris Kolpackov1-142/+253
Redesign library importing/exporting while at it.
2016-08-25Handle *.export.loptionsBoris Kolpackov1-2/+26
2016-08-24Pick *.libs variable depending on library type during static linkingBoris Kolpackov1-9/+33
2016-08-24Handle *.export.libs, distinguish interface and implementation dependenciesBoris Kolpackov1-51/+225
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
2016-08-22Cache process_path, use fallback search directory for binutilsBoris Kolpackov1-10/+17
2016-08-19Implement uninstall operationBoris Kolpackov1-4/+10
2016-08-17Add support for config.bin.{lib,exe}.{prefix,suffix}Boris Kolpackov1-7/+11
This replaces the bin.libprefix functionality.
2016-08-12Implement support for C compilationBoris Kolpackov1-0/+1850
We now have two new modules: cc (c-common) and c.