2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-26 16:42:15 +00:00

Merge: increase page size for tlib

[SVN r36845]
This commit is contained in:
Vladimir Prus
2007-01-30 10:11:58 +00:00
parent 0496dd4a6c
commit 27ab8f6ef2

View File

@@ -152,13 +152,16 @@ flags borland.link LIBRARY_OPTION <toolset>borland : "" : unchecked ;
# The NEED_IMPLIB variable controls whether we need to invoke implib.
flags borland.archive AROPTIONS <archiveflags> ;
# Declare action for archives. We don't use response file
# since it's hard to get "+-" there.
# The /P256 increases 'page' size -- with too low
# values tlib fails when building large applications.
# CONSIDER: don't know what 'together' is for...
actions updated together piecemeal archive
{
$(.set-path)$(.root:W)$(.old-path)
tlib $(AROPTIONS) /u /a /C "$(<:W)" +-"$(>:W)"
tlib $(AROPTIONS) /P256 /u /a /C "$(<:W)" +-"$(>:W)"
}