Commit 57412ebf authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Disable CLANG for now, until some auto* magic happens to remove the

-g option from linker-commands.
parent 38a71992
......@@ -9,6 +9,10 @@ make -k distclean > /dev/null 2>&1 || true
# Prefer CLANG if we have it, and have not given preferences
if [ -f /usr/bin/clang -a "x${CC}" = "x" ] ; then
CC=clang
# XXX: clang complains about -g in linker invocations
# XXX: so fall back to gcc for now...
CC=gcc
export CC
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment