aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-08-23 23:18:49 +0200
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-08-23 23:18:49 +0200
commit1504a1ef106643278e80bd98b21dd4439204e8ec (patch)
treeddb62dd3f7dd69aa6ccc6174db69c38e97f62d16 /config
parente81fe2c77814ba7638c6818a9dac2d1568fbad51 (diff)
downloadcrosstool-ng-1504a1ef106643278e80bd98b21dd4439204e8ec.tar.gz
crosstool-ng-1504a1ef106643278e80bd98b21dd4439204e8ec.tar.bz2
crosstool-ng-1504a1ef106643278e80bd98b21dd4439204e8ec.zip
complibs: noone is using companion libs on the target; nuke them
As there's no longer any user of the companion libraries on the target, nuke the build for the target. Well, at least, there's libelf that's still needed by ltrace, so we keep it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'config')
-rw-r--r--config/companion_libs.in45
1 files changed, 5 insertions, 40 deletions
diff --git a/config/companion_libs.in b/config/companion_libs.in
index 386d382f..66598849 100644
--- a/config/companion_libs.in
+++ b/config/companion_libs.in
@@ -102,57 +102,22 @@ config LIBELF
can say 'Y' here, although it is unknown yet if any other component
can use it.
-config GMP_TARGET
- bool
-
-config MPFR_TARGET
- bool
- select GMP_TARGET
-
-config PPL_TARGET
- bool
- select GMP_TARGET
- select MPFR_TARGET
-
-config CLOOG_TARGET
- bool
- select GMP_TARGET
- select MPFR_TARGET
- select PPL_TARGET
-
-config MPC_TARGET
- bool
- select GMP_TARGET
- select MPFR_TARGET
- select PPL_TARGET
- select CLOOG_TARGET
-
config LIBELF_TARGET
bool
-if GMP || GMP_TARGET
-comment "GMP version needed to build for target"
- depends on !GMP
+if GMP
source "config/companion_libs/gmp.in"
endif
-if MPFR || MPFR_TARGET
-comment "MPFR version needed to build for target"
- depends on !MPFR
+if MPFR
source "config/companion_libs/mpfr.in"
endif
-if PPL || PPL_TARGET
-comment "PPL version needed to build for target"
- depends on !PPL
+if PPL
source "config/companion_libs/ppl.in"
endif
-if CLOOG || CLOOG_TARGET
-comment "CLOOG version needed to build for target"
- depends on !CLOOG
+if CLOOG
source "config/companion_libs/cloog.in"
endif
-if MPC || MPC_TARGET
-comment "MPC version needed to build for target"
- depends on !MPC
+if MPC
source "config/companion_libs/mpc.in"
endif
if LIBELF || LIBELF_TARGET