Changes in / [b500939e:2660ee3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
rb500939e r2660ee3 72 72 GDB="gdb-${GDB_VERSION}.tar.gz" 73 73 ISL="isl-${ISL_VERSION}.tar.bz2" 74 CPUCOUNT="`python -c 'import multiprocessing as mp; print(mp.cpu_count())' `"75 74 76 75 REAL_INSTALL=true … … 501 500 502 501 change_title "binutils: make (${PLATFORM})" 503 make -j$CPUCOUNTall502 make all 504 503 check_error $? "Error compiling binutils." 505 504 … … 524 523 525 524 change_title "GCC: make (${PLATFORM})" 526 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make -j$CPUCOUNTall-gcc525 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make all-gcc 527 526 check_error $? "Error compiling GCC." 528 527 … … 546 545 547 546 change_title "GDB: make (${PLATFORM})" 548 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make -j$CPUCOUNTall547 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make all 549 548 check_error $? "Error compiling GDB." 550 549
Note:
See TracChangeset
for help on using the changeset viewer.