1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 13:17:45 +00:00

Ports: Remove/replace hardcoded i686-pc-serenity-{gcc,g++,ar,ranlib}

Except in the Lua port's Makefile patch, I couldn't figure this out...
This commit is contained in:
Linus Groh 2021-03-11 21:46:53 +01:00 committed by Andreas Kling
parent f9cf6bfce1
commit 7cb9237be9
9 changed files with 11 additions and 8 deletions

View file

@ -7,6 +7,8 @@ export SERENITY_ARCH=i686
export SERENITY_BUILD_DIR="${SERENITY_ROOT}/Build/${SERENITY_ARCH}"
export CC=i686-pc-serenity-gcc
export CXX=i686-pc-serenity-g++
export AR=i686-pc-serenity-ar
export RANLIB=i686-pc-serenity-ranlib
export PATH=$SERENITY_ROOT/Toolchain/Local/i686/bin:$PATH
packagesdb="${SERENITY_BUILD_DIR}/packages.db"