Changeset d30e067 in mainline for tools/toolchain.sh


Ignore:
Timestamp:
2025-03-02T20:02:33Z (5 months ago)
Author:
Miroslav Cimerman <mc@…>
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.
Message:

Merge 'upstream/master' into helenraid-para

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/toolchain.sh

    r7debda3 rd30e067  
    3131BINUTILS_GDB_GIT="https://github.com/HelenOS/binutils-gdb.git"
    3232
    33 BINUTILS_BRANCH="binutils-2_41-helenos"
    34 BINUTILS_VERSION="2.41"
     33BINUTILS_BRANCH="binutils-2_43-helenos"
     34BINUTILS_VERSION="2.43"
    3535
    3636GDB_BRANCH="gdb-13.2-helenos"
     
    3838
    3939GCC_GIT="https://github.com/HelenOS/gcc.git"
    40 GCC_BRANCH="13_2_0-helenos"
    41 GCC_VERSION="13.2"
     40GCC_BRANCH="14_2_0-helenos"
     41GCC_VERSION="14.2"
    4242
    4343BASEDIR="$PWD"
     
    419419                --enable-languages=c,c++,go \
    420420                --enable-lto \
     421                --enable-obsolete \
    421422                --disable-shared \
    422423                --disable-werror \
     
    511512        # Symlink clang and lld to the install path.
    512513        CLANG="`which clang 2> /dev/null || echo "/usr/bin/clang"`"
     514        CLANGPP="`which clang++ 2> /dev/null || echo "/usr/bin/clang++"`"
    513515        LLD="`which ld.lld 2> /dev/null || echo "/usr/bin/ld.lld"`"
    514516
    515517        ln -s $CLANG "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-clang"
     518        ln -s $CLANGPP "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-clang++"
    516519        ln -s $LLD "${INSTALL_DIR}${CROSS_PREFIX}/bin/${TARGET}-ld.lld"
    517520}
Note: See TracChangeset for help on using the changeset viewer.