Rev 2074 | Rev 2139 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2074 | Rev 2125 | ||
---|---|---|---|
Line 89... | Line 89... | ||
89 | echo ">>> Compiling and installing GCC" |
89 | echo ">>> Compiling and installing GCC" |
90 | cd "${OBJDIR}" |
90 | cd "${OBJDIR}" |
91 | check_error $? "Change directory failed." |
91 | check_error $? "Change directory failed." |
92 | "${GCCDIR}/configure" "--host=${HOST}" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --without-headers --disable-shared |
92 | "${GCCDIR}/configure" "--host=${HOST}" "--target=${TARGET}" "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" --with-gnu-as --with-gnu-ld --disable-nls --disable-threads --enable-languages=c,objc,c++,obj-c++ --disable-multilib --disable-libgcj --without-headers --disable-shared |
93 | check_error $? "Error configuring GCC." |
93 | check_error $? "Error configuring GCC." |
94 | PATH="${PATH}:${PREFIX}/bin" make all-gcc install-gcc |
94 | PATH="${PATH}:${PREFIX}/bin" make all-gcc install-gcc all-target-libobjc install-target-libobjc |
95 | check_error $? "Error compiling/installing GCC." |
95 | check_error $? "Error compiling/installing GCC." |
96 | 96 | ||
97 | echo |
97 | echo |
98 | echo ">>> Cross-compiler for ${TARGET} installed." |
98 | echo ">>> Cross-compiler for ${TARGET} installed." |