36 lines
1.3 KiB
Diff
36 lines
1.3 KiB
Diff
This patch is needed, otherwise the sanity test for cpp fails on cross builds:
|
|
|
|
configure:5267: aarch64-linux-gnu-cpp -Wall -Wshadow -g -pedantic-errors -I/usr/include -I/usr/local/include conftest.c
|
|
In file included from /usr/include/features.h:489,
|
|
from /usr/include/bits/libc-header-start.h:33,
|
|
from /usr/include/limits.h:26,
|
|
from conftest.c:13:
|
|
/usr/include/gnu/stubs.h:7:11: fatal error: gnu/stubs-32.h: No such file or directory
|
|
7 | # include <gnu/stubs-32.h>
|
|
| ^~~~~~~~~~~~~~~~
|
|
compilation terminated.
|
|
|
|
Normally, this isn't an issue with the compiler itself, because we have a
|
|
wrapper that discards bad -I flags, but we don't have a cpp wrapper.
|
|
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -24,7 +24,6 @@ AC_SUBST(QUICKCHECKDIR)
|
|
AX_CXX_COMPILE_STDCXX_17([noext], [mandatory])
|
|
|
|
CPPFLAGS="$CPPFLAGS -Wall -Wshadow -g -pedantic-errors"
|
|
-CPPFLAGS="$CPPFLAGS -I/usr/include -I/usr/local/include"
|
|
|
|
AC_CHECK_SIZEOF([void *])
|
|
CXXFLAGS="$CXXFLAGS -DSIZEOF_VOID_P=$ac_cv_sizeof_void_p"
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -5237,7 +5237,6 @@ printf "%s\n" "#define HAVE_CXX17 1" >>c
|
|
|
|
|
|
CPPFLAGS="$CPPFLAGS -Wall -Wshadow -g -pedantic-errors"
|
|
-CPPFLAGS="$CPPFLAGS -I/usr/include -I/usr/local/include"
|
|
|
|
|
|
|