Changes in tools/toolchain.sh [d231a54:3e05a69] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
rd231a54 r3e05a69 31 31 BINUTILS_GDB_GIT="https://github.com/HelenOS/binutils-gdb.git" 32 32 33 BINUTILS_BRANCH="binutils-2_4 3-helenos"34 BINUTILS_VERSION="2.4 3"33 BINUTILS_BRANCH="binutils-2_41-helenos" 34 BINUTILS_VERSION="2.41" 35 35 36 36 GDB_BRANCH="gdb-13.2-helenos" … … 38 38 39 39 GCC_GIT="https://github.com/HelenOS/gcc.git" 40 GCC_BRANCH="1 4_2_0-helenos"41 GCC_VERSION="1 4.2"40 GCC_BRANCH="13_2_0-helenos" 41 GCC_VERSION="13.2" 42 42 43 43 BASEDIR="$PWD" … … 419 419 --enable-languages=c,c++,go \ 420 420 --enable-lto \ 421 --enable-obsolete \422 421 --disable-shared \ 423 422 --disable-werror \ … … 512 511 # Symlink clang and lld to the install path. 513 512 CLANG="`which clang 2> /dev/null || echo "/usr/bin/clang"`" 514 CLANGPP="`which clang++ 2> /dev/null || echo "/usr/bin/clang++"`"515 513 LLD="`which ld.lld 2> /dev/null || echo "/usr/bin/ld.lld"`" 516 514 517 515 ln -s $CLANG "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-clang" 518 ln -s $CLANGPP "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-clang++"519 516 ln -s $LLD "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-ld.lld" 520 517 }
Note:
See TracChangeset
for help on using the changeset viewer.