diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2022-10-06 08:27:33 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2022-10-16 13:12:33 +1300 |
commit | d7e9f7453f23fd1a2fc87955b3a6b111c5e79856 (patch) | |
tree | a9ee8099eb0ff43d66d4751e1f73f97fdfc12340 /scripts/crosstool-NG.sh | |
parent | 61c4ccac5c751a7e9900d32af53e9f01e6c09bd8 (diff) | |
download | crosstool-ng-d7e9f7453f23fd1a2fc87955b3a6b111c5e79856.tar.gz crosstool-ng-d7e9f7453f23fd1a2fc87955b3a6b111c5e79856.tar.bz2 crosstool-ng-d7e9f7453f23fd1a2fc87955b3a6b111c5e79856.zip |
Add the gdc compiler to the list of tools checked/linked
Add gdc to the tool list but leave it optionnal.
Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
Diffstat (limited to 'scripts/crosstool-NG.sh')
-rw-r--r-- | scripts/crosstool-NG.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/crosstool-NG.sh b/scripts/crosstool-NG.sh index f695613c..383de66d 100644 --- a/scripts/crosstool-NG.sh +++ b/scripts/crosstool-NG.sh @@ -437,7 +437,7 @@ if [ -z "${CT_RESTART}" ]; then t="${!r}-" fi - for tool in ar as dlltool gcc g++ gcj gnatbind gnatmake ld libtool nm objcopy objdump ranlib strip windres; do + for tool in ar as dlltool gcc g++ gcj gnatbind gdc gnatmake ld libtool nm objcopy objdump ranlib strip windres; do # First try with prefix + suffix # Then try with prefix only # Then try with suffix only, but only for BUILD, and HOST iff REAL_BUILD == REAL_HOST |