aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/windows-rpath.cxx
AgeCommit message (Collapse)AuthorFilesLines
2016-08-12Implement support for C compilationBoris Kolpackov1-274/+0
We now have two new modules: cc (c-common) and c.
2016-07-23Adapt to fdstream extensionKaren Arutyunov1-6/+5
2016-07-19Add import library target libi{}, make libs{} the DLLBoris Kolpackov1-29/+36
In the end, having libs{} be the DLL with import library being its member is more natural than making libs{} the import library and having dll{} as its member.
2016-07-17Redesign obj to exe/lib mappingBoris Kolpackov1-2/+2
Specifically: * objso{} and libso{} target types have been renamed to objs{} and libs{} * obje{} has been added (so now we have obje{}, obja{}, and objs{}) * obje{} is now used for building exe{} * object file extensions have been changed to use "hierarchical extensions" that reflect the extension of the corresponding exe/lib target (instead of the -so suffix we used), specifically: obje{}: foo.o, (UNIX), foo.exe.o (MinGW), foo.exe.obj (Windows) obja{}: foo.a.o (UNIX, MinGW), foo.lib.obj (Windows) objs{}: foo.so.o (UNIX), foo.dylib.o (Darwin), foo.dll.o (MinGW), foo.dll.obj (Windows)
2016-07-11Reimplement Windows rpath emulation using embedded manifestsBoris Kolpackov1-0/+268
As a bonus, everyone now gets a sane default manifest.