2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Second attempt at fixing msvc / Borland lib builds - removed piecemeal action.

[SVN r20785]
This commit is contained in:
John Maddock
2003-11-11 12:36:14 +00:00
parent 17500f4c67
commit 283daad33f
2 changed files with 5 additions and 3 deletions

View File

@@ -177,7 +177,7 @@ rule Archive-action
borland-Archive-action $(<) : $(>) ;
}
actions updated together piecemeal borland-Archive-action
actions borland-Archive-action
{
IF EXIST "$(<)" DEL "$(<)"
"$(BCC_TOOL_PATH)tlib" /P64 /u /a /C /$(ARFLAGS) "$(<)" +"$(>)"
@@ -189,3 +189,4 @@ actions updated together piecemeal borland-Archive-action

View File

@@ -185,10 +185,11 @@ rule Archive-action
with-command-file vc-Archive $(<) : $(>) ;
}
actions updated together piecemeal vc-Archive
actions vc-Archive
{
$(VC_SETUP)
if exist "$(<)" DEL "$(<)"
"$(VC_TOOL_PATH)$(VC_LINKER)" /lib $(ARFLAGS) $(PDB_LINKFLAG)"$(VC_PDB_FILE)" /out:"$(<)" %_$(<:B)_% @"$(>)"
"$(VC_TOOL_PATH)$(VC_LINKER)" /lib $(ARFLAGS) $(PDB_LINKFLAG)"$(VC_PDB_FILE)" /out:"$(<)" @"$(>)"
}