mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2024-12-22 15:02:59 +00:00
default to host gcc's machine for CBUILD
This commit is contained in:
parent
8946d01ed7
commit
42738f43d4
@ -1,11 +1,3 @@
|
||||
CHOST=i486-alpine-linux-musl
|
||||
|
||||
# for x86_64 we want:
|
||||
# CHOST=x86_64-alpine-linux-musl
|
||||
|
||||
# for powerpc we want:
|
||||
# CHOST=powerpc-alpine-linux-musl
|
||||
|
||||
export CFLAGS="-Os -fomit-frame-pointer"
|
||||
export CXXFLAGS="$CFLAGS"
|
||||
export CPPFLAGS="$CFLAGS"
|
||||
|
@ -86,7 +86,8 @@ readconfig() {
|
||||
PACKAGER=${_PACKAGER-$PACKAGER}
|
||||
USE_COLORS=${_USE_COLORS-$USE_COLORS}
|
||||
|
||||
[ -z "$CBUILD" ] && CBUILD="$CHOST"
|
||||
[ -z "$CBUILD" ] && CBUILD="$(gcc -dumpmachine)"
|
||||
[ -z "$CHOST" ] && CHOST="$CBUILD"
|
||||
[ -z "$CTARGET" ] && CTARGET="$CHOST"
|
||||
[ -z "$CARCH" ] && CARCH="$(hostspec_to_arch $CHOST)"
|
||||
[ -z "$CLIBC" ] && CLIBC="$(hostspec_to_libc $CHOST)"
|
||||
|
Loading…
Reference in New Issue
Block a user