diff options
Diffstat (limited to 'main/gcc/APKBUILD')
-rw-r--r-- | main/gcc/APKBUILD | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/main/gcc/APKBUILD b/main/gcc/APKBUILD index 105b4936ef..76f1e845da 100644 --- a/main/gcc/APKBUILD +++ b/main/gcc/APKBUILD @@ -7,7 +7,7 @@ _specs_gcc_ver=4.4.3 _uclibc_abiver=0.9.32 -pkgrel=1 +pkgrel=2 pkgdesc="The GNU Compiler Collection" url="http://gcc.gnu.org" arch="all" @@ -23,9 +23,7 @@ replaces="libstdc++" : ${LANG_JAVA:=true} : ${LANG_GO:=true} : ${LANG_FORTRAN:=true} -# to build ada you need a working bootstrap gnat in PATH -# and then run: LANG_ADA=true abuild -r -: ${LANG_ADA:=false} +: ${LANG_ADA:=true} if [ "$CBUILD" != "$CHOST" ]; then # fixup flags. seems gcc treats CPPFLAGS as global without @@ -45,7 +43,8 @@ if [ "$CBUILD" != "$CHOST" ]; then LANG_JAVA=false LANG_GO=false LANG_FORTRAN=false - LANG_ADA=false + # ada needs bootstrapping + LANG_ADA=true fi _languages=c,c++ |