Add compiler name to build directory name
This commit is contained in:
parent
2ff16a0182
commit
1e306391a7
|
@ -71,7 +71,7 @@ esac
|
||||||
CC="${CC:-$default_cc}"
|
CC="${CC:-$default_cc}"
|
||||||
CFLAGS="${CFLAGS:-$default_cflags}"
|
CFLAGS="${CFLAGS:-$default_cflags}"
|
||||||
LFLAGS="${LFLAGS:-$default_lflags}"
|
LFLAGS="${LFLAGS:-$default_lflags}"
|
||||||
builddir="build-$os-$(uname -m | tr A-Z- a-z_)"
|
builddir="build-$os-$(uname -m | tr A-Z- a-z_)-$(basename "$CC")"
|
||||||
cd "$(dirname "$0")"/..
|
cd "$(dirname "$0")"/..
|
||||||
echo "Entering directory '$PWD'"
|
echo "Entering directory '$PWD'"
|
||||||
set -x
|
set -x
|
||||||
|
|
Loading…
Reference in New Issue