提交 60ed988f 编写于 作者: R Rich Felker

fix regression in configure script with new visibility option

commit de2b67f8 introduced a
regression by adding a -include option to CFLAGS_AUTO which did not
work without additional -I options. this broke subsequent trycppif
tests and caused x86_64 to be misdetected as x32, among other issues.
simply using the full relative pathname to vis.h rather than -I is the
cleanest way to fix the problem.
上级 de2b67f8
......@@ -428,8 +428,8 @@ printf "checking whether global visibility preinclude works... "
echo 'int (*fp)(void);' > "$tmpc"
echo 'int foo(void) { }' >> "$tmpc"
echo 'int bar(void) { fp = foo; return foo(); }' >> "$tmpc"
if $CC $CFLAGS_C99FSE -I./arch/$ARCH -I src/internal -I./include \
$CPPFLAGS $CFLAGS -DSHARED -fPIC -include vis.h \
if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS \
-DSHARED -fPIC -include src/internal/vis.h \
-nostdlib -shared -Wl,-Bsymbolic-functions \
-o /dev/null "$tmpc" >/dev/null 2>&1 ; then
visibility=yes
......@@ -440,7 +440,7 @@ printf "%s\n" "$visibility"
fi
if test "x$visibility" == xyes ; then
CFLAGS_AUTO="$CFLAGS_AUTO -include vis.h"
CFLAGS_AUTO="$CFLAGS_AUTO -include src/internal/vis.h"
CFLAGS_AUTO="${CFLAGS_AUTO# }"
fi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册