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

Ports/bc: Remove hardcoded HOSTCC

The configure script will pick up the `HOSTCC` via `HOST_CC`, which is
defined in `Ports/.hosted_defs.sh`.
This commit is contained in:
EWouters 2022-06-01 20:40:18 +02:00 committed by Linus Groh
parent 49928a5703
commit 6238b3896a

View file

@ -10,5 +10,5 @@ configopts=("--prefix=/usr/local" "--disable-nls")
export CFLAGS='-O3 -flto' export CFLAGS='-O3 -flto'
configure() { configure() {
run env HOSTCC=gcc ./"$configscript" "${configopts[@]}" run ./"${configscript}" "${configopts[@]}"
} }