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:
Yann E. MORIN" 2010-11-29 00:50:21 +01:00 committed by Bill Pringlemeir
parent 28c5ee8baf
commit 63750f8841
2 changed files with 2 additions and 16 deletions

View File

@ -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

View File

@ -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}" \