diff --git a/src/tools/borland.jam b/src/tools/borland.jam index 1c099d6d2..1b5b447e8 100644 --- a/src/tools/borland.jam +++ b/src/tools/borland.jam @@ -152,13 +152,16 @@ flags borland.link LIBRARY_OPTION borland : "" : unchecked ; # The NEED_IMPLIB variable controls whether we need to invoke implib. flags borland.archive AROPTIONS ; + # 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)" }