Changeset b500939e in mainline
- Timestamp:
- 2018-02-07T07:23:45Z (7 years ago)
- Parents:
- 2660ee3 (diff), b3536a0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Kai Liu <nebulabox@…> (2018-02-07 07:23:45)
- git-committer:
- GitHub <noreply@…> (2018-02-07 07:23:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r2660ee3 rb500939e 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())' `" 74 75 75 76 REAL_INSTALL=true … … 500 501 501 502 change_title "binutils: make (${PLATFORM})" 502 make all503 make -j$CPUCOUNT all 503 504 check_error $? "Error compiling binutils." 504 505 … … 523 524 524 525 change_title "GCC: make (${PLATFORM})" 525 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make all-gcc526 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make -j$CPUCOUNT all-gcc 526 527 check_error $? "Error compiling GCC." 527 528 … … 545 546 546 547 change_title "GDB: make (${PLATFORM})" 547 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make all548 PATH="${PATH}:${PREFIX}/bin:${INSTALL_DIR}/${PREFIX}/bin" make -j$CPUCOUNT all 548 549 check_error $? "Error compiling GDB." 549 550
Note:
See TracChangeset
for help on using the changeset viewer.