2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 13:42:14 +00:00

Fix reference to no-existing response file code

[SVN r34758]
This commit is contained in:
Vladimir Prus
2006-07-28 12:09:25 +00:00
parent 7789154664
commit d85d0e5385

View File

@@ -104,16 +104,9 @@ actions compile.c++
$(CONFIG_COMMAND) -c -e5 --no_version --no_prelink_verbose --display_error_number --long_long --diag_suppress=9,21,161,748,940,962 --diag_error=461 -D__STL_LONG_LONG -U$(UNDEFS) -D$(DEFINES) $(WARN) $(CFLAGS) $(C++FLAGS) -I"$(HDRS)" -I"$(STDHDRS)" -I"$(SYSHDRS)" -o "$(<)" "$(>)"
}
#### Archive ####
rule archive ( targets + : sources * : properties * )
{
common.response-file $(targets) : $(sources) : $(targets[2]) : $(properties) ;
}
actions updated together piecemeal archive
{
$(CONFIG_COMMAND) --no_version --no_prelink_verbose --prelink_object "$(LIBRARIES)"
lib $(ARFLAGS) /nologo /out:"$(<:S=.lib)" "$(LIBRARIES)"
$(CONFIG_COMMAND) --no_version --no_prelink_verbose --prelink_object "$(>)"
lib $(ARFLAGS) /nologo /out:"$(<:S=.lib)" "$(>)"
}