Changeset d30e067 in mainline for tools/toolchain.sh
- Timestamp:
- 2025-03-02T20:02:33Z (5 months ago)
- Children:
- 8cdf360
- Parents:
- 7debda3 (diff), 4285f384 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/toolchain.sh
r7debda3 rd30e067 31 31 BINUTILS_GDB_GIT="https://github.com/HelenOS/binutils-gdb.git" 32 32 33 BINUTILS_BRANCH="binutils-2_4 1-helenos"34 BINUTILS_VERSION="2.4 1"33 BINUTILS_BRANCH="binutils-2_43-helenos" 34 BINUTILS_VERSION="2.43" 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 3_2_0-helenos"41 GCC_VERSION="1 3.2"40 GCC_BRANCH="14_2_0-helenos" 41 GCC_VERSION="14.2" 42 42 43 43 BASEDIR="$PWD" … … 419 419 --enable-languages=c,c++,go \ 420 420 --enable-lto \ 421 --enable-obsolete \ 421 422 --disable-shared \ 422 423 --disable-werror \ … … 511 512 # Symlink clang and lld to the install path. 512 513 CLANG="`which clang 2> /dev/null || echo "/usr/bin/clang"`" 514 CLANGPP="`which clang++ 2> /dev/null || echo "/usr/bin/clang++"`" 513 515 LLD="`which ld.lld 2> /dev/null || echo "/usr/bin/ld.lld"`" 514 516 515 517 ln -s $CLANG "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-clang" 518 ln -s $CLANGPP "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-clang++" 516 519 ln -s $LLD "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-ld.lld" 517 520 }
Note:
See TracChangeset
for help on using the changeset viewer.