mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-29 15:44:03 +00:00
complibs/cloog: fix linking with libstdc++
This rules out 0.15.5 and previous versions, that did not have this option, so remove them from the list. Anyway, they were marked 'OBSOLETE', so it's not a big loss... [Yann E. MORIN: remove obsolete versions] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
This commit is contained in:
parent
28c5ee8baf
commit
63750f8841
@ -26,21 +26,6 @@ config CLOOG_V_0_15_6
|
||||
bool
|
||||
prompt "0.15.6"
|
||||
|
||||
config CLOOG_V_0_15_5
|
||||
bool
|
||||
prompt "0.15.5 (OBSOLETE)"
|
||||
depends on OBSOLETE
|
||||
|
||||
config CLOOG_V_0_15_4
|
||||
bool
|
||||
prompt "0.15.4 (OBSOLETE)"
|
||||
depends on OBSOLETE
|
||||
|
||||
config CLOOG_V_0_15_3
|
||||
bool
|
||||
prompt "0.15.3 (OBSOLETE)"
|
||||
depends on OBSOLETE
|
||||
|
||||
endchoice
|
||||
|
||||
config CLOOG_VERSION
|
||||
|
@ -55,7 +55,8 @@ do_cloog() {
|
||||
cloog_opts+=( --enable-shared --disable-static )
|
||||
else
|
||||
cloog_opts+=( --disable-shared --enable-static )
|
||||
cloog_LDFLAGS='-lstdc++ -lm'
|
||||
cloog_opts+=( --with-host-libstdcxx='-lstdc++' )
|
||||
cloog_LDFLAGS='-lm'
|
||||
fi
|
||||
|
||||
CFLAGS="${CT_CFLAGS_FOR_HOST}" \
|
||||
|
Loading…
x
Reference in New Issue
Block a user