Commit 6fe9a3f4 authored by Kenton Varda's avatar Kenton Varda

Clang on my system needs extra flags when using -m32 for some reason.

parent 5ba28583
......@@ -451,7 +451,7 @@ if [ "x`uname -m`" = "xx86_64" ]; then
doit make distclean
elif [ "x${CXX:-g++}" != "xg++-4.8" ]; then
doit ./configure CXX="${CXX:-g++} -m32" --disable-shared
doit ./configure CXX="${CXX:-g++} -m32" CXXFLAGS="$CXXFLAGS ${ADDL_M32_FLAGS:-}" --disable-shared
doit make -j$PARALLEL check
doit make distclean
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