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

Workaround NT line-length limitation

[SVN r14520]
This commit is contained in:
Dave Abrahams
2002-07-18 16:02:56 +00:00
parent 7db9a91ae0
commit ee5e021b0e
2 changed files with 8 additions and 0 deletions

View File

@@ -31,6 +31,10 @@ rule Link-action
# proved to be neccessary with some versions of Cygwin.
IMPLIB_COMMAND on $(<) = "-Wl,--exclude-symbols,_bss_end__:_bss_start__:_data_end__:_data_start__ -Wl,--out-implib," ;
mingw-Link-action $(<) : $(>) ;
# Workaround GCC's lack of command-files and NT's line-length limitation.
if $(NT) {
JAMSHELL on $(<) = % ;
}
}
# for mingw, we repeat all libraries so that dependencies are always resolved

View File

@@ -31,6 +31,10 @@ rule Link-action
# proved to be neccessary with some versions of Cygwin.
IMPLIB_COMMAND on $(<) = "-Wl,--exclude-symbols,_bss_end__:_bss_start__:_data_end__:_data_start__ -Wl,--out-implib," ;
mingw-Link-action $(<) : $(>) ;
# Workaround GCC's lack of command-files and NT's line-length limitation.
if $(NT) {
JAMSHELL on $(<) = % ;
}
}
# for mingw, we repeat all libraries so that dependencies are always resolved