This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by LHAPDF configure 6.4.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ ./configure --prefix=/usr/local --disable-python ## --------- ## ## Platform. ## ## --------- ## hostname = buildkitsandbox uname -m = x86_64 uname -r = 4.19.0-23-amd64 uname -s = Linux uname -v = #1 SMP Debian 4.19.269-1 (2022-12-20) /usr/bin/uname -p = x86_64 /bin/uname -X = unknown /bin/arch = x86_64 /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2427: checking for a BSD-compatible install configure:2495: result: /usr/bin/install -c configure:2506: checking whether build environment is sane configure:2561: result: yes configure:2712: checking for a thread-safe mkdir -p configure:2751: result: /usr/bin/mkdir -p configure:2758: checking for gawk configure:2774: found /usr/bin/gawk configure:2785: result: gawk configure:2796: checking whether make sets $(MAKE) configure:2818: result: yes configure:2847: checking whether make supports nested variables configure:2864: result: yes configure:3001: checking whether make supports nested variables configure:3018: result: yes configure:3092: checking for sw_vers configure:3122: result: no configure:3198: checking for style of include used by make configure:3226: result: GNU configure:3252: checking whether to compile using MPI configure:3259: result: no configure:3426: checking for g++ configure:3442: found /usr/bin/g++ configure:3453: result: g++ configure:3480: checking for C++ compiler version configure:3489: g++ --version >&5 g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44) Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3500: $? = 0 configure:3489: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) configure:3500: $? = 0 configure:3489: g++ -V >&5 g++: error: unrecognized command line option '-V' g++: fatal error: no input files compilation terminated. configure:3500: $? = 4 configure:3489: g++ -qversion >&5 g++: error: unrecognized command line option '-qversion' g++: fatal error: no input files compilation terminated. configure:3500: $? = 4 configure:3520: checking whether the C++ compiler works configure:3542: g++ -O3 conftest.cpp >&5 configure:3546: $? = 0 configure:3594: result: yes configure:3597: checking for C++ compiler default output file name configure:3599: result: a.out configure:3605: checking for suffix of executables configure:3612: g++ -o conftest -O3 conftest.cpp >&5 configure:3616: $? = 0 configure:3638: result: configure:3660: checking whether we are cross compiling configure:3668: g++ -o conftest -O3 conftest.cpp >&5 configure:3672: $? = 0 configure:3679: ./conftest configure:3683: $? = 0 configure:3698: result: no configure:3703: checking for suffix of object files configure:3725: g++ -c -O3 conftest.cpp >&5 configure:3729: $? = 0 configure:3750: result: o configure:3754: checking whether we are using the GNU C++ compiler configure:3773: g++ -c -O3 conftest.cpp >&5 configure:3773: $? = 0 configure:3782: result: yes configure:3791: checking whether g++ accepts -g configure:3811: g++ -c -g conftest.cpp >&5 configure:3811: $? = 0 configure:3852: result: yes configure:3877: checking dependency style of g++ configure:3988: result: gcc3 configure:4149: checking whether g++ supports C++11 features by default configure:4443: g++ -c -O3 conftest.cpp >&5 conftest.cpp:24:2: error: #error "This is not a C++11 compiler" #error "This is not a C++11 compiler" ^ configure:4443: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "LHAPDF" | #define PACKAGE_TARNAME "LHAPDF" | #define PACKAGE_VERSION "6.4.0" | #define PACKAGE_STRING "LHAPDF 6.4.0" | #define PACKAGE_BUGREPORT "lhapdf-support@cern.ch" | #define PACKAGE_URL "" | #define PACKAGE "LHAPDF" | #define VERSION "6.4.0" | #define LHAPDF_VERSION "6.4.0" | #define LHAPDF_VERSION_CODE 60400 | /* end confdefs.h. */ | | | // If the compiler admits that it is not ready for C++11, why torture it? | // Hopefully, this will speed up the test. | | #ifndef __cplusplus | | #error "This is not a C++ compiler" | | #elif __cplusplus < 201103L | | #error "This is not a C++11 compiler" | | #else | | namespace cxx11 | { | | namespace test_static_assert | { | | template | struct check | { | static_assert(sizeof(int) <= sizeof(T), "not big enough"); | }; | | } | | namespace test_final_override | { | | struct Base | { | virtual void f() {} | }; | | struct Derived : public Base | { | virtual void f() override {} | }; | | } | | namespace test_double_right_angle_brackets | { | | template < typename T > | struct check {}; | | typedef check single_type; | typedef check> double_type; | typedef check>> triple_type; | typedef check>>> quadruple_type; | | } | | namespace test_decltype | { | | int | f() | { | int a = 1; | decltype(a) b = 2; | return a + b; | } | | } | | namespace test_type_deduction | { | | template < typename T1, typename T2 > | struct is_same | { | static const bool value = false; | }; | | template < typename T > | struct is_same | { | static const bool value = true; | }; | | template < typename T1, typename T2 > | auto | add(T1 a1, T2 a2) -> decltype(a1 + a2) | { | return a1 + a2; | } | | int | test(const int c, volatile int v) | { | static_assert(is_same::value == true, ""); | static_assert(is_same::value == false, ""); | static_assert(is_same::value == false, ""); | auto ac = c; | auto av = v; | auto sumi = ac + av + 'x'; | auto sumf = ac + av + 1.0; | static_assert(is_same::value == true, ""); | static_assert(is_same::value == true, ""); | static_assert(is_same::value == true, ""); | static_assert(is_same::value == false, ""); | static_assert(is_same::value == true, ""); | return (sumf > 0.0) ? sumi : add(c, v); | } | | } | | namespace test_noexcept | { | | int f() { return 0; } | int g() noexcept { return 0; } | | static_assert(noexcept(f()) == false, ""); | static_assert(noexcept(g()) == true, ""); | | } | | namespace test_constexpr | { | | template < typename CharT > | unsigned long constexpr | strlen_c_r(const CharT *const s, const unsigned long acc) noexcept | { | return *s ? strlen_c_r(s + 1, acc + 1) : acc; | } | | template < typename CharT > | unsigned long constexpr | strlen_c(const CharT *const s) noexcept | { | return strlen_c_r(s, 0UL); | } | | static_assert(strlen_c("") == 0UL, ""); | static_assert(strlen_c("1") == 1UL, ""); | static_assert(strlen_c("example") == 7UL, ""); | static_assert(strlen_c("another\0example") == 7UL, ""); | | } | | namespace test_rvalue_references | { | | template < int N > | struct answer | { | static constexpr int value = N; | }; | | answer<1> f(int&) { return answer<1>(); } | answer<2> f(const int&) { return answer<2>(); } | answer<3> f(int&&) { return answer<3>(); } | | void | test() | { | int i = 0; | const int c = 0; | static_assert(decltype(f(i))::value == 1, ""); | static_assert(decltype(f(c))::value == 2, ""); | static_assert(decltype(f(0))::value == 3, ""); | } | | } | | namespace test_uniform_initialization | { | | struct test | { | static const int zero {}; | static const int one {1}; | }; | | static_assert(test::zero == 0, ""); | static_assert(test::one == 1, ""); | | } | | namespace test_lambdas | { | | void | test1() | { | auto lambda1 = [](){}; | auto lambda2 = lambda1; | lambda1(); | lambda2(); | } | | int | test2() | { | auto a = [](int i, int j){ return i + j; }(1, 2); | auto b = []() -> int { return '0'; }(); | auto c = [=](){ return a + b; }(); | auto d = [&](){ return c; }(); | auto e = [a, &b](int x) mutable { | const auto identity = [](int y){ return y; }; | for (auto i = 0; i < a; ++i) | a += b--; | return x + identity(a + b); | }(0); | return a + b + c + d + e; | } | | int | test3() | { | const auto nullary = [](){ return 0; }; | const auto unary = [](int x){ return x; }; | using nullary_t = decltype(nullary); | using unary_t = decltype(unary); | const auto higher1st = [](nullary_t f){ return f(); }; | const auto higher2nd = [unary](nullary_t f1){ | return [unary, f1](unary_t f2){ return f2(unary(f1())); }; | }; | return higher1st(nullary) + higher2nd(nullary)(unary); | } | | } | | namespace test_variadic_templates | { | | template | struct sum; | | template | struct sum | { | static constexpr auto value = N0 + sum::value; | }; | | template <> | struct sum<> | { | static constexpr auto value = 0; | }; | | static_assert(sum<>::value == 0, ""); | static_assert(sum<1>::value == 1, ""); | static_assert(sum<23>::value == 23, ""); | static_assert(sum<1, 2>::value == 3, ""); | static_assert(sum<5, 5, 11>::value == 21, ""); | static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); | | } | | // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae | // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function | // because of this. | namespace test_template_alias_sfinae | { | | struct foo {}; | | template | using member = typename T::member_type; | | template | void func(...) {} | | template | void func(member*) {} | | void test(); | | void test() { func(0); } | | } | | } // namespace cxx11 | | #endif // __cplusplus >= 201103L | | | configure:4450: result: no configure:4461: checking whether g++ supports C++11 features with -std=c++11 configure:4757: g++ -std=c++11 -c -O3 conftest.cpp >&5 configure:4757: $? = 0 configure:4766: result: yes configure:4858: checking for gcc configure:4874: found /usr/bin/gcc configure:4885: result: gcc configure:5114: checking for C compiler version configure:5123: gcc --version >&5 gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44) Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:5134: $? = 0 configure:5123: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper Target: x86_64-redhat-linux Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux Thread model: posix gcc version 4.8.5 20150623 (Red Hat 4.8.5-44) (GCC) configure:5134: $? = 0 configure:5123: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated. configure:5134: $? = 4 configure:5123: gcc -qversion >&5 gcc: error: unrecognized command line option '-qversion' gcc: fatal error: no input files compilation terminated. configure:5134: $? = 4 configure:5138: checking whether we are using the GNU C compiler configure:5157: gcc -c conftest.c >&5 configure:5157: $? = 0 configure:5166: result: yes configure:5175: checking whether gcc accepts -g configure:5195: gcc -c -g conftest.c >&5 configure:5195: $? = 0 configure:5236: result: yes configure:5253: checking for gcc option to accept ISO C89 configure:5316: gcc -c -g -O2 conftest.c >&5 configure:5316: $? = 0 configure:5329: result: none needed configure:5354: checking whether gcc understands -c and -o together configure:5376: gcc -c conftest.c -o conftest2.o configure:5379: $? = 0 configure:5376: gcc -c conftest.c -o conftest2.o configure:5379: $? = 0 configure:5391: result: yes configure:5410: checking dependency style of gcc configure:5521: result: gcc3 configure:5537: checking whether ln -s works configure:5541: result: yes configure:5577: checking build system type configure:5591: result: x86_64-pc-linux-gnu configure:5611: checking host system type configure:5624: result: x86_64-pc-linux-gnu configure:5665: checking how to print strings configure:5692: result: printf configure:5713: checking for a sed that does not truncate output configure:5777: result: /usr/bin/sed configure:5795: checking for grep that handles long lines and -e configure:5853: result: /usr/bin/grep configure:5858: checking for egrep configure:5920: result: /usr/bin/grep -E configure:5925: checking for fgrep configure:5987: result: /usr/bin/grep -F configure:6022: checking for ld used by gcc configure:6089: result: /usr/bin/ld configure:6096: checking if the linker (/usr/bin/ld) is GNU ld configure:6111: result: yes configure:6123: checking for BSD- or MS-compatible name lister (nm) configure:6177: result: /usr/bin/nm -B configure:6307: checking the name lister (/usr/bin/nm -B) interface configure:6314: g++ -std=c++11 -c -O3 conftest.cpp >&5 configure:6317: /usr/bin/nm -B "conftest.o" configure:6320: output 0000000000000000 B some_variable configure:6327: result: BSD nm configure:6331: checking the maximum length of command line arguments configure:6462: result: 1572864 configure:6510: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format configure:6550: result: func_convert_file_noop configure:6557: checking how to convert x86_64-pc-linux-gnu file names to toolchain format configure:6577: result: func_convert_file_noop configure:6584: checking for /usr/bin/ld option to reload object files configure:6591: result: -r configure:6665: checking for objdump configure:6681: found /usr/bin/objdump configure:6692: result: objdump configure:6724: checking how to recognize dependent libraries configure:6924: result: pass_all configure:7009: checking for dlltool configure:7039: result: no configure:7069: checking how to associate runtime and link libraries configure:7096: result: printf %s\n configure:7156: checking for ar configure:7172: found /usr/bin/ar configure:7183: result: ar configure:7220: checking for archiver @FILE support configure:7237: g++ -std=c++11 -c -O3 conftest.cpp >&5 configure:7237: $? = 0 configure:7240: ar cru libconftest.a @conftest.lst >&5 configure:7243: $? = 0 configure:7248: ar cru libconftest.a @conftest.lst >&5 ar: conftest.o: No such file or directory configure:7251: $? = 1 configure:7263: result: @ configure:7321: checking for strip configure:7337: found /usr/bin/strip configure:7348: result: strip configure:7420: checking for ranlib configure:7436: found /usr/bin/ranlib configure:7447: result: ranlib configure:7549: checking command to parse /usr/bin/nm -B output from gcc object configure:7702: g++ -std=c++11 -c -O3 conftest.cpp >&5 configure:7705: $? = 0 configure:7709: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm configure:7712: $? = 0 configure:7778: g++ -std=c++11 -o conftest -O3 conftest.cpp conftstm.o >&5 configure:7781: $? = 0 configure:7819: result: ok configure:7866: checking for sysroot configure:7896: result: no configure:7903: checking for a working dd configure:7941: result: /usr/bin/dd configure:7945: checking how to truncate binary pipes configure:7960: result: /usr/bin/dd bs=4096 count=1 configure:8097: g++ -std=c++11 -c -O3 conftest.cpp >&5 configure:8100: $? = 0 configure:8290: checking for mt configure:8320: result: no configure:8340: checking if : is a manifest tool configure:8346: : '-?' configure:8354: result: no configure:9031: checking how to run the C preprocessor configure:9062: gcc -E conftest.c configure:9062: $? = 0 configure:9076: gcc -E conftest.c conftest.c:14:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:9076: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "LHAPDF" | #define PACKAGE_TARNAME "LHAPDF" | #define PACKAGE_VERSION "6.4.0" | #define PACKAGE_STRING "LHAPDF 6.4.0" | #define PACKAGE_BUGREPORT "lhapdf-support@cern.ch" | #define PACKAGE_URL "" | #define PACKAGE "LHAPDF" | #define VERSION "6.4.0" | #define LHAPDF_VERSION "6.4.0" | #define LHAPDF_VERSION_CODE 60400 | #define HAVE_CXX11 1 | /* end confdefs.h. */ | #include configure:9101: result: gcc -E configure:9121: gcc -E conftest.c configure:9121: $? = 0 configure:9135: gcc -E conftest.c conftest.c:14:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:9135: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "LHAPDF" | #define PACKAGE_TARNAME "LHAPDF" | #define PACKAGE_VERSION "6.4.0" | #define PACKAGE_STRING "LHAPDF 6.4.0" | #define PACKAGE_BUGREPORT "lhapdf-support@cern.ch" | #define PACKAGE_URL "" | #define PACKAGE "LHAPDF" | #define VERSION "6.4.0" | #define LHAPDF_VERSION "6.4.0" | #define LHAPDF_VERSION_CODE 60400 | #define HAVE_CXX11 1 | /* end confdefs.h. */ | #include configure:9164: checking for ANSI C header files configure:9184: gcc -c -g -O2 conftest.c >&5 configure:9184: $? = 0 configure:9257: gcc -o conftest -g -O2 conftest.c >&5 configure:9257: $? = 0 configure:9257: ./conftest configure:9257: $? = 0 configure:9268: result: yes configure:9281: checking for sys/types.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for sys/stat.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for stdlib.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for string.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for memory.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for strings.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for inttypes.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for stdint.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9281: checking for unistd.h configure:9281: gcc -c -g -O2 conftest.c >&5 configure:9281: $? = 0 configure:9281: result: yes configure:9295: checking for dlfcn.h configure:9295: gcc -c -g -O2 conftest.c >&5 configure:9295: $? = 0 configure:9295: result: yes configure:9561: checking for objdir configure:9576: result: .libs configure:9840: checking if gcc supports -fno-rtti -fno-exceptions configure:9858: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default] configure:9862: $? = 0 configure:9875: result: no configure:10233: checking for gcc option to produce PIC configure:10240: result: -fPIC -DPIC configure:10248: checking if gcc PIC flag -fPIC -DPIC works configure:10266: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 configure:10270: $? = 0 configure:10283: result: yes configure:10312: checking if gcc static flag -static works configure:10340: result: yes configure:10355: checking if gcc supports -c -o file.o configure:10376: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 configure:10380: $? = 0 configure:10402: result: yes configure:10410: checking if gcc supports -c -o file.o configure:10457: result: yes configure:10490: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:11753: result: yes configure:11790: checking whether -lc should be explicitly linked in configure:11798: gcc -c -g -O2 conftest.c >&5 configure:11801: $? = 0 configure:11816: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 configure:11819: $? = 0 configure:11833: result: no configure:11993: checking dynamic linker characteristics configure:12574: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 configure:12574: $? = 0 configure:12823: result: GNU/Linux ld.so configure:12945: checking how to hardcode library paths into programs configure:12970: result: immediate configure:13518: checking whether stripping libraries is possible configure:13523: result: yes configure:13558: checking if libtool supports shared libraries configure:13560: result: yes configure:13563: checking whether to build shared libraries configure:13588: result: yes configure:13591: checking whether to build static libraries configure:13595: result: yes configure:13618: checking how to run the C++ preprocessor configure:13645: g++ -std=c++11 -E conftest.cpp configure:13645: $? = 0 configure:13659: g++ -std=c++11 -E conftest.cpp conftest.cpp:26:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:13659: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "LHAPDF" | #define PACKAGE_TARNAME "LHAPDF" | #define PACKAGE_VERSION "6.4.0" | #define PACKAGE_STRING "LHAPDF 6.4.0" | #define PACKAGE_BUGREPORT "lhapdf-support@cern.ch" | #define PACKAGE_URL "" | #define PACKAGE "LHAPDF" | #define VERSION "6.4.0" | #define LHAPDF_VERSION "6.4.0" | #define LHAPDF_VERSION_CODE 60400 | #define HAVE_CXX11 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:13684: result: g++ -std=c++11 -E configure:13704: g++ -std=c++11 -E conftest.cpp configure:13704: $? = 0 configure:13718: g++ -std=c++11 -E conftest.cpp conftest.cpp:26:28: fatal error: ac_nonexistent.h: No such file or directory #include ^ compilation terminated. configure:13718: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "LHAPDF" | #define PACKAGE_TARNAME "LHAPDF" | #define PACKAGE_VERSION "6.4.0" | #define PACKAGE_STRING "LHAPDF 6.4.0" | #define PACKAGE_BUGREPORT "lhapdf-support@cern.ch" | #define PACKAGE_URL "" | #define PACKAGE "LHAPDF" | #define VERSION "6.4.0" | #define LHAPDF_VERSION "6.4.0" | #define LHAPDF_VERSION_CODE 60400 | #define HAVE_CXX11 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | /* end confdefs.h. */ | #include configure:13880: checking for ld used by g++ -std=c++11 configure:13947: result: /usr/bin/ld -m elf_x86_64 configure:13954: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld configure:13969: result: yes configure:14024: checking whether the g++ -std=c++11 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:15097: result: yes configure:15133: g++ -std=c++11 -c -O3 conftest.cpp >&5 configure:15136: $? = 0 configure:15617: checking for g++ -std=c++11 option to produce PIC configure:15624: result: -fPIC -DPIC configure:15632: checking if g++ -std=c++11 PIC flag -fPIC -DPIC works configure:15650: g++ -std=c++11 -c -O3 -fPIC -DPIC -DPIC conftest.cpp >&5 configure:15654: $? = 0 configure:15667: result: yes configure:15690: checking if g++ -std=c++11 static flag -static works configure:15718: result: no configure:15730: checking if g++ -std=c++11 supports -c -o file.o configure:15751: g++ -std=c++11 -c -O3 -o out/conftest2.o conftest.cpp >&5 configure:15755: $? = 0 configure:15777: result: yes configure:15782: checking if g++ -std=c++11 supports -c -o file.o configure:15829: result: yes configure:15859: checking whether the g++ -std=c++11 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries configure:15902: result: yes configure:16043: checking dynamic linker characteristics configure:16800: result: GNU/Linux ld.so configure:16865: checking how to hardcode library paths into programs configure:16890: result: immediate configure:16969: Building LHAGLUE Fortran wrappers configure:16972: Building LHAGLUE C++ wrappers configure:17015: checking for pdflatex configure:17048: result: no configure:17066: checking for doxygen configure:17084: found /usr/bin/doxygen configure:17096: result: /usr/bin/doxygen configure:17457: checking if the g++ -std=c++11 compiler accepts the -pedantic flag configure:17473: result: yes configure:17496: checking if the g++ -std=c++11 compiler accepts the -Wall flag configure:17512: result: yes configure:17535: checking if the g++ -std=c++11 compiler accepts the -Wno-long-long flag configure:17551: result: yes configure:17574: checking if the g++ -std=c++11 compiler accepts the -Qunused-arguments flag configure:17590: result: no configure:17755: checking that generated files are newer than configure configure:17761: result: done configure:17820: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by LHAPDF config.status 6.4.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on buildkitsandbox config.status:1203: creating Makefile config.status:1203: creating src/Makefile config.status:1203: creating src/yamlcpp/Makefile config.status:1203: creating include/Makefile config.status:1203: creating include/LHAPDF/Makefile config.status:1203: creating bin/Makefile config.status:1203: creating bin/lhapdf-config config.status:1203: creating examples/Makefile config.status:1203: creating tests/Makefile config.status:1203: creating doc/Makefile config.status:1203: creating doc/Doxyfile config.status:1203: creating lhapdf.pc config.status:1203: creating wrappers/Makefile config.status:1203: creating wrappers/python/Makefile config.status:1203: creating wrappers/python/setup.py config.status:1203: creating config/config.h config.status:1203: creating include/LHAPDF/Version.h config.status:1384: include/LHAPDF/Version.h is unchanged config.status:1432: executing depfiles commands config.status:1432: executing libtool commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-pc-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LT_SYS_LIBRARY_PATH_set= ac_cv_env_LT_SYS_LIBRARY_PATH_value= ac_cv_env_MPICXX_set= ac_cv_env_MPICXX_value= ac_cv_env_PYTHON_set= ac_cv_env_PYTHON_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_host_alias_set= ac_cv_env_host_alias_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_header_dlfcn_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=x86_64-pc-linux-gnu ac_cv_objext=o ac_cv_path_DOXYGEN=/usr/bin/doxygen ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_FGREP='/usr/bin/grep -F' ac_cv_path_GREP=/usr/bin/grep ac_cv_path_SED=/usr/bin/sed ac_cv_path_install='/usr/bin/install -c' ac_cv_path_lt_DD=/usr/bin/dd ac_cv_path_mkdir=/usr/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_CXXCPP='g++ -std=c++11 -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_prog_make_make_set=yes am_cv_CC_dependencies_compiler_type=gcc3 am_cv_CXX_dependencies_compiler_type=gcc3 am_cv_make_support_nested_variables=yes am_cv_prog_cc_c_o=yes ax_cv_cxx_compile_cxx11=no ax_cv_cxx_compile_cxx11__std_cpp11=yes lt_cv_ar_at_file=@ lt_cv_archive_cmds_need_lc=no lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64' lt_cv_path_NM='/usr/bin/nm -B' lt_cv_path_mainfest_tool=no lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_pic='-fPIC -DPIC' lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC' lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_pic_works_CXX=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_compiler_static_works_CXX=no lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sharedlib_from_linklib_cmd='printf %s\n' lt_cv_shlibpath_overrides_runpath=no lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_global_symbol_to_import= lt_cv_sys_max_cmd_len=1572864 lt_cv_to_host_file_cmd=func_convert_file_noop lt_cv_to_tool_file_cmd=func_convert_file_noop lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /LHAPDF-6.4.0/config/missing aclocal-1.15' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='$${TAR-tar}' AM_BACKSLASH='\' AM_CPPFLAGS='' AM_CXXFLAGS=' -pedantic -Wall -Wno-long-long ' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' AM_DEFAULT_VERBOSITY='0' AM_LDFLAGS='' AM_V='$(V)' AR='ar' AUTOCONF='${SHELL} /LHAPDF-6.4.0/config/missing autoconf' AUTOHEADER='${SHELL} /LHAPDF-6.4.0/config/missing autoheader' AUTOMAKE='${SHELL} /LHAPDF-6.4.0/config/missing automake-1.15' AWK='gawk' CC='gcc' CCDEPMODE='depmode=gcc3' CFLAGS='-g -O2' CPP='gcc -E' CPPFLAGS=' -I/usr/local/include' CXX='g++ -std=c++11' CXXCPP='g++ -std=c++11 -E' CXXDEPMODE='depmode=gcc3' CXXFLAGS='-O3' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' DLLTOOL='false' DOXYGEN='/usr/bin/doxygen' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/bin/grep -E' ENABLE_LHAGLUE_CXX_FALSE='#' ENABLE_LHAGLUE_CXX_TRUE='' ENABLE_LHAGLUE_FALSE='#' ENABLE_LHAGLUE_TRUE='' EXEEXT='' FGREP='/usr/bin/grep -F' GREP='/usr/bin/grep' HAVE_CXX11='1' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LD='/usr/bin/ld -m elf_x86_64' LDFLAGS=' -L/usr/local/lib' LHAPDF_CXX='g++ -std=c++11' LHAPDF_CXXFLAGS='-O3' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIPO='' LN_S='ln -s' LTLIBOBJS='' LT_SYS_LIBRARY_PATH='' MAKEINFO='${SHELL} /LHAPDF-6.4.0/config/missing makeinfo' MANIFEST_TOOL=':' MKDIR_P='/usr/bin/mkdir -p' MPICXX='' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='LHAPDF' PACKAGE_BUGREPORT='lhapdf-support@cern.ch' PACKAGE_NAME='LHAPDF' PACKAGE_STRING='LHAPDF 6.4.0' PACKAGE_TARNAME='LHAPDF' PACKAGE_URL='' PACKAGE_VERSION='6.4.0' PATH_SEPARATOR=':' PDFLATEX='' PYTHON='' PYTHON_EXEC_PREFIX='' PYTHON_PATH='' PYTHON_PLATFORM='' PYTHON_PREFIX='' PYTHON_VERSION='' RANLIB='ranlib' SED='/usr/bin/sed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' SWVERS='' USING_MPI_FALSE='' USING_MPI_TRUE='#' VERSION='6.4.0' WITH_CYTHON_FALSE='' WITH_CYTHON_TRUE='#' WITH_DOXYGEN_FALSE='#' WITH_DOXYGEN_TRUE='' WITH_OSX_FALSE='' WITH_OSX_TRUE='#' WITH_PDFLATEX_FALSE='' WITH_PDFLATEX_TRUE='#' WITH_PYTHON_FALSE='' WITH_PYTHON_TRUE='#' ac_ct_AR='ar' ac_ct_CC='gcc' ac_ct_CXX='g++' ac_ct_DUMPBIN='' am__EXEEXT_FALSE='' am__EXEEXT_TRUE='#' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__fastdepCXX_FALSE='#' am__fastdepCXX_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__nodep='_no' am__quote='' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' bindir='${exec_prefix}/bin' build='x86_64-pc-linux-gnu' build_alias='' build_cpu='x86_64' build_os='linux-gnu' build_vendor='pc' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='${prefix}' host='x86_64-pc-linux-gnu' host_alias='' host_cpu='x86_64' host_os='linux-gnu' host_vendor='pc' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='${SHELL} /LHAPDF-6.4.0/config/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='$(MKDIR_P)' oldincludedir='/usr/include' pdfdir='${docdir}' pkgpyexecdir='' pkgpythondir='' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' pyexecdir='' pythondir='' runstatedir='${localstatedir}/run' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "LHAPDF" #define PACKAGE_TARNAME "LHAPDF" #define PACKAGE_VERSION "6.4.0" #define PACKAGE_STRING "LHAPDF 6.4.0" #define PACKAGE_BUGREPORT "lhapdf-support@cern.ch" #define PACKAGE_URL "" #define PACKAGE "LHAPDF" #define VERSION "6.4.0" #define LHAPDF_VERSION "6.4.0" #define LHAPDF_VERSION_CODE 60400 #define HAVE_CXX11 1 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" #define LHAPDF_PDFLIB 1 #define LHAPDF_LHA5CXX 1 configure: exit 0