Last active
September 9, 2019 15:31
-
-
Save tttapa/884d4ace585ee50d57a711dd6e3a54af to your computer and use it in GitHub Desktop.
Dockerfile for cross-compiling Python for the Raspberry Pi 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest as ct-ng | |
# Install some tools and compilers + clean up | |
RUN apt-get update && \ | |
apt-get install -y sudo git wget \ | |
gcc g++ cmake make autoconf automake \ | |
gperf diffutils bzip2 xz-utils \ | |
flex gawk help2man libncurses-dev patch bison \ | |
python-dev gnupg2 texinfo unzip libtool-bin \ | |
autogen libtool m4 gettext pkg-config && \ | |
apt-get clean autoclean && \ | |
apt-get autoremove -y && \ | |
rm -rf /var/lib/apt/lists/* | |
# Add a user called `develop` | |
RUN useradd -m develop && echo "develop:develop" | chpasswd && adduser develop sudo | |
USER develop | |
WORKDIR /home/develop | |
ENV CROSSTOOL_NG_VERSION=1.24.0 | |
RUN git clone https://github.com/crosstool-ng/crosstool-ng.git | |
WORKDIR /home/develop/crosstool-ng | |
RUN git checkout crosstool-ng-${CROSSTOOL_NG_VERSION} | |
RUN ./bootstrap | |
RUN ./configure --prefix=/home/develop/.local | |
RUN make -j$(($(nproc) * 2)) | |
RUN make install | |
ENV PATH=/home/develop/.local/bin:$PATH | |
RUN mkdir /home/develop/RPi3 | |
WORKDIR /home/develop/RPi3 | |
RUN ct-ng aarch64-rpi3-linux-gnu | |
RUN sed -i 's/CT_GCC_VERSION=\"[0-9.]*\"/CT_GCC_VERSION="9.1.0"/g' .config | |
RUN sed -i 's/CT_LINUX_VERSION=\"[0-9.]*\"/CT_LINUX_VERSION="4.15"/g' .config | |
RUN sed -i 's/CT_GLIBC_VERSION=\"[0-9.]*\"/CT_GLIBC_VERSION="2.27"/g' .config | |
RUN ct-ng build && rm -rf .build | |
ENV TOOLCHAIN_PATH=/home/develop/x-tools/aarch64-rpi3-linux-gnu | |
ENV PATH=${TOOLCHAIN_PATH}/bin:$PATH | |
WORKDIR /home/develop | |
################################################################################ | |
FROM ct-ng as python | |
# Create a sysroot and staging area for the RPi | |
WORKDIR /home/develop | |
RUN mkdir RPi3-sysroot | |
ENV RPI3_SYSROOT=/home/develop/RPi3-sysroot | |
ENV RPI3_STAGING=/home/develop/RPi3-staging | |
RUN cp -ra $TOOLCHAIN_PATH/aarch64-rpi3-linux-gnu/sysroot/* ~/RPi3-sysroot/ | |
RUN chmod -R u+w /home/develop/RPi3-sysroot | |
# Use the pkg-config folder inside of the root filesystem | |
ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
# Zlib Download | |
WORKDIR /home/develop | |
RUN wget https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz && \ | |
tar xzf zlib-1.2.11.tar.gz && rm zlib-1.2.11.tar.gz | |
# Zlib build | |
ENV PKG_CONFIG_LIBDIR= | |
ENV PKG_CONFIG_PATH= | |
ENV PKG_CONFIG_SYSROOT_DIR= | |
RUN mkdir zlib-1.2.11/build | |
WORKDIR /home/develop/zlib-1.2.11/build | |
RUN ../configure && \ | |
make -j$(($(nproc) * 2)) | |
USER root | |
RUN make install | |
USER develop | |
RUN cd && rm -rf zlib-1.2.11/build | |
ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
# Zlib ARM | |
WORKDIR /home/develop | |
RUN mkdir zlib-1.2.11/build-arm | |
WORKDIR /home/develop/zlib-1.2.11/build-arm | |
RUN CFLAGS="${STAGING_INCLUDE_FLAGS}" \ | |
LDFLAGS="${STAGING_LD_FLAGS}" \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" \ | |
LD="aarch64-rpi3-linux-gnu-ld --sysroot=${RPI3_SYSROOT}" \ | |
../configure \ | |
--prefix="/usr" && \ | |
make -j$(($(nproc) * 2)) && \ | |
make install DESTDIR="${RPI3_SYSROOT}" && \ | |
make install DESTDIR="${RPI3_STAGING}" && \ | |
cd && rm -rf zlib-1.2.11 | |
# Download OpenSSL | |
WORKDIR /home/develop | |
RUN wget https://github.com/openssl/openssl/archive/OpenSSL_1_1_1c.tar.gz | |
RUN tar xzf OpenSSL_1_1_1c.tar.gz | |
# OpenSSL build | |
ENV PKG_CONFIG_LIBDIR= | |
ENV PKG_CONFIG_PATH= | |
ENV PKG_CONFIG_SYSROOT_DIR= | |
WORKDIR /home/develop/openssl-OpenSSL_1_1_1c | |
RUN ./config --prefix="/usr/local" && \ | |
make -j$(($(nproc) * 2)) | |
USER root | |
RUN make install_sw && \ | |
make distclean && \ | |
cd && rm -rf openssl-OpenSSL_1_1_1c | |
USER develop | |
ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
# OpenSSL ARM | |
WORKDIR /home/develop | |
RUN tar xzf OpenSSL_1_1_1c.tar.gz && rm OpenSSL_1_1_1c.tar.gz | |
WORKDIR /home/develop/openssl-OpenSSL_1_1_1c | |
RUN ./Configure \ | |
--prefix="/usr" \ | |
--cross-compile-prefix="aarch64-rpi3-linux-gnu-" \ | |
linux-aarch64 && \ | |
make -j$(($(nproc) * 2)) && \ | |
make install_sw DESTDIR="${RPI3_SYSROOT}" && \ | |
make install_sw DESTDIR="${RPI3_STAGING}" && \ | |
cd && rm -rf openssl-OpenSSL_1_1_1c | |
# FFI Download | |
WORKDIR /home/develop | |
RUN wget -O libffi-3.2.1.tar.gz https://codeload.github.com/libffi/libffi/tar.gz/v3.2.1 && \ | |
tar xzf libffi-3.2.1.tar.gz && rm libffi-3.2.1.tar.gz | |
# FFI build | |
ENV PKG_CONFIG_LIBDIR= | |
ENV PKG_CONFIG_PATH= | |
ENV PKG_CONFIG_SYSROOT_DIR= | |
WORKDIR /home/develop/libffi-3.2.1 | |
RUN ./autogen.sh | |
RUN mkdir build | |
WORKDIR /home/develop/libffi-3.2.1/build | |
RUN ../configure CFLAGS="-O2" CXXFLAGS="-O2" && \ | |
make -j$(($(nproc) * 2)) | |
USER root | |
RUN make install | |
USER develop | |
RUN cd && rm -rf libffi-3.2.1/build | |
ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
# FFI ARM | |
WORKDIR /home/develop/libffi-3.2.1 | |
RUN mkdir build-arm | |
WORKDIR /home/develop/libffi-3.2.1/build-arm | |
RUN ../configure \ | |
--host="aarch64-linux-gnu" \ | |
--prefix="/usr" \ | |
CFLAGS="-O2" CXXFLAGS="-O2" \ | |
--with-sysroot="${RPI3_SYSROOT}" \ | |
CC="aarch64-rpi3-linux-gnu-gcc" \ | |
CXX="aarch64-rpi3-linux-gnu-g++" \ | |
LD="aarch64-rpi3-linux-gnu-ld" && \ | |
make -j$(($(nproc) * 2)) && \ | |
make install DESTDIR="${RPI3_SYSROOT}" && \ | |
make install DESTDIR="${RPI3_STAGING}" && \ | |
cd && rm -rf libffi-3.2.1 | |
# Python Download | |
WORKDIR /home/develop | |
RUN wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz && \ | |
tar xzf Python-3.7.4.tgz && rm Python-3.7.4.tgz | |
# Python build | |
ENV PKG_CONFIG_LIBDIR= | |
ENV PKG_CONFIG_PATH= | |
ENV PKG_CONFIG_SYSROOT_DIR= | |
WORKDIR /home/develop/Python-3.7.4 | |
RUN mkdir build | |
WORKDIR /home/develop/Python-3.7.4/build | |
USER root | |
RUN ln -s /usr/local/lib/libffi-3.2.1/include/* /usr/local/include | |
USER develop | |
RUN ../configure && \ | |
make -j$(($(nproc) * 2)) | |
USER root | |
RUN make install | |
USER develop | |
RUN cd && rm -rf Python-3.7.4/build | |
ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
# Bzip2 Download | |
WORKDIR /home/develop | |
RUN git clone --branch bzip2-1.0.8 --depth 1 git://sourceware.org/git/bzip2.git | |
WORKDIR /home/develop/bzip2 | |
RUN make -f Makefile-libbz2_so -j $(($(nproc) * 2)) \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=$RPI3_SYSROOT" | |
RUN cp -a libbz2.so.1.0 $RPI3_SYSROOT/usr/lib | |
RUN cp -a libbz2.so.1.0.8 $RPI3_SYSROOT/usr/lib | |
RUN cp -a libbz2.so.1.0 $RPI3_STAGING/usr/lib | |
RUN cp -a libbz2.so.1.0.8 $RPI3_STAGING/usr/lib | |
RUN make bzip2 bzip2recover -j $(($(nproc) * 2)) \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=$RPI3_SYSROOT" | |
RUN make install PREFIX="${RPI3_SYSROOT}/usr" | |
RUN make install PREFIX="${RPI3_STAGING}/usr" | |
RUN ln -s libbz2.so.1.0 ${RPI3_SYSROOT}/usr/lib/libbz2.so | |
RUN ln -s libbz2.so.1.0 ${RPI3_STAGING}/usr/lib/libbz2.so | |
# GNU NCurses | |
WORKDIR /home/develop | |
RUN wget ftp://ftp.gnu.org/gnu/ncurses/ncurses-6.1.tar.gz | |
RUN tar xzf ncurses-6.1.tar.gz && rm ncurses-6.1.tar.gz | |
RUN mkdir ncurses-6.1/build-arm | |
WORKDIR /home/develop/ncurses-6.1/build-arm | |
RUN ../configure \ | |
--enable-termcap \ | |
--enable-getcap \ | |
--without-normal \ | |
--enable-pc-files \ | |
--with-shared --without-debug \ | |
--without-ada --enable-overwrite \ | |
--prefix="/usr" \ | |
--with-build-cc=gcc \ | |
--host="aarch64-rpi3-linux-gnu" \ | |
CFLAGS=" --sysroot=${RPI3_SYSROOT}" \ | |
CC="aarch64-rpi3-linux-gnu-gcc" | |
RUN make -j$(($(nproc) * 2)) | |
RUN make install.libs DESTDIR=${RPI3_SYSROOT} | |
RUN make install.libs DESTDIR=${RPI3_STAGING} | |
# GNU Readline | |
WORKDIR /home/develop | |
RUN wget https://ftp.gnu.org/gnu/readline/readline-8.0.tar.gz | |
RUN tar xzf readline-8.0.tar.gz && rm readline-8.0.tar.gz | |
RUN mkdir readline-8.0/build-arm | |
WORKDIR /home/develop/readline-8.0/build-arm | |
# --with-curses | |
RUN ../configure \ | |
--enable-shared \ | |
--prefix="/usr" \ | |
--host="aarch64-rpi3-linux-gnu" \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
RUN make -j$(($(nproc) * 2)) # SHLIB_LIBS="-lncurses" | |
RUN make install DESTDIR=${RPI3_SYSROOT} # SHLIB_LIBS="-lncurses" | |
RUN make install DESTDIR=${RPI3_STAGING} # SHLIB_LIBS="-lncurses" | |
# GNU DBM | |
WORKDIR /home/develop | |
RUN wget ftp://ftp.gnu.org/gnu/gdbm/gdbm-1.18.1.tar.gz | |
RUN tar xzf gdbm-1.18.1.tar.gz && rm gdbm-1.18.1.tar.gz | |
RUN mkdir gdbm-1.18.1/build-arm | |
WORKDIR /home/develop/gdbm-1.18.1/build-arm | |
RUN ../configure \ | |
--prefix="/usr" \ | |
--host="aarch64-rpi3-linux-gnu" \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
RUN make -j$(($(nproc) * 2)) | |
RUN make install DESTDIR=${RPI3_SYSROOT} | |
RUN make install DESTDIR=${RPI3_STAGING} | |
# SQLite | |
WORKDIR /home/develop | |
RUN wget https://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gz | |
RUN tar xzf sqlite-autoconf-3290000.tar.gz && rm sqlite-autoconf-3290000.tar.gz | |
RUN mkdir sqlite-autoconf-3290000/build-arm | |
WORKDIR /home/develop/sqlite-autoconf-3290000/build-arm | |
RUN ../configure \ | |
--prefix="/usr" \ | |
--host="aarch64-rpi3-linux-gnu" \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
RUN make -j$(($(nproc) * 2)) | |
RUN make install DESTDIR=${RPI3_SYSROOT} | |
RUN make install DESTDIR=${RPI3_STAGING} | |
# UUID | |
WORKDIR /home/develop | |
RUN wget https://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz | |
RUN tar xzf libuuid-1.0.3.tar.gz && rm libuuid-1.0.3.tar.gz | |
RUN mkdir libuuid-1.0.3/build-arm | |
WORKDIR /home/develop/libuuid-1.0.3/build-arm | |
RUN ../configure \ | |
--prefix="/usr" \ | |
--host="aarch64-rpi3-linux-gnu" \ | |
CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
RUN make -j$(($(nproc) * 2)) | |
RUN make install DESTDIR=${RPI3_SYSROOT} | |
RUN make install DESTDIR=${RPI3_STAGING} | |
RUN ln -s uuid/uuid.h ${RPI3_SYSROOT}/usr/include/uuid.h | |
# Python ARM | |
WORKDIR /home/develop/Python-3.7.4 | |
RUN echo "ac_cv_file__dev_ptmx=yes\nac_cv_file__dev_ptc=no" > config.site | |
RUN mkdir build-arm | |
WORKDIR /home/develop/Python-3.7.4/build-arm | |
RUN CONFIG_SITE=../config.site \ | |
../configure \ | |
--enable-ipv6 \ | |
--enable-shared --with-lto --enable-optimizations \ | |
--enable-loadable-sqlite-extensions --with-dbmliborder=bdb:gdbm \ | |
--with-ensurepip=install \ | |
--build="$(gcc -dumpmachine)" \ | |
--host="aarch64-rpi3-linux-gnu" \ | |
--prefix="/usr" \ | |
CFLAGS="--sysroot=${RPI3_SYSROOT}" \ | |
CPPFLAGS="--sysroot=${RPI3_SYSROOT}" \ | |
CXXFLAGS="--sysroot=${RPI3_SYSROOT}" \ | |
LDFLAGS="--sysroot=${RPI3_SYSROOT}" \ | |
CC="aarch64-rpi3-linux-gnu-gcc" \ | |
CXX="aarch64-rpi3-linux-gnu-g++" \ | |
LD="aarch64-rpi3-linux-gnu-ld" && \ | |
cat config.log && \ | |
make -j$(($(nproc) * 2)) && \ | |
make altinstall DESTDIR="${RPI3_SYSROOT}" && \ | |
make altinstall DESTDIR="${RPI3_STAGING}" && \ | |
cd && rm -rf Python-3.7.4/build-arm | |
WORKDIR /home/develop | |
USER root | |
RUN rm -rf Python-3.7.4 | |
USER develop |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ docker-compose up --no-start --build build | |
Building build | |
Step 1/184 : FROM ubuntu:latest as ct-ng | |
---> d131e0fa2585 | |
Step 2/184 : RUN apt-get update && apt-get install -y sudo git wget gcc g++ cmake make autoconf automake gperf diffutils bzip2 xz-utils flex gawk help2man libncurses-dev patch bison python-dev gnupg2 texinfo unzip libtool-bin autogen libtool m4 gettext pkg-config && apt-get clean autoclean && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* | |
---> Using cache | |
---> 8567c9c21c6d | |
Step 3/184 : RUN useradd -m develop && echo "develop:develop" | chpasswd && adduser develop sudo | |
---> Using cache | |
---> 37016ddb40aa | |
Step 4/184 : USER develop | |
---> Using cache | |
---> 383dc21b72c3 | |
Step 5/184 : WORKDIR /home/develop | |
---> Using cache | |
---> df62ff15de0f | |
Step 6/184 : ENV CROSSTOOL_NG_VERSION=1.24.0 | |
---> Using cache | |
---> 8396627fe446 | |
Step 7/184 : RUN git clone https://github.com/crosstool-ng/crosstool-ng.git | |
---> Using cache | |
---> 701aaa65c357 | |
Step 8/184 : WORKDIR /home/develop/crosstool-ng | |
---> Using cache | |
---> a299e58d1952 | |
Step 9/184 : RUN git checkout crosstool-ng-${CROSSTOOL_NG_VERSION} | |
---> Using cache | |
---> 149fcf1cf4f3 | |
Step 10/184 : RUN ./bootstrap | |
---> Using cache | |
---> 372dfaa11273 | |
Step 11/184 : RUN ./configure --prefix=/home/develop/.local | |
---> Using cache | |
---> 6b212d0e69dc | |
Step 12/184 : RUN make -j$(($(nproc) * 2)) | |
---> Using cache | |
---> 9349ee8f9bae | |
Step 13/184 : RUN make install | |
---> Using cache | |
---> 461b9238173e | |
Step 14/184 : ENV PATH=/home/develop/.local/bin:$PATH | |
---> Using cache | |
---> fa1b287b1d80 | |
Step 15/184 : RUN mkdir /home/develop/RPi3 | |
---> Using cache | |
---> 1e12c083b0e5 | |
Step 16/184 : WORKDIR /home/develop/RPi3 | |
---> Using cache | |
---> 8a795242ef02 | |
Step 17/184 : RUN ct-ng aarch64-rpi3-linux-gnu | |
---> Using cache | |
---> dfaa4df4f03c | |
Step 18/184 : RUN sed -i 's/CT_GCC_VERSION=\"[0-9.]*\"/CT_GCC_VERSION="9.1.0"/g' .config | |
---> Using cache | |
---> 0593f873357b | |
Step 19/184 : RUN sed -i 's/CT_LINUX_VERSION=\"[0-9.]*\"/CT_LINUX_VERSION="4.15"/g' .config | |
---> Using cache | |
---> 8a3f49f1970a | |
Step 20/184 : RUN sed -i 's/CT_GLIBC_VERSION=\"[0-9.]*\"/CT_GLIBC_VERSION="2.27"/g' .config | |
---> Using cache | |
---> 9abc15ae9767 | |
Step 21/184 : RUN ct-ng build && rm -rf .build | |
---> Using cache | |
---> 5c67a592f035 | |
Step 22/184 : ENV TOOLCHAIN_PATH=/home/develop/x-tools/aarch64-rpi3-linux-gnu | |
---> Using cache | |
---> abc0de7ed1e9 | |
Step 23/184 : ENV PATH=${TOOLCHAIN_PATH}/bin:$PATH | |
---> Using cache | |
---> 857e762ae5b4 | |
Step 24/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 46d80ed51dc5 | |
Step 25/184 : FROM ct-ng as python | |
---> 46d80ed51dc5 | |
Step 26/184 : WORKDIR /home/develop | |
---> Using cache | |
---> cd0767d3356d | |
Step 27/184 : RUN mkdir RPi3-sysroot | |
---> Using cache | |
---> cce56c53982c | |
Step 28/184 : ENV RPI3_SYSROOT=/home/develop/RPi3-sysroot | |
---> Using cache | |
---> c1aff3a3c764 | |
Step 29/184 : ENV RPI3_STAGING=/home/develop/RPi3-staging | |
---> Using cache | |
---> 55ae1292ecc6 | |
Step 30/184 : RUN cp -rp $TOOLCHAIN_PATH/aarch64-rpi3-linux-gnu/sysroot/* ~/RPi3-sysroot/ | |
---> Using cache | |
---> fc5362c5b876 | |
Step 31/184 : RUN chmod -R u+w /home/develop/RPi3-sysroot | |
---> Using cache | |
---> 653a01fedabc | |
Step 32/184 : ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
---> Using cache | |
---> 143224be9572 | |
Step 33/184 : ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
---> Using cache | |
---> 4629948ba4fa | |
Step 34/184 : ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
---> Using cache | |
---> 70a8271e7ffd | |
Step 35/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 44129efd5ae0 | |
Step 36/184 : RUN wget https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz && tar xzf zlib-1.2.11.tar.gz && rm zlib-1.2.11.tar.gz | |
---> Using cache | |
---> 11bc28d75b2b | |
Step 37/184 : ENV PKG_CONFIG_LIBDIR= | |
---> Using cache | |
---> c0b8bf1d85f7 | |
Step 38/184 : ENV PKG_CONFIG_PATH= | |
---> Using cache | |
---> 4cb047341339 | |
Step 39/184 : ENV PKG_CONFIG_SYSROOT_DIR= | |
---> Using cache | |
---> 4837612593ca | |
Step 40/184 : RUN mkdir zlib-1.2.11/build | |
---> Using cache | |
---> 4c17133f027b | |
Step 41/184 : WORKDIR /home/develop/zlib-1.2.11/build | |
---> Using cache | |
---> a05ab0fae4e0 | |
Step 42/184 : RUN ../configure && make -j$(($(nproc) * 2)) | |
---> Using cache | |
---> 090af7a633ac | |
Step 43/184 : USER root | |
---> Using cache | |
---> 5dd1b2daead5 | |
Step 44/184 : RUN make install | |
---> Using cache | |
---> 803fd53b4bf8 | |
Step 45/184 : USER develop | |
---> Using cache | |
---> 845e1917836d | |
Step 46/184 : RUN cd && rm -rf zlib-1.2.11/build | |
---> Using cache | |
---> be876be96288 | |
Step 47/184 : ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
---> Using cache | |
---> 2a4059c79e67 | |
Step 48/184 : ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
---> Using cache | |
---> 024586b5fe93 | |
Step 49/184 : ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
---> Using cache | |
---> 649daa643930 | |
Step 50/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 8be675ad6c47 | |
Step 51/184 : RUN mkdir zlib-1.2.11/build-arm | |
---> Using cache | |
---> 3a1584be1861 | |
Step 52/184 : WORKDIR /home/develop/zlib-1.2.11/build-arm | |
---> Using cache | |
---> 90cf7f69c264 | |
Step 53/184 : RUN CFLAGS="${STAGING_INCLUDE_FLAGS}" LDFLAGS="${STAGING_LD_FLAGS}" CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" LD="aarch64-rpi3-linux-gnu-ld --sysroot=${RPI3_SYSROOT}" ../configure --prefix="/usr" && make -j$(($(nproc) * 2)) && make install DESTDIR="${RPI3_SYSROOT}" && make install DESTDIR="${RPI3_STAGING}" && cd && rm -rf zlib-1.2.11 | |
---> Using cache | |
---> 1270c5c7e7b2 | |
Step 54/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 7f43a656fa24 | |
Step 55/184 : RUN wget https://github.com/openssl/openssl/archive/OpenSSL_1_1_1c.tar.gz | |
---> Using cache | |
---> e1ba63609584 | |
Step 56/184 : RUN tar xzf OpenSSL_1_1_1c.tar.gz | |
---> Using cache | |
---> 10bd499c9c6c | |
Step 57/184 : ENV PKG_CONFIG_LIBDIR= | |
---> Using cache | |
---> c9a85188892e | |
Step 58/184 : ENV PKG_CONFIG_PATH= | |
---> Using cache | |
---> d971c2df6aad | |
Step 59/184 : ENV PKG_CONFIG_SYSROOT_DIR= | |
---> Using cache | |
---> beddb900644f | |
Step 60/184 : WORKDIR /home/develop/openssl-OpenSSL_1_1_1c | |
---> Using cache | |
---> 0a1cedd5059c | |
Step 61/184 : RUN ./config --prefix="/usr/local" && make -j$(($(nproc) * 2)) | |
---> Using cache | |
---> 63c2662bcd57 | |
Step 62/184 : USER root | |
---> Using cache | |
---> 74d9440e4f83 | |
Step 63/184 : RUN make install_sw && make distclean && cd && rm -rf openssl-OpenSSL_1_1_1c | |
---> Using cache | |
---> 6b26392bab49 | |
Step 64/184 : USER develop | |
---> Using cache | |
---> 45510716a159 | |
Step 65/184 : ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
---> Using cache | |
---> f2b900eb1c68 | |
Step 66/184 : ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
---> Using cache | |
---> 8cbd6de72d04 | |
Step 67/184 : ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
---> Using cache | |
---> 10f66c0bbe38 | |
Step 68/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 6bc469ca4842 | |
Step 69/184 : RUN tar xzf OpenSSL_1_1_1c.tar.gz && rm OpenSSL_1_1_1c.tar.gz | |
---> Using cache | |
---> 4bdb1c78ef05 | |
Step 70/184 : WORKDIR /home/develop/openssl-OpenSSL_1_1_1c | |
---> Using cache | |
---> 784963c604c8 | |
Step 71/184 : RUN ./Configure --prefix="/usr" --cross-compile-prefix="aarch64-rpi3-linux-gnu-" linux-aarch64 && make -j$(($(nproc) * 2)) && make install_sw DESTDIR="${RPI3_SYSROOT}" && make install_sw DESTDIR="${RPI3_STAGING}" && cd && rm -rf openssl-OpenSSL_1_1_1c | |
---> Using cache | |
---> bd2eb028a27e | |
Step 72/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 887c4d27a6cc | |
Step 73/184 : RUN wget -O libffi-3.2.1.tar.gz https://codeload.github.com/libffi/libffi/tar.gz/v3.2.1 && tar xzf libffi-3.2.1.tar.gz && rm libffi-3.2.1.tar.gz | |
---> Using cache | |
---> 1e811f826694 | |
Step 74/184 : ENV PKG_CONFIG_LIBDIR= | |
---> Using cache | |
---> 6ce4641ccc0b | |
Step 75/184 : ENV PKG_CONFIG_PATH= | |
---> Using cache | |
---> 72e9c5360296 | |
Step 76/184 : ENV PKG_CONFIG_SYSROOT_DIR= | |
---> Using cache | |
---> a0b736d94540 | |
Step 77/184 : WORKDIR /home/develop/libffi-3.2.1 | |
---> Using cache | |
---> 9448dd4f8093 | |
Step 78/184 : RUN ./autogen.sh | |
---> Using cache | |
---> 8f0ee2f681f6 | |
Step 79/184 : RUN mkdir build | |
---> Using cache | |
---> fa7626c74e98 | |
Step 80/184 : WORKDIR /home/develop/libffi-3.2.1/build | |
---> Using cache | |
---> e378a577605a | |
Step 81/184 : RUN ../configure CFLAGS="-O2" CXXFLAGS="-O2" && make -j$(($(nproc) * 2)) | |
---> Using cache | |
---> cdb02b5094d8 | |
Step 82/184 : USER root | |
---> Using cache | |
---> be7806dbb6ff | |
Step 83/184 : RUN make install | |
---> Using cache | |
---> a6a6d78cee03 | |
Step 84/184 : USER develop | |
---> Using cache | |
---> 4f939e24e456 | |
Step 85/184 : RUN cd && rm -rf libffi-3.2.1/build | |
---> Using cache | |
---> d2e0393e20cd | |
Step 86/184 : ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
---> Using cache | |
---> 241b5daab8ca | |
Step 87/184 : ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
---> Using cache | |
---> 3773c462ca1b | |
Step 88/184 : ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
---> Using cache | |
---> d1299440244a | |
Step 89/184 : WORKDIR /home/develop/libffi-3.2.1 | |
---> Using cache | |
---> f10618c510d3 | |
Step 90/184 : RUN mkdir build-arm | |
---> Using cache | |
---> 1a013e634480 | |
Step 91/184 : WORKDIR /home/develop/libffi-3.2.1/build-arm | |
---> Using cache | |
---> 50f5dc5d8427 | |
Step 92/184 : RUN ../configure --host="aarch64-linux-gnu" --prefix="/usr" CFLAGS="-O2" CXXFLAGS="-O2" --with-sysroot="${RPI3_SYSROOT}" CC="aarch64-rpi3-linux-gnu-gcc" CXX="aarch64-rpi3-linux-gnu-g++" LD="aarch64-rpi3-linux-gnu-ld" && make -j$(($(nproc) * 2)) && make install DESTDIR="${RPI3_SYSROOT}" && make install DESTDIR="${RPI3_STAGING}" && cd && rm -rf libffi-3.2.1 | |
---> Using cache | |
---> 423e9c7e807a | |
Step 93/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 8ac205832dd7 | |
Step 94/184 : RUN wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz && tar xzf Python-3.7.4.tgz && rm Python-3.7.4.tgz | |
---> Using cache | |
---> 2a4276c8d2b1 | |
Step 95/184 : ENV PKG_CONFIG_LIBDIR= | |
---> Using cache | |
---> 77b28bcae3b9 | |
Step 96/184 : ENV PKG_CONFIG_PATH= | |
---> Using cache | |
---> b5517749e5bb | |
Step 97/184 : ENV PKG_CONFIG_SYSROOT_DIR= | |
---> Using cache | |
---> d9f026d8349c | |
Step 98/184 : WORKDIR /home/develop/Python-3.7.4 | |
---> Using cache | |
---> a0c6f151d6f3 | |
Step 99/184 : RUN mkdir build | |
---> Using cache | |
---> bec963fdad8d | |
Step 100/184 : WORKDIR /home/develop/Python-3.7.4/build | |
---> Using cache | |
---> 53c30f5bb04e | |
Step 101/184 : USER root | |
---> Using cache | |
---> 33ab167551dc | |
Step 102/184 : RUN ln -s /usr/local/lib/libffi-3.2.1/include/* /usr/local/include | |
---> Using cache | |
---> ea0bcfb04d38 | |
Step 103/184 : USER develop | |
---> Using cache | |
---> 295faadbdf43 | |
Step 104/184 : RUN ../configure && make -j$(($(nproc) * 2)) | |
---> Using cache | |
---> 7eff9212aea3 | |
Step 105/184 : USER root | |
---> Using cache | |
---> 2c5e59d2b8eb | |
Step 106/184 : RUN make install | |
---> Using cache | |
---> 9d89815eae5d | |
Step 107/184 : USER develop | |
---> Using cache | |
---> 4e57e90fb029 | |
Step 108/184 : RUN cd && rm -rf Python-3.7.4/build | |
---> Using cache | |
---> 4efd93a9cb4d | |
Step 109/184 : ENV PKG_CONFIG_LIBDIR=/home/develop/RPi3-sysroot/usr/lib | |
---> Using cache | |
---> 8aacde04a89c | |
Step 110/184 : ENV PKG_CONFIG_PATH=/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
---> Using cache | |
---> 232e4a08dc6b | |
Step 111/184 : ENV PKG_CONFIG_SYSROOT_DIR=/home/develop/RPi3-sysroot | |
---> Using cache | |
---> d3c3edea863d | |
Step 112/184 : WORKDIR /home/develop | |
---> Using cache | |
---> 8bb1af05df33 | |
Step 113/184 : RUN git clone --branch bzip2-1.0.8 --depth 1 git://sourceware.org/git/bzip2.git | |
---> Using cache | |
---> a84cc4b0715e | |
Step 114/184 : WORKDIR /home/develop/bzip2 | |
---> Using cache | |
---> 635183d01375 | |
Step 115/184 : RUN make -f Makefile-libbz2_so -j $(($(nproc) * 2)) CC="aarch64-rpi3-linux-gnu-gcc --sysroot=$RPI3_SYSROOT" | |
---> Using cache | |
---> a9025abc5991 | |
Step 116/184 : RUN cp -a libbz2.so.1.0 $RPI3_SYSROOT/usr/lib | |
---> Using cache | |
---> 65cd10755739 | |
Step 117/184 : RUN cp -a libbz2.so.1.0.8 $RPI3_SYSROOT/usr/lib | |
---> Using cache | |
---> 3b3daac4fd6f | |
Step 118/184 : RUN cp -a libbz2.so.1.0 $RPI3_STAGING/usr/lib | |
---> Using cache | |
---> bcb92dc1618c | |
Step 119/184 : RUN cp -a libbz2.so.1.0.8 $RPI3_STAGING/usr/lib | |
---> Using cache | |
---> d2b15620276e | |
Step 120/184 : RUN make bzip2 bzip2recover -j $(($(nproc) * 2)) CC="aarch64-rpi3-linux-gnu-gcc --sysroot=$RPI3_SYSROOT" | |
---> Using cache | |
---> 87d5a0096d7a | |
Step 121/184 : RUN make install PREFIX="${RPI3_SYSROOT}/usr" | |
---> Using cache | |
---> 9e2d749c6482 | |
Step 122/184 : RUN make install PREFIX="${RPI3_STAGING}/usr" | |
---> Using cache | |
---> 7fcccdfe5fc9 | |
Step 123/184 : RUN ln -s libbz2.so.1.0 ${RPI3_SYSROOT}/usr/lib/libbz2.so | |
---> Using cache | |
---> b10a35f65113 | |
Step 124/184 : RUN ln -s libbz2.so.1.0 ${RPI3_STAGING}/usr/lib/libbz2.so | |
---> Using cache | |
---> 4b8ed8428af7 | |
Step 125/184 : WORKDIR /home/develop | |
---> Using cache | |
---> c3a2717fe131 | |
Step 126/184 : RUN wget ftp://ftp.gnu.org/gnu/ncurses/ncurses-6.1.tar.gz | |
---> Running in 3da05196ca6f | |
--2019-09-09 13:51:26-- ftp://ftp.gnu.org/gnu/ncurses/ncurses-6.1.tar.gz | |
=> 'ncurses-6.1.tar.gz' | |
Resolving ftp.gnu.org (ftp.gnu.org)... 209.51.188.20, 2001:470:142:3::b | |
Connecting to ftp.gnu.org (ftp.gnu.org)|209.51.188.20|:21... connected. | |
Logging in as anonymous ... Logged in! | |
==> SYST ... done. ==> PWD ... done. | |
==> TYPE I ... done. ==> CWD (1) /gnu/ncurses ... done. | |
==> SIZE ncurses-6.1.tar.gz ... 3365395 | |
==> PASV ... done. ==> RETR ncurses-6.1.tar.gz ... done. | |
Length: 3365395 (3.2M) (unauthoritative) | |
0K .......... .......... .......... .......... .......... 1% 247K 13s | |
50K .......... .......... .......... .......... .......... 3% 507K 10s | |
100K .......... .......... .......... .......... .......... 4% 8.06M 6s | |
150K .......... .......... .......... .......... .......... 6% 525K 6s | |
200K .......... .......... .......... .......... .......... 7% 11.9M 5s | |
250K .......... .......... .......... .......... .......... 9% 6.92M 4s | |
300K .......... .......... .......... .......... .......... 10% 16.1M 3s | |
350K .......... .......... .......... .......... .......... 12% 571K 4s | |
400K .......... .......... .......... .......... .......... 13% 9.81M 3s | |
450K .......... .......... .......... .......... .......... 15% 2.72M 3s | |
500K .......... .......... .......... .......... .......... 16% 13.2M 3s | |
550K .......... .......... .......... .......... .......... 18% 705K 3s | |
600K .......... .......... .......... .......... .......... 19% 9.40M 2s | |
650K .......... .......... .......... .......... .......... 21% 2.59M 2s | |
700K .......... .......... .......... .......... .......... 22% 7.17M 2s | |
750K .......... .......... .......... .......... .......... 24% 779K 2s | |
800K .......... .......... .......... .......... .......... 25% 4.26M 2s | |
850K .......... .......... .......... .......... .......... 27% 4.10M 2s | |
900K .......... .......... .......... .......... .......... 28% 5.59M 2s | |
950K .......... .......... .......... .......... .......... 30% 10.5M 2s | |
1000K .......... .......... .......... .......... .......... 31% 690K 2s | |
1050K .......... .......... .......... .......... .......... 33% 4.78M 2s | |
1100K .......... .......... .......... .......... .......... 34% 9.10M 2s | |
1150K .......... .......... .......... .......... .......... 36% 5.00M 1s | |
1200K .......... .......... .......... .......... .......... 38% 763K 1s | |
1250K .......... .......... .......... .......... .......... 39% 4.45M 1s | |
1300K .......... .......... .......... .......... .......... 41% 4.63M 1s | |
1350K .......... .......... .......... .......... .......... 42% 6.11M 1s | |
1400K .......... .......... .......... .......... .......... 44% 11.4M 1s | |
1450K .......... .......... .......... .......... .......... 45% 665K 1s | |
1500K .......... .......... .......... .......... .......... 47% 6.02M 1s | |
1550K .......... .......... .......... .......... .......... 48% 16.7M 1s | |
1600K .......... .......... .......... .......... .......... 50% 6.79M 1s | |
1650K .......... .......... .......... .......... .......... 51% 8.56M 1s | |
1700K .......... .......... .......... .......... .......... 53% 638K 1s | |
1750K .......... .......... .......... .......... .......... 54% 6.76M 1s | |
1800K .......... .......... .......... .......... .......... 56% 13.4M 1s | |
1850K .......... .......... .......... .......... .......... 57% 9.25M 1s | |
1900K .......... .......... .......... .......... .......... 59% 9.23M 1s | |
1950K .......... .......... .......... .......... .......... 60% 727K 1s | |
2000K .......... .......... .......... .......... .......... 62% 3.43M 1s | |
2050K .......... .......... .......... .......... .......... 63% 4.44M 1s | |
2100K .......... .......... .......... .......... .......... 65% 12.2M 1s | |
2150K .......... .......... .......... .......... .......... 66% 8.37M 1s | |
2200K .......... .......... .......... .......... .......... 68% 12.6M 1s | |
2250K .......... .......... .......... .......... .......... 69% 688K 1s | |
2300K .......... .......... .......... .......... .......... 71% 3.80M 1s | |
2350K .......... .......... .......... .......... .......... 73% 8.46M 0s | |
2400K .......... .......... .......... .......... .......... 74% 6.51M 0s | |
2450K .......... .......... .......... .......... .......... 76% 11.8M 0s | |
2500K .......... .......... .......... .......... .......... 77% 921K 0s | |
2550K .......... .......... .......... .......... .......... 79% 3.24M 0s | |
2600K .......... .......... .......... .......... .......... 80% 4.07M 0s | |
2650K .......... .......... .......... .......... .......... 82% 3.80M 0s | |
2700K .......... .......... .......... .......... .......... 83% 11.2M 0s | |
2750K .......... .......... .......... .......... .......... 85% 9.56M 0s | |
2800K .......... .......... .......... .......... .......... 86% 1005K 0s | |
2850K .......... .......... .......... .......... .......... 88% 3.56M 0s | |
2900K .......... .......... .......... .......... .......... 89% 2.97M 0s | |
2950K .......... .......... .......... .......... .......... 91% 14.0M 0s | |
3000K .......... .......... .......... .......... .......... 92% 3.69M 0s | |
3050K .......... .......... .......... .......... .......... 94% 8.45M 0s | |
3100K .......... .......... .......... .......... .......... 95% 1.09M 0s | |
3150K .......... .......... .......... .......... .......... 97% 2.97M 0s | |
3200K .......... .......... .......... .......... .......... 98% 2.88M 0s | |
3250K .......... .......... .......... ...... 100% 14.5M=1.6s | |
2019-09-09 13:51:29 (1.97 MB/s) - 'ncurses-6.1.tar.gz' saved [3365395] | |
Removing intermediate container 3da05196ca6f | |
---> 5c78ef08ff47 | |
Step 127/184 : RUN tar xzf ncurses-6.1.tar.gz && rm ncurses-6.1.tar.gz | |
---> Running in 051e79ef9c58 | |
Removing intermediate container 051e79ef9c58 | |
---> 77738428aed8 | |
Step 128/184 : RUN mkdir ncurses-6.1/build-arm | |
---> Running in 7a12cd0fbbaf | |
Removing intermediate container 7a12cd0fbbaf | |
---> 35dbf633b70f | |
Step 129/184 : WORKDIR /home/develop/ncurses-6.1/build-arm | |
---> Running in d592e1aec81b | |
Removing intermediate container d592e1aec81b | |
---> 659bfa7ae3d3 | |
Step 130/184 : RUN ../configure --enable-termcap --enable-getcap --without-normal --enable-pc-files --with-shared --without-debug --without-ada --enable-overwrite --prefix="/usr" --with-build-cc=gcc --host="aarch64-rpi3-linux-gnu" CFLAGS=" --sysroot=${RPI3_SYSROOT}" CC="aarch64-rpi3-linux-gnu-gcc" | |
---> Running in 0fb7445c904d | |
configure: WARNING: If you wanted to set the --build type, don't use --host. | |
If a cross compiler is detected then cross compile mode will be used. | |
checking for egrep... grep -E | |
Configuring NCURSES 6.1 ABI 6 (Mon Sep 9 13:51:32 UTC 2019) | |
checking for package version... 6.0 | |
checking for package patch date... 20180127 | |
checking build system type... x86_64-pc-linux-gnu | |
checking host system type... aarch64-rpi3-linux-gnu | |
checking target system type... aarch64-rpi3-linux-gnu | |
Configuring for linux-gnu | |
checking for prefix... /usr | |
checking for aarch64-rpi3-linux-gnu-gcc... aarch64-rpi3-linux-gnu-gcc | |
checking for C compiler default output... a.out | |
checking whether the C compiler works... yes | |
checking whether we are cross compiling... yes | |
checking for executable suffix... | |
checking for object suffix... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc accepts -g... yes | |
checking version of aarch64-rpi3-linux-gnu-gcc... 64 | |
checking for aarch64-rpi3-linux-gnu-gcc option to accept ANSI C... none needed | |
checking $CC variable... ok | |
checking how to run the C preprocessor... aarch64-rpi3-linux-gnu-gcc -E | |
checking whether aarch64-rpi3-linux-gnu-gcc needs -traditional... no | |
checking whether aarch64-rpi3-linux-gnu-gcc understands -c and -o together... yes | |
checking if you want to ensure bool is consistent with C++... yes | |
checking for aarch64-rpi3-linux-gnu-g++... aarch64-rpi3-linux-gnu-g++ | |
checking whether we are using the GNU C++ compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-g++ accepts -g... yes | |
checking if aarch64-rpi3-linux-gnu-g++ works... yes | |
checking version of aarch64-rpi3-linux-gnu-g++... 64 | |
checking if you want to build C++ binding and demo... yes | |
checking if you want to build with Ada95... no | |
checking if you want to install terminal database... yes | |
checking if you want to install manpages... yes | |
checking if you want to build programs such as tic... yes | |
checking if you want to build test-programs... yes | |
checking if you wish to install curses.h... yes | |
checking for mawk... mawk | |
checking for egrep... (cached) grep -E | |
checking for a BSD compatible install... /usr/bin/install -c | |
checking for lint... no | |
checking for cppcheck... no | |
checking for splint... no | |
checking whether ln -s works... yes | |
checking if ln -s -f options work... yes | |
checking for long file names... yes | |
checking if you want to use pkg-config... yes | |
checking for aarch64-rpi3-linux-gnu-pkg-config... no | |
checking for pkg-config... /usr/bin/pkg-config | |
checking for /usr/bin/pkg-config library directory... checking done... /usr/lib/x86_64-linux-gnu/pkgconfig | |
checking if we should install .pc files for /usr/bin/pkg-config... yes | |
checking for suffix to add to pc-files... none | |
checking if we should assume mixed-case filenames... auto | |
checking if filesystem supports mixed-case filenames... yes | |
checking whether make sets ${MAKE}... yes | |
checking for exctags... no | |
checking for ctags... no | |
checking for exetags... no | |
checking for etags... no | |
checking for ctags... no | |
checking for etags... no | |
checking for makeflags variable... | |
checking for aarch64-rpi3-linux-gnu-ranlib... aarch64-rpi3-linux-gnu-ranlib | |
checking for aarch64-rpi3-linux-gnu-ld... aarch64-rpi3-linux-gnu-ld | |
checking for aarch64-rpi3-linux-gnu-ar... aarch64-rpi3-linux-gnu-ar | |
checking for aarch64-rpi3-linux-gnu-nm... aarch64-rpi3-linux-gnu-nm | |
checking for aarch64-rpi3-linux-gnu-ar... (cached) aarch64-rpi3-linux-gnu-ar | |
checking for options to update archives... -curvU | |
checking if you have specified an install-prefix... | |
checking for native build C compiler... gcc | |
checking for native build C preprocessor... ${BUILD_CC} -E | |
checking for native build C flags... | |
checking for native build C preprocessor-flags... | |
checking for native build linker-flags... | |
checking for native build linker-libraries... | |
checking if libtool -version-number should be used... yes | |
checking if you want to build libraries with libtool... no | |
checking if you want to build shared libraries... yes | |
checking if you want to build static libraries... no | |
checking if you want to build debug libraries... no | |
checking if you want to build profiling libraries... no | |
checking if you want to build C++ shared libraries... no | |
checking for specified models... shared | |
checking for default model... shared | |
checking if you want to have a library-prefix... auto | |
checking for PATH separator... : | |
checking if you want to build a separate terminfo library... no | |
checking if you want to build a separate tic library... no | |
checking if you want to link with the GPM mouse library... maybe | |
checking for gpm.h... no | |
checking for default loader flags... | |
checking if rpath option should be used... no | |
checking if shared libraries should be relinked during install... yes | |
checking for an rpath option... -Wl,-rpath, | |
checking if release/abi version should be used for shared libs... auto | |
checking which aarch64-rpi3-linux-gnu-gcc option to use... -fPIC | |
checking if current CFLAGS link properly... yes | |
checking if versioned-symbols file should be used... no | |
checking if you want to disable library suffixes... no | |
checking if rpath-hack should be disabled... no | |
checking for updated LDFLAGS... maybe | |
checking for ldd... ldd | |
checking if you wish to append extra suffix to header/library paths... | |
checking if you wish to install ncurses overwriting curses... yes | |
checking if external terminfo-database is used... yes | |
checking which terminfo source-file will be installed... ${top_srcdir}/misc/terminfo.src | |
checking whether to use hashed database instead of directory/tree... no | |
checking for list of fallback descriptions... | |
checking if you want modern xterm or antique... xterm-new | |
checking if xterm backspace sends BS or DEL... BS | |
checking for list of terminfo directories... /usr/share/terminfo | |
checking for default terminfo directory... /usr/share/terminfo | |
checking if big-core option selected... no | |
checking if big-strings option selected... yes | |
checking if you want termcap-fallback support... yes | |
checking for list of termcap files... /etc/termcap:/usr/share/misc/termcap | |
checking if fast termcap-loader is needed... yes | |
checking if translated termcaps will be cached in ~/.terminfo... no | |
checking if ~/.terminfo is wanted... yes | |
checking if you want to use restricted environment when running as root... yes | |
checking for unistd.h... yes | |
checking for remove... yes | |
checking for unlink... yes | |
checking for link... yes | |
checking for symlink... yes | |
checking if tic should use symbolic links... no | |
checking if tic should use hard links... yes | |
checking if you want broken-linker support code... no | |
checking if tputs should process BSD-style prefix padding... no | |
checking if we must define _GNU_SOURCE... yes | |
checking if we should also define _DEFAULT_SOURCE... yes | |
checking if _XOPEN_SOURCE really is set... yes | |
checking if SIGWINCH is defined... yes | |
checking for nl_langinfo and CODESET... yes | |
checking if you want wide-character code... no | |
checking whether to enable _LP64 definition in curses.h... yes | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking for _LARGE_FILES value needed for large files... no | |
checking for _LARGEFILE_SOURCE value needed for large files... no | |
checking for fseeko... yes | |
checking whether to use struct dirent64... no | |
checking if you want tparm not to use X/Open fixed-parameter list... yes | |
checking if you want to suppress wattr* macros to help with ncurses5/ncurses6 transition... no | |
checking for X11 rgb file... ${exec_prefix}/lib/X11/rgb.txt | |
checking for type of bool... auto | |
checking for alternate terminal capabilities file... Caps | |
checking for type of chtype... uint32_t | |
checking for type of ospeed... short | |
checking for type of mmask_t... uint32_t | |
checking for size CCHARW_MAX... 5 | |
checking for type of tparm args... intptr_t | |
checking if RCS identifiers should be compiled-in... no | |
checking format of man-pages... normal | |
checking for manpage renaming... /home/develop/ncurses-6.1/man/man_db.renames | |
checking if manpage aliases will be installed... yes | |
checking if manpage symlinks should be used... yes | |
checking for manpage tbl... no | |
checking if you want to build with function extensions... yes | |
checking if you want to build with SCREEN extensions... yes | |
checking if you want to build with terminal-driver... no | |
checking for extended use of const keyword... yes | |
checking if you want to use extended colors... yes | |
configure: WARNING: This option applies only to wide-character library | |
checking if you want to use extended mouse encoding... yes | |
checking if you want to use extended putwin/screendump... yes | |
checking if you want $NCURSES_NO_PADDING code... yes | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... (cached) yes | |
checking for signed char... yes | |
checking size of signed char... 1 | |
checking if you want to use signed Boolean array in term.h... no | |
checking if you want SIGWINCH handler... yes | |
checking if you want user-definable terminal capabilities like termcap... yes | |
checking if you want to link with the pthread library... no | |
checking if you want reentrant code... no | |
checking if you want opaque curses-library structures... no | |
checking if you want opaque form-library structures... no | |
checking if you want opaque menu-library structures... no | |
checking if you want opaque panel-library structures... no | |
checking if you want all development code... no | |
checking if you want hard-tabs code... no | |
checking if you want limited support for xmc... no | |
checking if you do not want to assume colors are white-on-black... yes | |
checking if you want hashmap scrolling-optimization code... yes | |
checking if you want colorfgbg code... no | |
checking if you want interop bindings... yes | |
checking if you want experimental safe-sprintf code... no | |
checking if you want wgetch-events code... no | |
checking if you want to see long compiling messages... yes | |
checking if you want to install stripped executables... yes | |
checking if install needs to be told about ownership... no | |
checking if you want to see compiler warnings... | |
configure: checking for aarch64-rpi3-linux-gnu-gcc __attribute__ directives... | |
... scanf | |
... printf | |
... unused | |
... noreturn | |
checking if you want to work around bogus compiler/loader warnings... no | |
checking if you want to enable runtime assertions... no | |
checking if you want to use dmalloc for testing... no | |
checking if you want to use dbmalloc for testing... no | |
checking if you want to use valgrind for testing... no | |
checking if you want to perform memory-leak testing... no | |
checking whether to add trace feature to all models... no | |
checking if we want to use GNAT projects... yes | |
checking for gettimeofday... yes | |
checking if -lm needed for math functions... yes | |
checking for ANSI C header files... (cached) yes | |
checking for dirent.h that defines DIR... yes | |
checking for opendir in -ldir... no | |
checking whether time.h and sys/time.h may both be included... yes | |
checking for regcomp... yes | |
checking for regular-expression headers... regex.h | |
checking for fcntl.h... yes | |
checking for getopt.h... yes | |
checking for limits.h... yes | |
checking for locale.h... yes | |
checking for math.h... yes | |
checking for poll.h... yes | |
checking for sys/bsdtypes.h... no | |
checking for sys/ioctl.h... yes | |
checking for sys/param.h... yes | |
checking for sys/poll.h... yes | |
checking for sys/select.h... yes | |
checking for sys/time.h... yes | |
checking for sys/times.h... yes | |
checking for ttyent.h... yes | |
checking for unistd.h... (cached) yes | |
checking for wctype.h... yes | |
checking for unistd.h... (cached) yes | |
checking for getopt.h... (cached) yes | |
checking for header declaring getopt variables... unistd.h | |
checking if sys/time.h works with sys/select.h... yes | |
checking for an ANSI C-conforming const... yes | |
checking for inline... inline | |
checking if aarch64-rpi3-linux-gnu-gcc supports options to tune inlining... yes | |
checking for signal global datatype... volatile sig_atomic_t | |
checking if unsigned literals are legal... yes | |
checking if external errno is declared... yes | |
checking if external errno exists... no | |
checking if data-only library module links... unknown | |
checking for getcwd... yes | |
checking for getegid... yes | |
checking for geteuid... yes | |
checking for getopt... yes | |
checking for getttynam... yes | |
checking for issetugid... no | |
checking for poll... yes | |
checking for putenv... yes | |
checking for remove... (cached) yes | |
checking for select... yes | |
checking for setbuf... yes | |
checking for setbuffer... yes | |
checking for setenv... yes | |
checking for setvbuf... yes | |
checking for sigaction... yes | |
checking for sigvec... no | |
checking for strdup... yes | |
checking for strstr... yes | |
checking for tcgetpgrp... yes | |
checking for tdestroy... yes | |
checking for times... yes | |
checking for tsearch... yes | |
checking for vsnprintf... yes | |
checking for terminal-capability database functions... no | |
checking for isascii... yes | |
checking whether sigaction needs _POSIX_SOURCE... no | |
checking if nanosleep really works... unknown | |
checking for termio.h... yes | |
checking for termios.h... yes | |
checking for unistd.h... (cached) yes | |
checking whether termios.h needs _POSIX_SOURCE... no | |
checking for tcgetattr... yes | |
checking for vsscanf function or workaround... vsscanf | |
checking for unistd.h... (cached) yes | |
checking for working mkstemp... maybe | |
checking for mkstemp... yes | |
checking for intptr_t... configure: WARNING: cross compiling: assume setvbuf params not reversed | |
yes | |
checking for ssize_t... yes | |
checking for type sigaction_t... no | |
checking declaration of size-change... yes | |
checking for memmove... yes | |
checking for posix_openpt... yes | |
checking if poll really works... unknown | |
checking for va_copy... yes | |
checking for __va_copy... yes | |
checking for pid_t... yes | |
checking for unistd.h... (cached) yes | |
checking for vfork.h... no | |
checking for fork... yes | |
checking for vfork... yes | |
checking for working fork... (cached) yes | |
checking for working vfork... (cached) yes | |
checking for openpty in -lutil... yes | |
checking for openpty header... pty.h | |
checking if we should include stdbool.h... yes | |
checking for builtin bool type... no | |
checking if we already have C++ library... yes | |
checking whether aarch64-rpi3-linux-gnu-g++ understands -c and -o together... yes | |
checking how to run the C++ preprocessor... aarch64-rpi3-linux-gnu-g++ -E | |
checking for typeinfo... yes | |
checking for iostream... yes | |
checking if iostream uses std-namespace... yes | |
checking if we should include stdbool.h... (cached) yes | |
checking for builtin bool type... yes | |
checking for size of bool... configure: WARNING: Assuming unsigned for type of bool | |
unknown | |
checking for special defines needed for etip.h... none | |
checking if aarch64-rpi3-linux-gnu-g++ accepts parameter initialization... unknown | |
checking if aarch64-rpi3-linux-gnu-g++ accepts static_cast... yes | |
checking for library subsets... ticlib+termlib+ext_tinfo+base+ext_funcs | |
checking default library suffix... | |
checking default library-dependency suffix... .so | |
checking default object directory... obj_s | |
checking c++ library-dependency suffix... .a | |
checking where we will install curses.h... ${prefix}/include | |
checking for src modules... ncurses progs panel menu form | |
checking for tic... /usr/bin/tic | |
checking for defines to add to ncurses6-config script... -D_GNU_SOURCE -D_DEFAULT_SOURCE | |
package: ncurses | |
configure: creating ./config.status | |
config.status: creating include/MKterm.h.awk | |
config.status: creating include/curses.head | |
config.status: creating include/ncurses_dll.h | |
config.status: creating include/termcap.h | |
config.status: creating include/unctrl.h | |
config.status: creating man/Makefile | |
config.status: creating include/Makefile | |
config.status: creating ncurses/Makefile | |
config.status: creating progs/Makefile | |
config.status: creating panel/Makefile | |
config.status: creating menu/Makefile | |
config.status: creating form/Makefile | |
config.status: creating test/Makefile | |
config.status: creating misc/Makefile | |
config.status: creating c++/Makefile | |
config.status: creating misc/run_tic.sh | |
config.status: creating misc/ncurses-config | |
config.status: creating man/ncurses6-config.1 | |
config.status: creating misc/gen-pkgconfig | |
config.status: creating Makefile | |
config.status: creating include/ncurses_cfg.h | |
Appending rules for shared model (ncurses: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
Appending rules for shared model (progs: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
Appending rules for shared model (panel: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
Appending rules for shared model (menu: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
Appending rules for shared model (form: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
Appending rules for shared model (test: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
Appending rules for shared model (c++: ticlib+termlib+ext_tinfo+base+ext_funcs) | |
creating headers.sh | |
** Configuration summary for NCURSES 6.1 20180127: | |
extended funcs: yes | |
xterm terminfo: xterm-new | |
bin directory: /usr/bin | |
lib directory: /usr/lib | |
include directory: /usr/include | |
man directory: /usr/share/man | |
terminfo directory: /usr/share/terminfo | |
pkg-config directory: /usr/lib/x86_64-linux-gnu/pkgconfig | |
Removing intermediate container 0fb7445c904d | |
---> 1a73a47091b4 | |
Step 131/184 : RUN make -j$(($(nproc) * 2)) | |
---> Running in 46de85eafe3a | |
cd man && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/man' | |
/bin/sh ../../man/MKterminfo.sh ../../man/terminfo.head ../../man/../include/Caps ../../man/terminfo.tail >terminfo.5 | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/man' | |
cd include && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/include' | |
cat curses.head >curses.h | |
/bin/sh ../../include/MKhashsize.sh ../../include/Caps >hashsize.h | |
AWK=mawk /bin/sh ../../include/MKncurses_def.sh ../../include/ncurses_defs >ncurses_def.h | |
AWK=mawk /bin/sh ../../include/MKparametrized.sh ../../include/Caps >parametrized.h | |
touch config.h | |
mawk -f MKterm.h.awk ../../include/Caps > term.h | |
AWK=mawk /bin/sh ../../include/MKkey_defs.sh ../../include/Caps >>curses.h | |
/bin/sh ../../include/edit_cfg.sh ../include/ncurses_cfg.h term.h | |
** edit: HAVE_TCGETATTR 1 | |
** edit: HAVE_TERMIOS_H 1 | |
** edit: HAVE_TERMIO_H 1 | |
/bin/sh -c 'if test "chtype" = "cchar_t" ; then cat ../../include/curses.wide >>curses.h ; fi' | |
cat ../../include/curses.tail >>curses.h | |
** edit: BROKEN_LINKER 0 | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/include' | |
cd ncurses && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/ncurses' | |
mawk -f ../../ncurses/tinfo/MKcodes.awk bigstrings=1 ../../ncurses/../include/Caps >codes.c | |
gcc -o make_hash -DHAVE_CONFIG_H -DUSE_BUILD_CC -I../ncurses -I../../ncurses -I../include -I../../ncurses/../include ../../ncurses/tinfo/make_hash.c | |
/bin/sh -e ../../ncurses/tty/MKexpanded.sh "aarch64-rpi3-linux-gnu-gcc -E" -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG > expanded.c | |
/bin/sh -e ../../ncurses/tinfo/MKfallback.sh /usr/share/terminfo ../../misc/terminfo.src /usr/bin/tic >fallback.c | |
/bin/sh -e ../../ncurses/base/MKlib_gen.sh "aarch64-rpi3-linux-gnu-gcc -E -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG" "mawk" generated <../include/curses.h >lib_gen.c | |
AWK=mawk /bin/sh ../../ncurses/tinfo/MKkeys_list.sh ../../include/Caps | LC_ALL=C sort >keys.list | |
/bin/sh -e ../../ncurses/base/MKlib_gen.sh "aarch64-rpi3-linux-gnu-gcc -E -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG" "mawk" implemented <../include/curses.h >link_test.c | |
mawk -f ../../ncurses/tinfo/MKnames.awk bigstrings=1 ../../ncurses/../include/Caps >names.c | |
echo | mawk -f ../../ncurses/base/MKunctrl.awk bigstrings=1 >unctrl.c | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/hardscroll.c -o ../obj_s/hardscroll.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/hashmap.c -o ../obj_s/hashmap.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_addch.c -o ../obj_s/lib_addch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_addstr.c -o ../obj_s/lib_addstr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_beep.c -o ../obj_s/lib_beep.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_bkgd.c -o ../obj_s/lib_bkgd.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_box.c -o ../obj_s/lib_box.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_chgat.c -o ../obj_s/lib_chgat.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_clear.c -o ../obj_s/lib_clear.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_clearok.c -o ../obj_s/lib_clearok.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_clrbot.c -o ../obj_s/lib_clrbot.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_clreol.c -o ../obj_s/lib_clreol.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_color.c -o ../obj_s/lib_color.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_colorset.c -o ../obj_s/lib_colorset.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_delch.c -o ../obj_s/lib_delch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_delwin.c -o ../obj_s/lib_delwin.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_echo.c -o ../obj_s/lib_echo.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_endwin.c -o ../obj_s/lib_endwin.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_erase.c -o ../obj_s/lib_erase.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_flash.c -o ../obj_s/lib_flash.o | |
.. adding -P option to work around aarch64-rpi3-linux-gnu-gcc 9.1.0 | |
.. adding -P option to work around aarch64-rpi3-linux-gnu-gcc 9.1.0 | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_getch.c -o ../obj_s/lib_getch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_getstr.c -o ../obj_s/lib_getstr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_hline.c -o ../obj_s/lib_hline.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_immedok.c -o ../obj_s/lib_immedok.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_inchstr.c -o ../obj_s/lib_inchstr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_initscr.c -o ../obj_s/lib_initscr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_insch.c -o ../obj_s/lib_insch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_insdel.c -o ../obj_s/lib_insdel.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_insnstr.c -o ../obj_s/lib_insnstr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_instr.c -o ../obj_s/lib_instr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_isendwin.c -o ../obj_s/lib_isendwin.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_leaveok.c -o ../obj_s/lib_leaveok.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_mouse.c -o ../obj_s/lib_mouse.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_move.c -o ../obj_s/lib_move.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/lib_mvcur.c -o ../obj_s/lib_mvcur.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_mvwin.c -o ../obj_s/lib_mvwin.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_newterm.c -o ../obj_s/lib_newterm.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_newwin.c -o ../obj_s/lib_newwin.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_nl.c -o ../obj_s/lib_nl.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_overlay.c -o ../obj_s/lib_overlay.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_pad.c -o ../obj_s/lib_pad.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_printw.c -o ../obj_s/lib_printw.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_redrawln.c -o ../obj_s/lib_redrawln.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_refresh.c -o ../obj_s/lib_refresh.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_restart.c -o ../obj_s/lib_restart.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_scanw.c -o ../obj_s/lib_scanw.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_screen.c -o ../obj_s/lib_screen.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_scroll.c -o ../obj_s/lib_scroll.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_scrollok.c -o ../obj_s/lib_scrollok.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_scrreg.c -o ../obj_s/lib_scrreg.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_set_term.c -o ../obj_s/lib_set_term.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slk.c -o ../obj_s/lib_slk.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkatr_set.c -o ../obj_s/lib_slkatr_set.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkatrof.c -o ../obj_s/lib_slkatrof.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkatron.c -o ../obj_s/lib_slkatron.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkatrset.c -o ../obj_s/lib_slkatrset.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkattr.c -o ../obj_s/lib_slkattr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkclear.c -o ../obj_s/lib_slkclear.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkcolor.c -o ../obj_s/lib_slkcolor.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkinit.c -o ../obj_s/lib_slkinit.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slklab.c -o ../obj_s/lib_slklab.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkrefr.c -o ../obj_s/lib_slkrefr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slkset.c -o ../obj_s/lib_slkset.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_slktouch.c -o ../obj_s/lib_slktouch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_touch.c -o ../obj_s/lib_touch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/lib_tstp.c -o ../obj_s/lib_tstp.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_ungetch.c -o ../obj_s/lib_ungetch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/lib_vidattr.c -o ../obj_s/lib_vidattr.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_vline.c -o ../obj_s/lib_vline.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_wattroff.c -o ../obj_s/lib_wattroff.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_wattron.c -o ../obj_s/lib_wattron.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_winch.c -o ../obj_s/lib_winch.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_window.c -o ../obj_s/lib_window.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/nc_panel.c -o ../obj_s/nc_panel.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/safe_sprintf.c -o ../obj_s/safe_sprintf.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/tty_update.c -o ../obj_s/tty_update.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/trace/varargs.c -o ../obj_s/varargs.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/vsscanf.c -o ../obj_s/vsscanf.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_freeall.c -o ../obj_s/lib_freeall.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/expanded.c -o ../obj_s/expanded.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/legacy_coding.c -o ../obj_s/legacy_coding.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/lib_dft_fgbg.c -o ../obj_s/lib_dft_fgbg.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_print.c -o ../obj_s/lib_print.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/new_pair.c -o ../obj_s/new_pair.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/resizeterm.c -o ../obj_s/resizeterm.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/use_screen.c -o ../obj_s/use_screen.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/use_window.c -o ../obj_s/use_window.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/wresize.c -o ../obj_s/wresize.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/access.c -o ../obj_s/access.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/add_tries.c -o ../obj_s/add_tries.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/alloc_ttype.c -o ../obj_s/alloc_ttype.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/codes.c -o ../obj_s/codes.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/comp_error.c -o ../obj_s/comp_error.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/comp_hash.c -o ../obj_s/comp_hash.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/db_iterator.c -o ../obj_s/db_iterator.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/doalloc.c -o ../obj_s/doalloc.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/entries.c -o ../obj_s/entries.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/fallback.c -o ../obj_s/fallback.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/free_ttype.c -o ../obj_s/free_ttype.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/getenv_num.c -o ../obj_s/getenv_num.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/home_terminfo.c -o ../obj_s/home_terminfo.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_acs.c -o ../obj_s/lib_acs.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_baudrate.c -o ../obj_s/lib_baudrate.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_cur_term.c -o ../obj_s/lib_cur_term.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_data.c -o ../obj_s/lib_data.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_has_cap.c -o ../obj_s/lib_has_cap.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_kernel.c -o ../obj_s/lib_kernel.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_longname.c -o ../obj_s/lib_longname.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_napms.c -o ../obj_s/lib_napms.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_options.c -o ../obj_s/lib_options.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_raw.c -o ../obj_s/lib_raw.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_setup.c -o ../obj_s/lib_setup.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_termcap.c -o ../obj_s/lib_termcap.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_termname.c -o ../obj_s/lib_termname.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_tgoto.c -o ../obj_s/lib_tgoto.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_ti.c -o ../obj_s/lib_ti.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_tparm.c -o ../obj_s/lib_tparm.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_tputs.c -o ../obj_s/lib_tputs.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/trace/lib_trace.c -o ../obj_s/lib_trace.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/lib_ttyflags.c -o ../obj_s/lib_ttyflags.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tty/lib_twait.c -o ../obj_s/lib_twait.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/name_match.c -o ../obj_s/name_match.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/names.c -o ../obj_s/names.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/obsolete.c -o ../obj_s/obsolete.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/read_entry.c -o ../obj_s/read_entry.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/read_termcap.c -o ../obj_s/read_termcap.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/strings.c -o ../obj_s/strings.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/tries.c -o ../obj_s/tries.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/trim_sgr0.c -o ../obj_s/trim_sgr0.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/unctrl.c -o ../obj_s/unctrl.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/trace/visbuf.c -o ../obj_s/visbuf.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/alloc_entry.c -o ../obj_s/alloc_entry.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/captoinfo.c -o ../obj_s/captoinfo.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/comp_expand.c -o ../obj_s/comp_expand.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/comp_parse.c -o ../obj_s/comp_parse.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/comp_scan.c -o ../obj_s/comp_scan.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/parse_entry.c -o ../obj_s/parse_entry.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/write_entry.c -o ../obj_s/write_entry.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/define_key.c -o ../obj_s/define_key.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/hashed_db.c -o ../obj_s/hashed_db.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/key_defined.c -o ../obj_s/key_defined.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/keybound.c -o ../obj_s/keybound.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/keyok.c -o ../obj_s/keyok.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/base/version.c -o ../obj_s/version.o | |
/bin/sh -e ../../ncurses/tinfo/MKcaptab.sh mawk 1 ../../ncurses/tinfo/MKcaptab.awk ../../ncurses/../include/Caps > comp_captab.c | |
mawk -f ../../ncurses/base/MKkeyname.awk bigstrings=1 keys.list > lib_keyname.c | |
gcc -o make_keys -DHAVE_CONFIG_H -DUSE_BUILD_CC -I../ncurses -I../../ncurses -I../include -I../../ncurses/../include ../../ncurses/tinfo/make_keys.c | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/lib_gen.c -o ../obj_s/lib_gen.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/lib_keyname.c -o ../obj_s/lib_keyname.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../ncurses/comp_captab.c -o ../obj_s/comp_captab.o | |
./make_keys keys.list > init_keytry.h | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../ncurses -I. -I../../ncurses -I../include -I../../ncurses/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../ncurses/tinfo/init_keytry.c -o ../obj_s/init_keytry.o | |
linking ../lib/libncurses.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename ../lib/libncurses.so.6.1 .6.1`.6,-stats,-lc -o ../lib/libncurses.so.6.1 ../obj_s/hardscroll.o ../obj_s/hashmap.o ../obj_s/lib_addch.o ../obj_s/lib_addstr.o ../obj_s/lib_beep.o ../obj_s/lib_bkgd.o ../obj_s/lib_box.o ../obj_s/lib_chgat.o ../obj_s/lib_clear.o ../obj_s/lib_clearok.o ../obj_s/lib_clrbot.o ../obj_s/lib_clreol.o ../obj_s/lib_color.o ../obj_s/lib_colorset.o ../obj_s/lib_delch.o ../obj_s/lib_delwin.o ../obj_s/lib_echo.o ../obj_s/lib_endwin.o ../obj_s/lib_erase.o ../obj_s/lib_flash.o ../obj_s/lib_gen.o ../obj_s/lib_getch.o ../obj_s/lib_getstr.o ../obj_s/lib_hline.o ../obj_s/lib_immedok.o ../obj_s/lib_inchstr.o ../obj_s/lib_initscr.o ../obj_s/lib_insch.o ../obj_s/lib_insdel.o ../obj_s/lib_insnstr.o ../obj_s/lib_instr.o ../obj_s/lib_isendwin.o ../obj_s/lib_leaveok.o ../obj_s/lib_mouse.o ../obj_s/lib_move.o ../obj_s/lib_mvcur.o ../obj_s/lib_mvwin.o ../obj_s/lib_newterm.o ../obj_s/lib_newwin.o ../obj_s/lib_nl.o ../obj_s/lib_overlay.o ../obj_s/lib_pad.o ../obj_s/lib_printw.o ../obj_s/lib_redrawln.o ../obj_s/lib_refresh.o ../obj_s/lib_restart.o ../obj_s/lib_scanw.o ../obj_s/lib_screen.o ../obj_s/lib_scroll.o ../obj_s/lib_scrollok.o ../obj_s/lib_scrreg.o ../obj_s/lib_set_term.o ../obj_s/lib_slk.o ../obj_s/lib_slkatr_set.o ../obj_s/lib_slkatrof.o ../obj_s/lib_slkatron.o ../obj_s/lib_slkatrset.o ../obj_s/lib_slkattr.o ../obj_s/lib_slkclear.o ../obj_s/lib_slkcolor.o ../obj_s/lib_slkinit.o ../obj_s/lib_slklab.o ../obj_s/lib_slkrefr.o ../obj_s/lib_slkset.o ../obj_s/lib_slktouch.o ../obj_s/lib_touch.o ../obj_s/lib_tstp.o ../obj_s/lib_ungetch.o ../obj_s/lib_vidattr.o ../obj_s/lib_vline.o ../obj_s/lib_wattroff.o ../obj_s/lib_wattron.o ../obj_s/lib_winch.o ../obj_s/lib_window.o ../obj_s/nc_panel.o ../obj_s/safe_sprintf.o ../obj_s/tty_update.o ../obj_s/varargs.o ../obj_s/vsscanf.o ../obj_s/lib_freeall.o ../obj_s/expanded.o ../obj_s/legacy_coding.o ../obj_s/lib_dft_fgbg.o ../obj_s/lib_print.o ../obj_s/new_pair.o ../obj_s/resizeterm.o ../obj_s/use_screen.o ../obj_s/use_window.o ../obj_s/wresize.o ../obj_s/access.o ../obj_s/add_tries.o ../obj_s/alloc_ttype.o ../obj_s/codes.o ../obj_s/comp_captab.o ../obj_s/comp_error.o ../obj_s/comp_hash.o ../obj_s/db_iterator.o ../obj_s/doalloc.o ../obj_s/entries.o ../obj_s/fallback.o ../obj_s/free_ttype.o ../obj_s/getenv_num.o ../obj_s/home_terminfo.o ../obj_s/init_keytry.o ../obj_s/lib_acs.o ../obj_s/lib_baudrate.o ../obj_s/lib_cur_term.o ../obj_s/lib_data.o ../obj_s/lib_has_cap.o ../obj_s/lib_kernel.o ../obj_s/lib_keyname.o ../obj_s/lib_longname.o ../obj_s/lib_napms.o ../obj_s/lib_options.o ../obj_s/lib_raw.o ../obj_s/lib_setup.o ../obj_s/lib_termcap.o ../obj_s/lib_termname.o ../obj_s/lib_tgoto.o ../obj_s/lib_ti.o ../obj_s/lib_tparm.o ../obj_s/lib_tputs.o ../obj_s/lib_trace.o ../obj_s/lib_ttyflags.o ../obj_s/lib_twait.o ../obj_s/name_match.o ../obj_s/names.o ../obj_s/obsolete.o ../obj_s/read_entry.o ../obj_s/read_termcap.o ../obj_s/strings.o ../obj_s/tries.o ../obj_s/trim_sgr0.o ../obj_s/unctrl.o ../obj_s/visbuf.o ../obj_s/alloc_entry.o ../obj_s/captoinfo.o ../obj_s/comp_expand.o ../obj_s/comp_parse.o ../obj_s/comp_scan.o ../obj_s/parse_entry.o ../obj_s/write_entry.o ../obj_s/define_key.o ../obj_s/hashed_db.o ../obj_s/key_defined.o ../obj_s/keybound.o ../obj_s/keyok.o ../obj_s/version.o -L../lib | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.026674 | |
cd ../lib && (ln -s -f libncurses.so.6.1 libncurses.so.6; ln -s -f libncurses.so.6 libncurses.so; ) | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/ncurses' | |
cd progs && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/progs' | |
/bin/sh ../../progs/MKtermsort.sh mawk ../../progs/../include/Caps >termsort.c | |
echo "#ifndef __TRANSFORM_H" >transform.h | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/tparm_type.c -o ../obj_s/tparm_type.o | |
echo "#define __TRANSFORM_H 1" >>transform.h | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/infocmp.c -o ../obj_s/infocmp.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/clear.c -o ../obj_s/clear.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/clear_cmd.c -o ../obj_s/clear_cmd.o | |
echo "#include <progs.priv.h>" >>transform.h | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/tty_settings.c -o ../obj_s/tty_settings.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/tabs.c -o ../obj_s/tabs.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/reset_cmd.c -o ../obj_s/reset_cmd.o | |
echo "extern bool same_program(const char *, const char *);" >>transform.h | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/toe.c -o ../obj_s/toe.o | |
/bin/sh -c 'if test -n "" ; then echo "#define SUFFIX_IGNORED \"\"">>transform.h; fi' | |
echo "#define PROG_CAPTOINFO \"`echo captoinfo| sed 's/$//'|sed 's,x,x,'|sed 's/$//'`\"" >>transform.h | |
echo "#define PROG_INFOTOCAP \"`echo infotocap| sed 's/$//'|sed 's,x,x,'|sed 's/$//'`\"" >>transform.h | |
echo "#define PROG_CLEAR \"`echo clear| sed 's/$//'|sed 's,x,x,'|sed 's/$//'`\"" >>transform.h | |
echo "#define PROG_RESET \"`echo reset| sed 's/$//'|sed 's,x,x,'|sed 's/$//'`\"" >>transform.h | |
echo "#define PROG_INIT \"`echo init| sed 's/$//'|sed 's,x,x,'|sed 's/$//'`\"" >>transform.h | |
echo "#endif /* __TRANSFORM_H */" >>transform.h | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/tic.c -o ../obj_s/tic.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/transform.c -o ../obj_s/transform.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/tset.c -o ../obj_s/tset.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/dump_entry.c -o ../obj_s/dump_entry.o | |
aarch64-rpi3-linux-gnu-gcc -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../progs/tput.c -o ../obj_s/tput.o | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/clear.o ../obj_s/clear_cmd.o ../obj_s/tty_settings.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -o clear | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/tabs.o ../obj_s/tty_settings.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -o tabs | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/toe.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lncurses -lncurses -o toe | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/tset.o ../obj_s/reset_cmd.o ../obj_s/transform.o ../obj_s/tty_settings.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -o tset | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/tput.o ../obj_s/clear_cmd.o ../obj_s/reset_cmd.o ../obj_s/tparm_type.o ../obj_s/transform.o ../obj_s/tty_settings.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -o tput | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/infocmp.o ../obj_s/dump_entry.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lncurses -lncurses -o infocmp | |
aarch64-rpi3-linux-gnu-gcc ../obj_s/tic.o ../obj_s/dump_entry.o ../obj_s/tparm_type.o ../obj_s/transform.o -L../lib -DHAVE_CONFIG_H -I../progs -I. -I../../progs -I../include -I../../progs/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lncurses -lncurses -o tic | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/progs' | |
cd panel && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/panel' | |
rm -f ../include/panel.h | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/panel.c -o ../obj_s/panel.o | |
cp ../../panel/panel.h ../include/panel.h | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_above.c -o ../obj_s/p_above.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_below.c -o ../obj_s/p_below.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_bottom.c -o ../obj_s/p_bottom.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_delete.c -o ../obj_s/p_delete.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_hide.c -o ../obj_s/p_hide.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_hidden.c -o ../obj_s/p_hidden.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_move.c -o ../obj_s/p_move.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_new.c -o ../obj_s/p_new.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_replace.c -o ../obj_s/p_replace.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_show.c -o ../obj_s/p_show.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_top.c -o ../obj_s/p_top.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_update.c -o ../obj_s/p_update.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_user.c -o ../obj_s/p_user.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../panel -I../include -I../../panel/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../panel/p_win.c -o ../obj_s/p_win.o | |
linking ../lib/libpanel.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename ../lib/libpanel.so.6.1 .6.1`.6,-stats,-lc -o ../lib/libpanel.so.6.1 ../obj_s/panel.o ../obj_s/p_above.o ../obj_s/p_below.o ../obj_s/p_bottom.o ../obj_s/p_delete.o ../obj_s/p_hide.o ../obj_s/p_hidden.o ../obj_s/p_move.o ../obj_s/p_new.o ../obj_s/p_replace.o ../obj_s/p_show.o ../obj_s/p_top.o ../obj_s/p_update.o ../obj_s/p_user.o ../obj_s/p_win.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.012440 | |
cd ../lib && (ln -s -f libpanel.so.6.1 libpanel.so.6; ln -s -f libpanel.so.6 libpanel.so; ) | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/panel' | |
cd menu && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/menu' | |
rm -f ../include/menu.h | |
rm -f ../include/eti.h | |
rm -f ../include/mf_common.h | |
cp ../../menu/menu.h ../include/menu.h | |
cp ../../menu/eti.h ../include/eti.h | |
cp ../../menu/mf_common.h ../include/mf_common.h | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_attribs.c -o ../obj_s/m_attribs.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_cursor.c -o ../obj_s/m_cursor.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_driver.c -o ../obj_s/m_driver.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_format.c -o ../obj_s/m_format.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_global.c -o ../obj_s/m_global.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_hook.c -o ../obj_s/m_hook.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_cur.c -o ../obj_s/m_item_cur.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_nam.c -o ../obj_s/m_item_nam.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_new.c -o ../obj_s/m_item_new.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_opt.c -o ../obj_s/m_item_opt.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_top.c -o ../obj_s/m_item_top.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_use.c -o ../obj_s/m_item_use.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_val.c -o ../obj_s/m_item_val.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_item_vis.c -o ../obj_s/m_item_vis.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_items.c -o ../obj_s/m_items.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_new.c -o ../obj_s/m_new.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_opts.c -o ../obj_s/m_opts.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_pad.c -o ../obj_s/m_pad.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_pattern.c -o ../obj_s/m_pattern.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_post.c -o ../obj_s/m_post.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_req_name.c -o ../obj_s/m_req_name.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_scale.c -o ../obj_s/m_scale.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_spacing.c -o ../obj_s/m_spacing.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_sub.c -o ../obj_s/m_sub.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_userptr.c -o ../obj_s/m_userptr.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../menu -I../include -I../../menu/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../menu/m_win.c -o ../obj_s/m_win.o | |
linking ../lib/libmenu.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename ../lib/libmenu.so.6.1 .6.1`.6,-stats,-lc -o ../lib/libmenu.so.6.1 ../obj_s/m_attribs.o ../obj_s/m_cursor.o ../obj_s/m_driver.o ../obj_s/m_format.o ../obj_s/m_global.o ../obj_s/m_hook.o ../obj_s/m_item_cur.o ../obj_s/m_item_nam.o ../obj_s/m_item_new.o ../obj_s/m_item_opt.o ../obj_s/m_item_top.o ../obj_s/m_item_use.o ../obj_s/m_item_val.o ../obj_s/m_item_vis.o ../obj_s/m_items.o ../obj_s/m_new.o ../obj_s/m_opts.o ../obj_s/m_pad.o ../obj_s/m_pattern.o ../obj_s/m_post.o ../obj_s/m_req_name.o ../obj_s/m_scale.o ../obj_s/m_spacing.o ../obj_s/m_sub.o ../obj_s/m_userptr.o ../obj_s/m_win.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.013455 | |
cd ../lib && (ln -s -f libmenu.so.6.1 libmenu.so.6; ln -s -f libmenu.so.6 libmenu.so; ) | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/menu' | |
cd form && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/form' | |
rm -f ../include/form.h | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_arg.c -o ../obj_s/fld_arg.o | |
cp ../../form/form.h ../include/form.h | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_attr.c -o ../obj_s/fld_attr.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_current.c -o ../obj_s/fld_current.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_def.c -o ../obj_s/fld_def.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_dup.c -o ../obj_s/fld_dup.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_ftchoice.c -o ../obj_s/fld_ftchoice.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_ftlink.c -o ../obj_s/fld_ftlink.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_info.c -o ../obj_s/fld_info.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_just.c -o ../obj_s/fld_just.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_link.c -o ../obj_s/fld_link.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_max.c -o ../obj_s/fld_max.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_move.c -o ../obj_s/fld_move.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_newftyp.c -o ../obj_s/fld_newftyp.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_opts.c -o ../obj_s/fld_opts.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_pad.c -o ../obj_s/fld_pad.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_page.c -o ../obj_s/fld_page.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_stat.c -o ../obj_s/fld_stat.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_type.c -o ../obj_s/fld_type.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fld_user.c -o ../obj_s/fld_user.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_cursor.c -o ../obj_s/frm_cursor.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_data.c -o ../obj_s/frm_data.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_def.c -o ../obj_s/frm_def.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_driver.c -o ../obj_s/frm_driver.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_hook.c -o ../obj_s/frm_hook.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_opts.c -o ../obj_s/frm_opts.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_page.c -o ../obj_s/frm_page.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_post.c -o ../obj_s/frm_post.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_req_name.c -o ../obj_s/frm_req_name.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_scale.c -o ../obj_s/frm_scale.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_sub.c -o ../obj_s/frm_sub.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_user.c -o ../obj_s/frm_user.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/frm_win.c -o ../obj_s/frm_win.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_alnum.c -o ../obj_s/fty_alnum.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_alpha.c -o ../obj_s/fty_alpha.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_enum.c -o ../obj_s/fty_enum.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_generic.c -o ../obj_s/fty_generic.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_int.c -o ../obj_s/fty_int.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_ipv4.c -o ../obj_s/fty_ipv4.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_num.c -o ../obj_s/fty_num.o | |
aarch64-rpi3-linux-gnu-gcc -I../../ncurses -DHAVE_CONFIG_H -I. -I../../form -I../include -I../../form/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../form/fty_regex.c -o ../obj_s/fty_regex.o | |
linking ../lib/libform.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename ../lib/libform.so.6.1 .6.1`.6,-stats,-lc -o ../lib/libform.so.6.1 ../obj_s/fld_arg.o ../obj_s/fld_attr.o ../obj_s/fld_current.o ../obj_s/fld_def.o ../obj_s/fld_dup.o ../obj_s/fld_ftchoice.o ../obj_s/fld_ftlink.o ../obj_s/fld_info.o ../obj_s/fld_just.o ../obj_s/fld_link.o ../obj_s/fld_max.o ../obj_s/fld_move.o ../obj_s/fld_newftyp.o ../obj_s/fld_opts.o ../obj_s/fld_pad.o ../obj_s/fld_page.o ../obj_s/fld_stat.o ../obj_s/fld_type.o ../obj_s/fld_user.o ../obj_s/frm_cursor.o ../obj_s/frm_data.o ../obj_s/frm_def.o ../obj_s/frm_driver.o ../obj_s/frm_hook.o ../obj_s/frm_opts.o ../obj_s/frm_page.o ../obj_s/frm_post.o ../obj_s/frm_req_name.o ../obj_s/frm_scale.o ../obj_s/frm_sub.o ../obj_s/frm_user.o ../obj_s/frm_win.o ../obj_s/fty_alnum.o ../obj_s/fty_alpha.o ../obj_s/fty_enum.o ../obj_s/fty_generic.o ../obj_s/fty_int.o ../obj_s/fty_ipv4.o ../obj_s/fty_num.o ../obj_s/fty_regex.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.014767 | |
cd ../lib && (ln -s -f libform.so.6.1 libform.so.6; ln -s -f libform.so.6 libform.so; ) | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/form' | |
cd test && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/test' | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/background.c -o ../obj_s/background.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/blue.c -o ../obj_s/blue.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/bs.c -o ../obj_s/bs.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/cardfile.c -o ../obj_s/cardfile.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/chgat.c -o ../obj_s/chgat.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/popup_msg.c -o ../obj_s/popup_msg.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/clip_printw.c -o ../obj_s/clip_printw.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/color_set.c -o ../obj_s/color_set.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_altkeys.c -o ../obj_s/demo_altkeys.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_defkey.c -o ../obj_s/demo_defkey.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_forms.c -o ../obj_s/demo_forms.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/edit_field.c -o ../obj_s/edit_field.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_keyok.c -o ../obj_s/demo_keyok.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_menus.c -o ../obj_s/demo_menus.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_new_pair.c -o ../obj_s/demo_new_pair.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_panels.c -o ../obj_s/demo_panels.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_termcap.c -o ../obj_s/demo_termcap.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/demo_terminfo.c -o ../obj_s/demo_terminfo.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/ditto.c -o ../obj_s/ditto.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/dots.c -o ../obj_s/dots.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/dots_curses.c -o ../obj_s/dots_curses.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/dots_mvcur.c -o ../obj_s/dots_mvcur.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/dots_termcap.c -o ../obj_s/dots_termcap.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/dots_xcurses.c -o ../obj_s/dots_xcurses.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/echochar.c -o ../obj_s/echochar.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/extended_color.c -o ../obj_s/extended_color.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/filter.c -o ../obj_s/filter.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/firework.c -o ../obj_s/firework.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/firstlast.c -o ../obj_s/firstlast.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/foldkeys.c -o ../obj_s/foldkeys.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/form_driver_w.c -o ../obj_s/form_driver_w.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/gdc.c -o ../obj_s/gdc.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/hanoi.c -o ../obj_s/hanoi.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/hashtest.c -o ../obj_s/hashtest.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/inch_wide.c -o ../obj_s/inch_wide.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/inchs.c -o ../obj_s/inchs.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/ins_wide.c -o ../obj_s/ins_wide.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/insdelln.c -o ../obj_s/insdelln.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/inserts.c -o ../obj_s/inserts.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/key_names.c -o ../obj_s/key_names.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/keynames.c -o ../obj_s/keynames.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/knight.c -o ../obj_s/knight.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/list_keys.c -o ../obj_s/list_keys.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/lrtest.c -o ../obj_s/lrtest.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/movewindow.c -o ../obj_s/movewindow.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/ncurses.c -o ../obj_s/ncurses.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/padview.c -o ../obj_s/padview.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/picsmap.c -o ../obj_s/picsmap.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/newdemo.c -o ../obj_s/newdemo.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/railroad.c -o ../obj_s/railroad.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/rain.c -o ../obj_s/rain.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/redraw.c -o ../obj_s/redraw.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/savescreen.c -o ../obj_s/savescreen.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/sp_tinfo.c -o ../obj_s/sp_tinfo.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/tclock.c -o ../obj_s/tclock.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_add_wchstr.c -o ../obj_s/test_add_wchstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_addchstr.c -o ../obj_s/test_addchstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_addstr.c -o ../obj_s/test_addstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_addwstr.c -o ../obj_s/test_addwstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_arrays.c -o ../obj_s/test_arrays.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_get_wstr.c -o ../obj_s/test_get_wstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_getstr.c -o ../obj_s/test_getstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_instr.c -o ../obj_s/test_instr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_inwstr.c -o ../obj_s/test_inwstr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_opaque.c -o ../obj_s/test_opaque.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_setupterm.c -o ../obj_s/test_setupterm.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_sgr.c -o ../obj_s/test_sgr.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_termattrs.c -o ../obj_s/test_termattrs.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_vid_puts.c -o ../obj_s/test_vid_puts.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/test_vidputs.c -o ../obj_s/test_vidputs.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/testaddch.c -o ../obj_s/testaddch.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/testcurs.c -o ../obj_s/testcurs.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/testscanw.c -o ../obj_s/testscanw.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/view.c -o ../obj_s/view.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/worm.c -o ../obj_s/worm.o | |
aarch64-rpi3-linux-gnu-gcc -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -c ../../test/xmas.c -o ../obj_s/xmas.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o background ../obj_s/background.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o blue ../obj_s/blue.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o bs ../obj_s/bs.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o cardfile ../obj_s/cardfile.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o chgat ../obj_s/chgat.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o clip_printw ../obj_s/clip_printw.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o color_set ../obj_s/color_set.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_altkeys ../obj_s/demo_altkeys.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_defkey ../obj_s/demo_defkey.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_forms ../obj_s/demo_forms.o ../obj_s/edit_field.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_keyok ../obj_s/demo_keyok.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_menus ../obj_s/demo_menus.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_new_pair ../obj_s/demo_new_pair.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_panels ../obj_s/demo_panels.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_termcap ../obj_s/demo_termcap.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o demo_terminfo ../obj_s/demo_terminfo.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o ditto ../obj_s/ditto.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o dots ../obj_s/dots.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o dots_curses ../obj_s/dots_curses.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o dots_mvcur ../obj_s/dots_mvcur.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o dots_termcap ../obj_s/dots_termcap.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o dots_xcurses ../obj_s/dots_xcurses.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o echochar ../obj_s/echochar.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o extended_color ../obj_s/extended_color.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o filter ../obj_s/filter.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o firework ../obj_s/firework.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o firstlast ../obj_s/firstlast.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o foldkeys ../obj_s/foldkeys.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o form_driver_w ../obj_s/form_driver_w.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o gdc ../obj_s/gdc.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o hanoi ../obj_s/hanoi.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o hashtest ../obj_s/hashtest.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o inch_wide ../obj_s/inch_wide.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o inchs ../obj_s/inchs.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o ins_wide ../obj_s/ins_wide.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o insdelln ../obj_s/insdelln.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o inserts ../obj_s/inserts.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o key_names ../obj_s/key_names.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o keynames ../obj_s/keynames.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o knight ../obj_s/knight.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o list_keys ../obj_s/list_keys.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o lrtest ../obj_s/lrtest.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o movewindow ../obj_s/movewindow.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o padview ../obj_s/padview.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o picsmap ../obj_s/picsmap.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o newdemo ../obj_s/newdemo.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o railroad ../obj_s/railroad.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o rain ../obj_s/rain.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o redraw ../obj_s/redraw.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o savescreen ../obj_s/savescreen.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o sp_tinfo ../obj_s/sp_tinfo.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o tclock ../obj_s/tclock.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_add_wchstr ../obj_s/test_add_wchstr.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_addchstr ../obj_s/test_addchstr.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_addstr ../obj_s/test_addstr.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_addwstr ../obj_s/test_addwstr.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_arrays ../obj_s/test_arrays.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_get_wstr ../obj_s/test_get_wstr.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_getstr ../obj_s/test_getstr.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_instr ../obj_s/test_instr.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_inwstr ../obj_s/test_inwstr.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_opaque ../obj_s/test_opaque.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_setupterm ../obj_s/test_setupterm.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_sgr ../obj_s/test_sgr.o -L../lib -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -lncurses -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_termattrs ../obj_s/test_termattrs.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_vid_puts ../obj_s/test_vid_puts.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o test_vidputs ../obj_s/test_vidputs.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o testaddch ../obj_s/testaddch.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o testcurs ../obj_s/testcurs.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o testscanw ../obj_s/testscanw.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o view ../obj_s/view.o ../obj_s/popup_msg.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o worm ../obj_s/worm.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o xmas ../obj_s/xmas.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC `echo "-L../lib -lform -lmenu -lpanel -lncurses " | sed -e 's/-lform.*-lpanel[^ ]*//'` -lutil -lm | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -o ncurses ../obj_s/ncurses.o -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -I. -I../../test -I../test -DHAVE_CONFIG_H -DDATA_DIR=\"/usr/share\" -I. -I../../test -I../include -I../../test/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -fPIC -L../lib -lform -lmenu -lpanel -lncurses -lutil -lm | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/test' | |
cd misc && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/misc' | |
WHICH_XTERM=xterm-new \ | |
XTERM_KBS=BS \ | |
datadir=/usr/share \ | |
/bin/sh ../../misc/gen_edit.sh >run_tic.sed | |
/bin/sh ./gen-pkgconfig | |
** creating ncurses.pc | |
echo '** adjusting tabset paths' | |
** adjusting tabset paths | |
sed -f run_tic.sed ../../misc/terminfo.src >terminfo.tmp | |
** creating panel.pc | |
** creating menu.pc | |
** creating form.pc | |
** creating ncurses++.pc | |
touch pc-files | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/misc' | |
cd c++ && make DESTDIR="" RPATH_LIST="/usr/lib" all | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/c++' | |
cp ../../c++/etip.h.in etip.h | |
/bin/sh ../../c++/edit_cfg.sh ../include/ncurses_cfg.h etip.h | |
substituting autoconf'd values from ../include/ncurses_cfg.h into etip.h | |
... CPP_HAS_PARAM_INIT 0 | |
... CPP_HAS_STATIC_CAST 1 | |
... ETIP_NEEDS_MATH_EXCEPTION 0 | |
... ETIP_NEEDS_MATH_H 0 | |
... HAVE_BUILTIN_H 0 | |
... HAVE_GPP_BUILTIN_H 0 | |
... HAVE_GXX_BUILTIN_H 0 | |
... HAVE_IOSTREAM 1 | |
... HAVE_TYPEINFO 1 | |
... HAVE_VALUES_H 0 | |
... IOSTREAM_NAMESPACE 1 | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursesf.cc -o ../obj_s/cursesf.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursesm.cc -o ../obj_s/cursesm.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursesw.cc -o ../obj_s/cursesw.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursespad.cc -o ../obj_s/cursespad.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursesp.cc -o ../obj_s/cursesp.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursslk.cc -o ../obj_s/cursslk.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursesapp.cc -o ../obj_s/cursesapp.o | |
aarch64-rpi3-linux-gnu-g++ -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC -c ../../c++/cursesmain.cc -o ../obj_s/cursesmain.o | |
compiling demo (obj_s) | |
aarch64-rpi3-linux-gnu-ar -curvU ../lib/libncurses++.a ../obj_s/cursesf.o ../obj_s/cursesm.o ../obj_s/cursesw.o ../obj_s/cursespad.o ../obj_s/cursesp.o ../obj_s/cursslk.o ../obj_s/cursesapp.o ../obj_s/cursesmain.o | |
a - ../obj_s/cursesf.o | |
a - ../obj_s/cursesm.o | |
a - ../obj_s/cursesw.o | |
a - ../obj_s/cursespad.o | |
a - ../obj_s/cursesp.o | |
a - ../obj_s/cursslk.o | |
a - ../obj_s/cursesapp.o | |
a - ../obj_s/cursesmain.o | |
aarch64-rpi3-linux-gnu-ranlib ../lib/libncurses++.a | |
aarch64-rpi3-linux-gnu-g++ -o demo ../obj_s/demo.o -L../lib -lncurses++ -L../lib -lform -lmenu -lpanel -lncurses -lutil -Wl,-rpath,/home/develop/ncurses-6.1/build-arm/lib -DHAVE_CONFIG_H -I../c++ -I. -I../../c++ -I../include -I../../c++/../include -D_GNU_SOURCE -D_DEFAULT_SOURCE -DNDEBUG -g -O2 -fPIC | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/c++' | |
Removing intermediate container 46de85eafe3a | |
---> 53a1dc7fd5ec | |
Step 132/184 : RUN make install.libs DESTDIR=${RPI3_SYSROOT} | |
---> Running in a8f45aa78f3a | |
cd include && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/include' | |
installing curses.h in /home/develop/RPi3-sysroot/usr/include | |
installing unctrl.h in /home/develop/RPi3-sysroot/usr/include | |
installing ncurses_dll.h in /home/develop/RPi3-sysroot/usr/include | |
installing term.h in /home/develop/RPi3-sysroot/usr/include | |
installing termcap.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../include/tic.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../include/term_entry.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../include/nc_tparm.h in /home/develop/RPi3-sysroot/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/include' | |
cd ncurses && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/ncurses' | |
linking /home/develop/RPi3-sysroot/usr/lib/libncurses.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-sysroot/usr/lib/libncurses.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-sysroot/usr/lib/libncurses.so.6.1 ../obj_s/hardscroll.o ../obj_s/hashmap.o ../obj_s/lib_addch.o ../obj_s/lib_addstr.o ../obj_s/lib_beep.o ../obj_s/lib_bkgd.o ../obj_s/lib_box.o ../obj_s/lib_chgat.o ../obj_s/lib_clear.o ../obj_s/lib_clearok.o ../obj_s/lib_clrbot.o ../obj_s/lib_clreol.o ../obj_s/lib_color.o ../obj_s/lib_colorset.o ../obj_s/lib_delch.o ../obj_s/lib_delwin.o ../obj_s/lib_echo.o ../obj_s/lib_endwin.o ../obj_s/lib_erase.o ../obj_s/lib_flash.o ../obj_s/lib_gen.o ../obj_s/lib_getch.o ../obj_s/lib_getstr.o ../obj_s/lib_hline.o ../obj_s/lib_immedok.o ../obj_s/lib_inchstr.o ../obj_s/lib_initscr.o ../obj_s/lib_insch.o ../obj_s/lib_insdel.o ../obj_s/lib_insnstr.o ../obj_s/lib_instr.o ../obj_s/lib_isendwin.o ../obj_s/lib_leaveok.o ../obj_s/lib_mouse.o ../obj_s/lib_move.o ../obj_s/lib_mvcur.o ../obj_s/lib_mvwin.o ../obj_s/lib_newterm.o ../obj_s/lib_newwin.o ../obj_s/lib_nl.o ../obj_s/lib_overlay.o ../obj_s/lib_pad.o ../obj_s/lib_printw.o ../obj_s/lib_redrawln.o ../obj_s/lib_refresh.o ../obj_s/lib_restart.o ../obj_s/lib_scanw.o ../obj_s/lib_screen.o ../obj_s/lib_scroll.o ../obj_s/lib_scrollok.o ../obj_s/lib_scrreg.o ../obj_s/lib_set_term.o ../obj_s/lib_slk.o ../obj_s/lib_slkatr_set.o ../obj_s/lib_slkatrof.o ../obj_s/lib_slkatron.o ../obj_s/lib_slkatrset.o ../obj_s/lib_slkattr.o ../obj_s/lib_slkclear.o ../obj_s/lib_slkcolor.o ../obj_s/lib_slkinit.o ../obj_s/lib_slklab.o ../obj_s/lib_slkrefr.o ../obj_s/lib_slkset.o ../obj_s/lib_slktouch.o ../obj_s/lib_touch.o ../obj_s/lib_tstp.o ../obj_s/lib_ungetch.o ../obj_s/lib_vidattr.o ../obj_s/lib_vline.o ../obj_s/lib_wattroff.o ../obj_s/lib_wattron.o ../obj_s/lib_winch.o ../obj_s/lib_window.o ../obj_s/nc_panel.o ../obj_s/safe_sprintf.o ../obj_s/tty_update.o ../obj_s/varargs.o ../obj_s/vsscanf.o ../obj_s/lib_freeall.o ../obj_s/expanded.o ../obj_s/legacy_coding.o ../obj_s/lib_dft_fgbg.o ../obj_s/lib_print.o ../obj_s/new_pair.o ../obj_s/resizeterm.o ../obj_s/use_screen.o ../obj_s/use_window.o ../obj_s/wresize.o ../obj_s/access.o ../obj_s/add_tries.o ../obj_s/alloc_ttype.o ../obj_s/codes.o ../obj_s/comp_captab.o ../obj_s/comp_error.o ../obj_s/comp_hash.o ../obj_s/db_iterator.o ../obj_s/doalloc.o ../obj_s/entries.o ../obj_s/fallback.o ../obj_s/free_ttype.o ../obj_s/getenv_num.o ../obj_s/home_terminfo.o ../obj_s/init_keytry.o ../obj_s/lib_acs.o ../obj_s/lib_baudrate.o ../obj_s/lib_cur_term.o ../obj_s/lib_data.o ../obj_s/lib_has_cap.o ../obj_s/lib_kernel.o ../obj_s/lib_keyname.o ../obj_s/lib_longname.o ../obj_s/lib_napms.o ../obj_s/lib_options.o ../obj_s/lib_raw.o ../obj_s/lib_setup.o ../obj_s/lib_termcap.o ../obj_s/lib_termname.o ../obj_s/lib_tgoto.o ../obj_s/lib_ti.o ../obj_s/lib_tparm.o ../obj_s/lib_tputs.o ../obj_s/lib_trace.o ../obj_s/lib_ttyflags.o ../obj_s/lib_twait.o ../obj_s/name_match.o ../obj_s/names.o ../obj_s/obsolete.o ../obj_s/read_entry.o ../obj_s/read_termcap.o ../obj_s/strings.o ../obj_s/tries.o ../obj_s/trim_sgr0.o ../obj_s/unctrl.o ../obj_s/visbuf.o ../obj_s/alloc_entry.o ../obj_s/captoinfo.o ../obj_s/comp_expand.o ../obj_s/comp_parse.o ../obj_s/comp_scan.o ../obj_s/parse_entry.o ../obj_s/write_entry.o ../obj_s/define_key.o ../obj_s/hashed_db.o ../obj_s/key_defined.o ../obj_s/keybound.o ../obj_s/keyok.o ../obj_s/version.o -L../lib | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.042654 | |
cd /home/develop/RPi3-sysroot/usr/lib && (ln -s -f libncurses.so.6.1 libncurses.so.6; ln -s -f libncurses.so.6 libncurses.so; ) | |
linking libncurses.so.6.1 to libcurses.so | |
cd /home/develop/RPi3-sysroot/usr/lib && (ln -s -f libncurses.so.6.1 libcurses.so; ) | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/ncurses' | |
cd progs && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/progs' | |
make[1]: Nothing to be done for 'install.libs'. | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/progs' | |
cd panel && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/panel' | |
linking /home/develop/RPi3-sysroot/usr/lib/libpanel.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-sysroot/usr/lib/libpanel.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-sysroot/usr/lib/libpanel.so.6.1 ../obj_s/panel.o ../obj_s/p_above.o ../obj_s/p_below.o ../obj_s/p_bottom.o ../obj_s/p_delete.o ../obj_s/p_hide.o ../obj_s/p_hidden.o ../obj_s/p_move.o ../obj_s/p_new.o ../obj_s/p_replace.o ../obj_s/p_show.o ../obj_s/p_top.o ../obj_s/p_update.o ../obj_s/p_user.o ../obj_s/p_win.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.012700 | |
cd /home/develop/RPi3-sysroot/usr/lib && (ln -s -f libpanel.so.6.1 libpanel.so.6; ln -s -f libpanel.so.6 libpanel.so; ) | |
installing ../../panel/panel.h in /home/develop/RPi3-sysroot/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/panel' | |
cd menu && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/menu' | |
linking /home/develop/RPi3-sysroot/usr/lib/libmenu.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-sysroot/usr/lib/libmenu.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-sysroot/usr/lib/libmenu.so.6.1 ../obj_s/m_attribs.o ../obj_s/m_cursor.o ../obj_s/m_driver.o ../obj_s/m_format.o ../obj_s/m_global.o ../obj_s/m_hook.o ../obj_s/m_item_cur.o ../obj_s/m_item_nam.o ../obj_s/m_item_new.o ../obj_s/m_item_opt.o ../obj_s/m_item_top.o ../obj_s/m_item_use.o ../obj_s/m_item_val.o ../obj_s/m_item_vis.o ../obj_s/m_items.o ../obj_s/m_new.o ../obj_s/m_opts.o ../obj_s/m_pad.o ../obj_s/m_pattern.o ../obj_s/m_post.o ../obj_s/m_req_name.o ../obj_s/m_scale.o ../obj_s/m_spacing.o ../obj_s/m_sub.o ../obj_s/m_userptr.o ../obj_s/m_win.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.014488 | |
cd /home/develop/RPi3-sysroot/usr/lib && (ln -s -f libmenu.so.6.1 libmenu.so.6; ln -s -f libmenu.so.6 libmenu.so; ) | |
installing ../../menu/eti.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../menu/menu.h in /home/develop/RPi3-sysroot/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/menu' | |
cd form && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/form' | |
linking /home/develop/RPi3-sysroot/usr/lib/libform.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-sysroot/usr/lib/libform.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-sysroot/usr/lib/libform.so.6.1 ../obj_s/fld_arg.o ../obj_s/fld_attr.o ../obj_s/fld_current.o ../obj_s/fld_def.o ../obj_s/fld_dup.o ../obj_s/fld_ftchoice.o ../obj_s/fld_ftlink.o ../obj_s/fld_info.o ../obj_s/fld_just.o ../obj_s/fld_link.o ../obj_s/fld_max.o ../obj_s/fld_move.o ../obj_s/fld_newftyp.o ../obj_s/fld_opts.o ../obj_s/fld_pad.o ../obj_s/fld_page.o ../obj_s/fld_stat.o ../obj_s/fld_type.o ../obj_s/fld_user.o ../obj_s/frm_cursor.o ../obj_s/frm_data.o ../obj_s/frm_def.o ../obj_s/frm_driver.o ../obj_s/frm_hook.o ../obj_s/frm_opts.o ../obj_s/frm_page.o ../obj_s/frm_post.o ../obj_s/frm_req_name.o ../obj_s/frm_scale.o ../obj_s/frm_sub.o ../obj_s/frm_user.o ../obj_s/frm_win.o ../obj_s/fty_alnum.o ../obj_s/fty_alpha.o ../obj_s/fty_enum.o ../obj_s/fty_generic.o ../obj_s/fty_int.o ../obj_s/fty_ipv4.o ../obj_s/fty_num.o ../obj_s/fty_regex.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.017198 | |
cd /home/develop/RPi3-sysroot/usr/lib && (ln -s -f libform.so.6.1 libform.so.6; ln -s -f libform.so.6 libform.so; ) | |
installing ../../form/form.h in /home/develop/RPi3-sysroot/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/form' | |
cd test && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/test' | |
make[1]: Nothing to be done for 'install.libs'. | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/test' | |
cd c++ && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/c++' | |
installing ../lib/libncurses++.a as /home/develop/RPi3-sysroot/usr/lib/libncurses++.a | |
/usr/bin/install -c -m 644 ../lib/libncurses++.a /home/develop/RPi3-sysroot/usr/lib/libncurses++.a | |
aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-sysroot/usr/lib/libncurses++.a | |
installing ../../c++/cursesapp.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../c++/cursesf.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../c++/cursesm.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../c++/cursesp.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../c++/cursesw.h in /home/develop/RPi3-sysroot/usr/include | |
installing ../../c++/cursslk.h in /home/develop/RPi3-sysroot/usr/include | |
installing etip.h in /home/develop/RPi3-sysroot/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/c++' | |
cd misc && make DESTDIR="/home/develop/RPi3-sysroot" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/misc' | |
/usr/bin/install -c ncurses-config /home/develop/RPi3-sysroot/usr/bin/ncurses6-config | |
installing form.pc | |
installing menu.pc | |
installing ncurses++.pc | |
installing ncurses.pc | |
installing panel.pc | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/misc' | |
Removing intermediate container a8f45aa78f3a | |
---> beaa7817375a | |
Step 133/184 : RUN make install.libs DESTDIR=${RPI3_STAGING} | |
---> Running in 37656597762c | |
cd include && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/include' | |
installing curses.h in /home/develop/RPi3-staging/usr/include | |
installing unctrl.h in /home/develop/RPi3-staging/usr/include | |
installing ncurses_dll.h in /home/develop/RPi3-staging/usr/include | |
installing term.h in /home/develop/RPi3-staging/usr/include | |
installing termcap.h in /home/develop/RPi3-staging/usr/include | |
installing ../../include/tic.h in /home/develop/RPi3-staging/usr/include | |
installing ../../include/term_entry.h in /home/develop/RPi3-staging/usr/include | |
installing ../../include/nc_tparm.h in /home/develop/RPi3-staging/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/include' | |
cd ncurses && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/ncurses' | |
linking /home/develop/RPi3-staging/usr/lib/libncurses.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-staging/usr/lib/libncurses.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-staging/usr/lib/libncurses.so.6.1 ../obj_s/hardscroll.o ../obj_s/hashmap.o ../obj_s/lib_addch.o ../obj_s/lib_addstr.o ../obj_s/lib_beep.o ../obj_s/lib_bkgd.o ../obj_s/lib_box.o ../obj_s/lib_chgat.o ../obj_s/lib_clear.o ../obj_s/lib_clearok.o ../obj_s/lib_clrbot.o ../obj_s/lib_clreol.o ../obj_s/lib_color.o ../obj_s/lib_colorset.o ../obj_s/lib_delch.o ../obj_s/lib_delwin.o ../obj_s/lib_echo.o ../obj_s/lib_endwin.o ../obj_s/lib_erase.o ../obj_s/lib_flash.o ../obj_s/lib_gen.o ../obj_s/lib_getch.o ../obj_s/lib_getstr.o ../obj_s/lib_hline.o ../obj_s/lib_immedok.o ../obj_s/lib_inchstr.o ../obj_s/lib_initscr.o ../obj_s/lib_insch.o ../obj_s/lib_insdel.o ../obj_s/lib_insnstr.o ../obj_s/lib_instr.o ../obj_s/lib_isendwin.o ../obj_s/lib_leaveok.o ../obj_s/lib_mouse.o ../obj_s/lib_move.o ../obj_s/lib_mvcur.o ../obj_s/lib_mvwin.o ../obj_s/lib_newterm.o ../obj_s/lib_newwin.o ../obj_s/lib_nl.o ../obj_s/lib_overlay.o ../obj_s/lib_pad.o ../obj_s/lib_printw.o ../obj_s/lib_redrawln.o ../obj_s/lib_refresh.o ../obj_s/lib_restart.o ../obj_s/lib_scanw.o ../obj_s/lib_screen.o ../obj_s/lib_scroll.o ../obj_s/lib_scrollok.o ../obj_s/lib_scrreg.o ../obj_s/lib_set_term.o ../obj_s/lib_slk.o ../obj_s/lib_slkatr_set.o ../obj_s/lib_slkatrof.o ../obj_s/lib_slkatron.o ../obj_s/lib_slkatrset.o ../obj_s/lib_slkattr.o ../obj_s/lib_slkclear.o ../obj_s/lib_slkcolor.o ../obj_s/lib_slkinit.o ../obj_s/lib_slklab.o ../obj_s/lib_slkrefr.o ../obj_s/lib_slkset.o ../obj_s/lib_slktouch.o ../obj_s/lib_touch.o ../obj_s/lib_tstp.o ../obj_s/lib_ungetch.o ../obj_s/lib_vidattr.o ../obj_s/lib_vline.o ../obj_s/lib_wattroff.o ../obj_s/lib_wattron.o ../obj_s/lib_winch.o ../obj_s/lib_window.o ../obj_s/nc_panel.o ../obj_s/safe_sprintf.o ../obj_s/tty_update.o ../obj_s/varargs.o ../obj_s/vsscanf.o ../obj_s/lib_freeall.o ../obj_s/expanded.o ../obj_s/legacy_coding.o ../obj_s/lib_dft_fgbg.o ../obj_s/lib_print.o ../obj_s/new_pair.o ../obj_s/resizeterm.o ../obj_s/use_screen.o ../obj_s/use_window.o ../obj_s/wresize.o ../obj_s/access.o ../obj_s/add_tries.o ../obj_s/alloc_ttype.o ../obj_s/codes.o ../obj_s/comp_captab.o ../obj_s/comp_error.o ../obj_s/comp_hash.o ../obj_s/db_iterator.o ../obj_s/doalloc.o ../obj_s/entries.o ../obj_s/fallback.o ../obj_s/free_ttype.o ../obj_s/getenv_num.o ../obj_s/home_terminfo.o ../obj_s/init_keytry.o ../obj_s/lib_acs.o ../obj_s/lib_baudrate.o ../obj_s/lib_cur_term.o ../obj_s/lib_data.o ../obj_s/lib_has_cap.o ../obj_s/lib_kernel.o ../obj_s/lib_keyname.o ../obj_s/lib_longname.o ../obj_s/lib_napms.o ../obj_s/lib_options.o ../obj_s/lib_raw.o ../obj_s/lib_setup.o ../obj_s/lib_termcap.o ../obj_s/lib_termname.o ../obj_s/lib_tgoto.o ../obj_s/lib_ti.o ../obj_s/lib_tparm.o ../obj_s/lib_tputs.o ../obj_s/lib_trace.o ../obj_s/lib_ttyflags.o ../obj_s/lib_twait.o ../obj_s/name_match.o ../obj_s/names.o ../obj_s/obsolete.o ../obj_s/read_entry.o ../obj_s/read_termcap.o ../obj_s/strings.o ../obj_s/tries.o ../obj_s/trim_sgr0.o ../obj_s/unctrl.o ../obj_s/visbuf.o ../obj_s/alloc_entry.o ../obj_s/captoinfo.o ../obj_s/comp_expand.o ../obj_s/comp_parse.o ../obj_s/comp_scan.o ../obj_s/parse_entry.o ../obj_s/write_entry.o ../obj_s/define_key.o ../obj_s/hashed_db.o ../obj_s/key_defined.o ../obj_s/keybound.o ../obj_s/keyok.o ../obj_s/version.o -L../lib | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.026266 | |
cd /home/develop/RPi3-staging/usr/lib && (ln -s -f libncurses.so.6.1 libncurses.so.6; ln -s -f libncurses.so.6 libncurses.so; ) | |
linking libncurses.so.6.1 to libcurses.so | |
cd /home/develop/RPi3-staging/usr/lib && (ln -s -f libncurses.so.6.1 libcurses.so; ) | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/ncurses' | |
cd progs && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/progs' | |
make[1]: Nothing to be done for 'install.libs'. | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/progs' | |
cd panel && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/panel' | |
linking /home/develop/RPi3-staging/usr/lib/libpanel.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-staging/usr/lib/libpanel.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-staging/usr/lib/libpanel.so.6.1 ../obj_s/panel.o ../obj_s/p_above.o ../obj_s/p_below.o ../obj_s/p_bottom.o ../obj_s/p_delete.o ../obj_s/p_hide.o ../obj_s/p_hidden.o ../obj_s/p_move.o ../obj_s/p_new.o ../obj_s/p_replace.o ../obj_s/p_show.o ../obj_s/p_top.o ../obj_s/p_update.o ../obj_s/p_user.o ../obj_s/p_win.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.012617 | |
cd /home/develop/RPi3-staging/usr/lib && (ln -s -f libpanel.so.6.1 libpanel.so.6; ln -s -f libpanel.so.6 libpanel.so; ) | |
installing ../../panel/panel.h in /home/develop/RPi3-staging/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/panel' | |
cd menu && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/menu' | |
linking /home/develop/RPi3-staging/usr/lib/libmenu.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-staging/usr/lib/libmenu.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-staging/usr/lib/libmenu.so.6.1 ../obj_s/m_attribs.o ../obj_s/m_cursor.o ../obj_s/m_driver.o ../obj_s/m_format.o ../obj_s/m_global.o ../obj_s/m_hook.o ../obj_s/m_item_cur.o ../obj_s/m_item_nam.o ../obj_s/m_item_new.o ../obj_s/m_item_opt.o ../obj_s/m_item_top.o ../obj_s/m_item_use.o ../obj_s/m_item_val.o ../obj_s/m_item_vis.o ../obj_s/m_items.o ../obj_s/m_new.o ../obj_s/m_opts.o ../obj_s/m_pad.o ../obj_s/m_pattern.o ../obj_s/m_post.o ../obj_s/m_req_name.o ../obj_s/m_scale.o ../obj_s/m_spacing.o ../obj_s/m_sub.o ../obj_s/m_userptr.o ../obj_s/m_win.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.013815 | |
cd /home/develop/RPi3-staging/usr/lib && (ln -s -f libmenu.so.6.1 libmenu.so.6; ln -s -f libmenu.so.6 libmenu.so; ) | |
installing ../../menu/eti.h in /home/develop/RPi3-staging/usr/include | |
installing ../../menu/menu.h in /home/develop/RPi3-staging/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/menu' | |
cd form && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/form' | |
linking /home/develop/RPi3-staging/usr/lib/libform.so.6.1 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --param max-inline-insns-single=1200 -shared -Wl,-soname,`basename /home/develop/RPi3-staging/usr/lib/libform.so.6.1 .6.1`.6,-stats,-lc -o /home/develop/RPi3-staging/usr/lib/libform.so.6.1 ../obj_s/fld_arg.o ../obj_s/fld_attr.o ../obj_s/fld_current.o ../obj_s/fld_def.o ../obj_s/fld_dup.o ../obj_s/fld_ftchoice.o ../obj_s/fld_ftlink.o ../obj_s/fld_info.o ../obj_s/fld_just.o ../obj_s/fld_link.o ../obj_s/fld_max.o ../obj_s/fld_move.o ../obj_s/fld_newftyp.o ../obj_s/fld_opts.o ../obj_s/fld_pad.o ../obj_s/fld_page.o ../obj_s/fld_stat.o ../obj_s/fld_type.o ../obj_s/fld_user.o ../obj_s/frm_cursor.o ../obj_s/frm_data.o ../obj_s/frm_def.o ../obj_s/frm_driver.o ../obj_s/frm_hook.o ../obj_s/frm_opts.o ../obj_s/frm_page.o ../obj_s/frm_post.o ../obj_s/frm_req_name.o ../obj_s/frm_scale.o ../obj_s/frm_sub.o ../obj_s/frm_user.o ../obj_s/frm_win.o ../obj_s/fty_alnum.o ../obj_s/fty_alpha.o ../obj_s/fty_enum.o ../obj_s/fty_generic.o ../obj_s/fty_int.o ../obj_s/fty_ipv4.o ../obj_s/fty_num.o ../obj_s/fty_regex.o -L../lib -lncurses | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: total time in link: 0.015884 | |
cd /home/develop/RPi3-staging/usr/lib && (ln -s -f libform.so.6.1 libform.so.6; ln -s -f libform.so.6 libform.so; ) | |
installing ../../form/form.h in /home/develop/RPi3-staging/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/form' | |
cd test && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/test' | |
make[1]: Nothing to be done for 'install.libs'. | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/test' | |
cd c++ && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/c++' | |
installing ../lib/libncurses++.a as /home/develop/RPi3-staging/usr/lib/libncurses++.a | |
/usr/bin/install -c -m 644 ../lib/libncurses++.a /home/develop/RPi3-staging/usr/lib/libncurses++.a | |
aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-staging/usr/lib/libncurses++.a | |
installing ../../c++/cursesapp.h in /home/develop/RPi3-staging/usr/include | |
installing ../../c++/cursesf.h in /home/develop/RPi3-staging/usr/include | |
installing ../../c++/cursesm.h in /home/develop/RPi3-staging/usr/include | |
installing ../../c++/cursesp.h in /home/develop/RPi3-staging/usr/include | |
installing ../../c++/cursesw.h in /home/develop/RPi3-staging/usr/include | |
installing ../../c++/cursslk.h in /home/develop/RPi3-staging/usr/include | |
installing etip.h in /home/develop/RPi3-staging/usr/include | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/c++' | |
cd misc && make DESTDIR="/home/develop/RPi3-staging" RPATH_LIST="/usr/lib" install.libs | |
make[1]: Entering directory '/home/develop/ncurses-6.1/build-arm/misc' | |
/usr/bin/install -c ncurses-config /home/develop/RPi3-staging/usr/bin/ncurses6-config | |
installing form.pc | |
installing menu.pc | |
installing ncurses++.pc | |
installing ncurses.pc | |
installing panel.pc | |
make[1]: Leaving directory '/home/develop/ncurses-6.1/build-arm/misc' | |
Removing intermediate container 37656597762c | |
---> 8287f35f15e0 | |
Step 134/184 : WORKDIR /home/develop | |
---> Running in 6ced21580f13 | |
Removing intermediate container 6ced21580f13 | |
---> d1fcb235f746 | |
Step 135/184 : RUN wget https://ftp.gnu.org/gnu/readline/readline-8.0.tar.gz | |
---> Running in 7ec328e12d29 | |
--2019-09-09 13:51:48-- https://ftp.gnu.org/gnu/readline/readline-8.0.tar.gz | |
Resolving ftp.gnu.org (ftp.gnu.org)... 209.51.188.20, 2001:470:142:3::b | |
Connecting to ftp.gnu.org (ftp.gnu.org)|209.51.188.20|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 2975937 (2.8M) [application/x-gzip] | |
Saving to: 'readline-8.0.tar.gz' | |
0K .......... .......... .......... .......... .......... 1% 253K 11s | |
50K .......... .......... .......... .......... .......... 3% 518K 8s | |
100K .......... .......... .......... .......... .......... 5% 9.04M 6s | |
150K .......... .......... .......... .......... .......... 6% 13.9M 4s | |
200K .......... .......... .......... .......... .......... 8% 544K 4s | |
250K .......... .......... .......... .......... .......... 10% 13.3M 3s | |
300K .......... .......... .......... .......... .......... 12% 9.73M 3s | |
350K .......... .......... .......... .......... .......... 13% 570K 3s | |
400K .......... .......... .......... .......... .......... 15% 7.26M 3s | |
450K .......... .......... .......... .......... .......... 17% 7.90M 2s | |
500K .......... .......... .......... .......... .......... 18% 21.7M 2s | |
550K .......... .......... .......... .......... .......... 20% 570K 2s | |
600K .......... .......... .......... .......... .......... 22% 4.41M 2s | |
650K .......... .......... .......... .......... .......... 24% 11.5M 2s | |
700K .......... .......... .......... .......... .......... 25% 11.6M 2s | |
750K .......... .......... .......... .......... .......... 27% 659K 2s | |
800K .......... .......... .......... .......... .......... 29% 3.57M 2s | |
850K .......... .......... .......... .......... .......... 30% 7.74M 2s | |
900K .......... .......... .......... .......... .......... 32% 650K 2s | |
950K .......... .......... .......... .......... .......... 34% 13.0M 2s | |
1000K .......... .......... .......... .......... .......... 36% 4.35M 1s | |
1050K .......... .......... .......... .......... .......... 37% 9.17M 1s | |
1100K .......... .......... .......... .......... .......... 39% 10.1M 1s | |
1150K .......... .......... .......... .......... .......... 41% 663K 1s | |
1200K .......... .......... .......... .......... .......... 43% 3.67M 1s | |
1250K .......... .......... .......... .......... .......... 44% 6.64M 1s | |
1300K .......... .......... .......... .......... .......... 46% 20.3M 1s | |
1350K .......... .......... .......... .......... .......... 48% 658K 1s | |
1400K .......... .......... .......... .......... .......... 49% 5.94M 1s | |
1450K .......... .......... .......... .......... .......... 51% 5.48M 1s | |
1500K .......... .......... .......... .......... .......... 53% 8.51M 1s | |
1550K .......... .......... .......... .......... .......... 55% 695K 1s | |
1600K .......... .......... .......... .......... .......... 56% 8.84M 1s | |
1650K .......... .......... .......... .......... .......... 58% 4.30M 1s | |
1700K .......... .......... .......... .......... .......... 60% 7.57M 1s | |
1750K .......... .......... .......... .......... .......... 61% 9.84M 1s | |
1800K .......... .......... .......... .......... .......... 63% 667K 1s | |
1850K .......... .......... .......... .......... .......... 65% 8.09M 1s | |
1900K .......... .......... .......... .......... .......... 67% 7.55M 1s | |
1950K .......... .......... .......... .......... .......... 68% 11.7M 1s | |
2000K .......... .......... .......... .......... .......... 70% 3.76M 1s | |
2050K .......... .......... .......... .......... .......... 72% 666K 0s | |
2100K .......... .......... .......... .......... .......... 73% 5.47M 0s | |
2150K .......... .......... .......... .......... .......... 75% 32.5M 0s | |
2200K .......... .......... .......... .......... .......... 77% 13.3M 0s | |
2250K .......... .......... .......... .......... .......... 79% 5.32M 0s | |
2300K .......... .......... .......... .......... .......... 80% 749K 0s | |
2350K .......... .......... .......... .......... .......... 82% 3.17M 0s | |
2400K .......... .......... .......... .......... .......... 84% 2.57M 0s | |
2450K .......... .......... .......... .......... .......... 86% 326M 0s | |
2500K .......... .......... .......... .......... .......... 87% 4.79M 0s | |
2550K .......... .......... .......... .......... .......... 89% 1.17M 0s | |
2600K .......... .......... .......... .......... .......... 91% 1.88M 0s | |
2650K .......... .......... .......... .......... .......... 92% 4.71M 0s | |
2700K .......... .......... .......... .......... .......... 94% 2.60M 0s | |
2750K .......... .......... .......... .......... .......... 96% 22.3M 0s | |
2800K .......... .......... .......... .......... .......... 98% 9.00M 0s | |
2850K .......... .......... .......... .......... .......... 99% 968K 0s | |
2900K ...... 100% 156M=1.6s | |
2019-09-09 13:51:50 (1.80 MB/s) - 'readline-8.0.tar.gz' saved [2975937/2975937] | |
Removing intermediate container 7ec328e12d29 | |
---> 587bac6f62a8 | |
Step 136/184 : RUN tar xzf readline-8.0.tar.gz && rm readline-8.0.tar.gz | |
---> Running in 97c3c0309dc8 | |
Removing intermediate container 97c3c0309dc8 | |
---> d71ce3ba3061 | |
Step 137/184 : RUN mkdir readline-8.0/build-arm | |
---> Running in a0effe884cd4 | |
Removing intermediate container a0effe884cd4 | |
---> adaa648b30f5 | |
Step 138/184 : WORKDIR /home/develop/readline-8.0/build-arm | |
---> Running in 3136e038b2ca | |
Removing intermediate container 3136e038b2ca | |
---> 8b6bcfcba8f7 | |
Step 139/184 : RUN ../configure --enable-shared --prefix="/usr" --host="aarch64-rpi3-linux-gnu" CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
---> Running in e1def5ba30d2 | |
checking build system type... x86_64-pc-linux-gnu | |
checking host system type... aarch64-rpi3-linux-gnu | |
Beginning configuration for readline-8.0 for aarch64-rpi3-linux-gnu | |
checking whether make sets $(MAKE)... yes | |
checking for aarch64-rpi3-linux-gnu-gcc... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... yes | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot accepts -g... yes | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to accept ISO C89... none needed | |
checking how to run the C preprocessor... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -E | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot needs -traditional... no | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for aarch64-rpi3-linux-gnu-ar... aarch64-rpi3-linux-gnu-ar | |
checking for aarch64-rpi3-linux-gnu-ranlib... aarch64-rpi3-linux-gnu-ranlib | |
checking for an ANSI C-conforming const... yes | |
checking for function prototypes... yes | |
checking whether char is unsigned... yes | |
checking for working volatile... yes | |
checking return type of signal handlers... void | |
checking for size_t... yes | |
checking for ssize_t... yes | |
checking for ANSI C header files... (cached) yes | |
checking whether stat file-mode macros are broken... no | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking for fcntl... yes | |
checking for kill... yes | |
checking for lstat... yes | |
checking for readlink... yes | |
checking for fnmatch... yes | |
checking for memmove... yes | |
checking for pselect... yes | |
checking for putenv... yes | |
checking for select... yes | |
checking for setenv... yes | |
checking for setlocale... yes | |
checking for strcasecmp... yes | |
checking for strpbrk... yes | |
checking for tcgetattr... yes | |
checking for vsnprintf... yes | |
checking for isascii... yes | |
checking for isxdigit... yes | |
checking for getpwent... yes | |
checking for getpwnam... yes | |
checking for getpwuid... yes | |
checking for uid_t in sys/types.h... yes | |
checking for unistd.h... (cached) yes | |
checking for working chown... no | |
checking for working strcoll... no | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking for unistd.h... (cached) yes | |
checking for stdlib.h... (cached) yes | |
checking varargs.h usability... no | |
checking varargs.h presence... no | |
checking for varargs.h... no | |
checking stdarg.h usability... yes | |
checking stdarg.h presence... yes | |
checking for stdarg.h... yes | |
checking stdbool.h usability... yes | |
checking stdbool.h presence... yes | |
checking for stdbool.h... yes | |
checking for string.h... (cached) yes | |
checking for strings.h... (cached) yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking pwd.h usability... yes | |
checking pwd.h presence... yes | |
checking for pwd.h... yes | |
checking for memory.h... (cached) yes | |
checking termcap.h usability... yes | |
checking termcap.h presence... yes | |
checking for termcap.h... yes | |
checking termios.h usability... yes | |
checking termios.h presence... yes | |
checking for termios.h... yes | |
checking termio.h usability... yes | |
checking termio.h presence... yes | |
checking for termio.h... yes | |
checking sys/ioctl.h usability... yes | |
checking sys/ioctl.h presence... yes | |
checking for sys/ioctl.h... yes | |
checking sys/pte.h usability... no | |
checking sys/pte.h presence... no | |
checking for sys/pte.h... no | |
checking sys/stream.h usability... no | |
checking sys/stream.h presence... no | |
checking for sys/stream.h... no | |
checking sys/select.h usability... yes | |
checking sys/select.h presence... yes | |
checking for sys/select.h... yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking for sys/ptem.h... no | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking for type of signal functions... posix | |
checking if signal handlers must be reinstalled when invoked... configure: WARNING: cannot check signal handling if cross compiling -- defaulting to no | |
no | |
checking for presence of POSIX-style sigsetjmp/siglongjmp... configure: WARNING: cannot check for sigsetjmp/siglongjmp if cross-compiling -- defaulting to missing | |
missing | |
checking for lstat... yes | |
checking whether or not strcoll and strcmp differ... no | |
configure: WARNING: cannot check strcoll if cross compiling -- defaulting to no | |
checking whether the ctype macros accept non-ascii characters... no | |
configure: WARNING: cannot check ctype macros if cross compiling -- defaulting to no | |
checking whether getpw functions are declared in pwd.h... yes | |
checking whether termios.h defines TIOCGWINSZ... no | |
checking whether sys/ioctl.h defines TIOCGWINSZ... yes | |
checking for sig_atomic_t in signal.h... yes | |
checking whether signal handlers are of type void... yes | |
checking for TIOCSTAT in sys/ioctl.h... no | |
checking for FIONREAD in sys/ioctl.h... yes | |
checking for speed_t in sys/types.h... no | |
checking for struct winsize in sys/ioctl.h and termios.h... sys/ioctl.h | |
checking for struct dirent.d_ino... yes | |
checking for struct dirent.d_fileno... yes | |
checking libaudit.h usability... no | |
checking libaudit.h presence... no | |
checking for libaudit.h... no | |
checking whether AUDIT_USER_TTY is declared... yes | |
checking for tgetent... no | |
checking for tgetent in -ltermcap... no | |
checking for tgetent in -ltinfo... no | |
checking for tgetent in -lcurses... yes | |
checking which library has the termcap functions... using libcurses | |
checking wctype.h usability... yes | |
checking wctype.h presence... yes | |
checking for wctype.h... yes | |
checking wchar.h usability... yes | |
checking wchar.h presence... yes | |
checking for wchar.h... yes | |
checking langinfo.h usability... yes | |
checking langinfo.h presence... yes | |
checking for langinfo.h... yes | |
checking mbstr.h usability... no | |
checking mbstr.h presence... no | |
checking for mbstr.h... no | |
checking for mbrlen... yes | |
checking for mbscasecmp... no | |
checking for mbscmp... no | |
checking for mbsnrtowcs... yes | |
checking for mbsrtowcs... yes | |
checking for mbschr... no | |
checking for wcrtomb... yes | |
checking for wcscoll... yes | |
checking for wcsdup... yes | |
checking for wcwidth... yes | |
checking for wctype... yes | |
checking for wcswidth... yes | |
checking whether mbrtowc and mbstate_t are properly declared... yes | |
checking for iswlower... yes | |
checking for iswupper... yes | |
checking for towlower... yes | |
checking for towupper... yes | |
checking for iswctype... yes | |
checking for nl_langinfo and CODESET... yes | |
checking for wchar_t in wchar.h... yes | |
checking for wctype_t in wctype.h... yes | |
checking for wint_t in wctype.h... yes | |
checking for wcwidth broken with unicode combining characters... no | |
checking size of wchar_t... 4 | |
checking configuration for building shared libraries... supported | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating doc/Makefile | |
config.status: creating examples/Makefile | |
config.status: creating shlib/Makefile | |
config.status: creating readline.pc | |
config.status: creating config.h | |
config.status: executing default commands | |
Removing intermediate container e1def5ba30d2 | |
---> 3015a3bc9666 | |
Step 140/184 : RUN make -j$(($(nproc) * 2)) # SHLIB_LIBS="-lncurses" | |
---> Running in d66f1405ff7c | |
rm -f readline.o | |
rm -f vi_mode.o | |
rm -f funmap.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../readline.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../vi_mode.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../funmap.c | |
rm -f keymaps.o | |
rm -f parens.o | |
rm -f search.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../parens.c | |
rm -f rltty.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../keymaps.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../search.c | |
rm -f complete.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../rltty.c | |
rm -f bind.o | |
rm -f isearch.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../bind.c | |
rm -f display.o | |
rm -f signals.o | |
rm -f util.o | |
rm -f kill.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../signals.c | |
rm -f undo.o | |
rm -f macro.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../complete.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../undo.c | |
rm -f input.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../display.c | |
rm -f callback.o | |
rm -f terminal.o | |
rm -f text.o | |
rm -f nls.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../callback.c | |
rm -f misc.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../terminal.c | |
rm -f history.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../text.c | |
rm -f histexpand.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../isearch.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../util.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../nls.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../misc.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../macro.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../history.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../histexpand.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../kill.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../input.c | |
rm -f histfile.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../histfile.c | |
rm -f histsearch.o | |
rm -f shell.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../histsearch.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../shell.c | |
rm -f mbutil.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../mbutil.c | |
rm -f tilde.o | |
rm -f colors.o | |
rm -f parse-colors.o | |
rm -f xmalloc.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../colors.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -DREADLINE_LIBRARY -c ../tilde.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../parse-colors.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../xmalloc.c | |
rm -f xfree.o | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../xfree.c | |
rm -f compat.o | |
test -d shlib || mkdir shlib | |
( cd shlib ; make -j --jobserver-fds=3,4 all ) | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -DRL_LIBRARY_VERSION='"8.0"' -g -O ../compat.c | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/shlib' | |
rm -f readline.so | |
rm -f vi_mode.so | |
rm -f funmap.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o readline.o ../../readline.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o vi_mode.o ../../vi_mode.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o funmap.o ../../funmap.c | |
rm -f keymaps.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o keymaps.o ../../keymaps.c | |
rm -f parens.so | |
rm -f search.so | |
rm -f rltty.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o parens.o ../../parens.c | |
rm -f complete.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o search.o ../../search.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o complete.o ../../complete.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o rltty.o ../../rltty.c | |
rm -f bind.so | |
rm -f isearch.so | |
rm -f display.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o bind.o ../../bind.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o isearch.o ../../isearch.c | |
rm -f signals.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o display.o ../../display.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o signals.o ../../signals.c | |
rm -f util.so | |
rm -f kill.so | |
mv funmap.o funmap.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o util.o ../../util.c | |
rm -f undo.so | |
rm -f macro.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o kill.o ../../kill.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o undo.o ../../undo.c | |
rm -f input.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o macro.o ../../macro.c | |
rm -f callback.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o callback.o ../../callback.c | |
rm -f terminal.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o input.o ../../input.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o terminal.o ../../terminal.c | |
mv parens.o parens.so | |
mv keymaps.o keymaps.so | |
mv search.o search.so | |
rm -f text.so | |
rm -f nls.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o text.o ../../text.c | |
rm -f misc.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o misc.o ../../misc.c | |
rm -f history.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o nls.o ../../nls.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o history.o ../../history.c | |
rm -f histexpand.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o histexpand.o ../../histexpand.c | |
mv rltty.o rltty.so | |
rm -f libhistory.a | |
aarch64-rpi3-linux-gnu-ar cr libhistory.a history.o histexpand.o histfile.o histsearch.o shell.o mbutil.o xmalloc.o xfree.o | |
test -n "aarch64-rpi3-linux-gnu-ranlib" && aarch64-rpi3-linux-gnu-ranlib libhistory.a | |
mv macro.o macro.so | |
rm -f histfile.so | |
mv callback.o callback.so | |
mv readline.o readline.so | |
rm -f histsearch.so | |
rm -f shell.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o histsearch.o ../../histsearch.c | |
mv undo.o undo.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o histfile.o ../../histfile.c | |
mv signals.o signals.so | |
rm -f mbutil.so | |
rm -f tilde.so | |
rm -f colors.so | |
rm -f parse-colors.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o mbutil.o ../../mbutil.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o shell.o ../../shell.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o parse-colors.o ../../parse-colors.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -DREADLINE_LIBRARY -c -o tilde.o ../../tilde.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o colors.o ../../colors.c | |
mv nls.o nls.so | |
mv util.o util.so | |
rm -f xmalloc.so | |
rm -f xfree.so | |
mv kill.o kill.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o xmalloc.o ../../xmalloc.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o xfree.o ../../xfree.c | |
mv input.o input.so | |
rm -f compat.so | |
mv terminal.o terminal.so | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -c -DHAVE_CONFIG_H -I. -I.. -I../.. -DRL_LIBRARY_VERSION='"8.0"' -g -O -fPIC -o compat.o ../../compat.c | |
mv isearch.o isearch.so | |
mv history.o history.so | |
mv shell.o shell.so | |
mv misc.o misc.so | |
mv histsearch.o histsearch.so | |
mv tilde.o tilde.so | |
mv compat.o compat.so | |
mv xmalloc.o xmalloc.so | |
mv xfree.o xfree.so | |
mv colors.o colors.so | |
mv parse-colors.o parse-colors.so | |
mv histfile.o histfile.so | |
mv mbutil.o mbutil.so | |
rm -f libreadline.a | |
aarch64-rpi3-linux-gnu-ar cr libreadline.a readline.o vi_mode.o funmap.o keymaps.o parens.o search.o rltty.o complete.o bind.o isearch.o display.o signals.o util.o kill.o undo.o macro.o input.o callback.o terminal.o text.o nls.o misc.o history.o histexpand.o histfile.o histsearch.o shell.o mbutil.o tilde.o colors.o parse-colors.o xmalloc.o xfree.o compat.o | |
test -n "aarch64-rpi3-linux-gnu-ranlib" && aarch64-rpi3-linux-gnu-ranlib libreadline.a | |
mv vi_mode.o vi_mode.so | |
mv text.o text.so | |
mv complete.o complete.so | |
mv display.o display.so | |
mv histexpand.o histexpand.so | |
rm -f libhistory.so.8.0 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -shared -Wl,-soname,libhistory.so.8.0 -Wl,-rpath,/usr/lib -Wl,-soname,`basename libhistory.so.8.0 .0` -o libhistory.so.8.0 history.so histexpand.so histfile.so histsearch.so shell.so mbutil.so xmalloc.so xfree.so | |
mv bind.o bind.so | |
rm -f libreadline.so.8.0 | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -shared -Wl,-soname,libreadline.so.8.0 -Wl,-rpath,/usr/lib -Wl,-soname,`basename libreadline.so.8.0 .0` -o libreadline.so.8.0 readline.so vi_mode.so funmap.so keymaps.so parens.so search.so rltty.so complete.so bind.so isearch.so display.so signals.so util.so kill.so undo.so macro.so input.so callback.so terminal.so text.so nls.so misc.so history.so histexpand.so histfile.so histsearch.so shell.so mbutil.so tilde.so colors.so parse-colors.so xmalloc.so xfree.so compat.so | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/shlib' | |
Removing intermediate container d66f1405ff7c | |
---> a640fac0f3e5 | |
Step 141/184 : RUN make install DESTDIR=${RPI3_SYSROOT} # SHLIB_LIBS="-lncurses" | |
---> Running in 345d0ee9744f | |
/bin/sh ../support/mkinstalldirs /home/develop/RPi3-sysroot/usr/include \ | |
/home/develop/RPi3-sysroot/usr/include/readline /home/develop/RPi3-sysroot/usr/lib \ | |
/home/develop/RPi3-sysroot/usr/share/info /home/develop/RPi3-sysroot/usr/share/man/man3 /home/develop/RPi3-sysroot/usr/share/doc/readline \ | |
/home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
mkdir -p -- /home/develop/RPi3-sysroot/usr/include/readline /home/develop/RPi3-sysroot/usr/lib /home/develop/RPi3-sysroot/usr/share/info /home/develop/RPi3-sysroot/usr/share/man/man3 /home/develop/RPi3-sysroot/usr/share/doc/readline /home/develop/RPi3-sysroot/usr/lib/pkgconfig | |
for f in readline.h chardefs.h keymaps.h history.h tilde.h rlstdc.h rlconf.h rltypedefs.h; do \ | |
/usr/bin/install -c -m 644 ../$f /home/develop/RPi3-sysroot/usr/include/readline ; \ | |
done | |
/usr/bin/install -c -m 644 ../CHANGES ../INSTALL ../README /home/develop/RPi3-sysroot/usr/share/doc/readline | |
( if test -d doc ; then \ | |
cd doc && \ | |
make infodir=/usr/share/info DESTDIR=/home/develop/RPi3-sysroot install; \ | |
fi ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/doc' | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-sysroot/usr/share/info /home/develop/RPi3-sysroot/usr/share/man/man3 | |
if test -n "" ; then \ | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-sysroot ; \ | |
fi | |
if test -f readline.info; then \ | |
/usr/bin/install -c -m 644 readline.info /home/develop/RPi3-sysroot/usr/share/info/readline.info; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/readline.info /home/develop/RPi3-sysroot/usr/share/info/readline.info; \ | |
fi | |
if test -f rluserman.info; then \ | |
/usr/bin/install -c -m 644 rluserman.info /home/develop/RPi3-sysroot/usr/share/info/rluserman.info; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/rluserman.info /home/develop/RPi3-sysroot/usr/share/info/rluserman.info; \ | |
fi | |
if test -f history.info; then \ | |
/usr/bin/install -c -m 644 history.info /home/develop/RPi3-sysroot/usr/share/info/history.info; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/history.info /home/develop/RPi3-sysroot/usr/share/info/history.info; \ | |
fi | |
if /bin/sh -c 'install-info --version' >/dev/null 2>&1; then \ | |
install-info --dir-file=/home/develop/RPi3-sysroot/usr/share/info/dir \ | |
/home/develop/RPi3-sysroot/usr/share/info/readline.info ; \ | |
install-info --dir-file=/home/develop/RPi3-sysroot/usr/share/info/dir \ | |
/home/develop/RPi3-sysroot/usr/share/info/history.info ; \ | |
install-info --dir-file=/home/develop/RPi3-sysroot/usr/share/info/dir \ | |
/home/develop/RPi3-sysroot/usr/share/info/rluserman.info ; \ | |
else true; fi | |
/usr/bin/install -c -m 644 ../../doc/readline.3 /home/develop/RPi3-sysroot/usr/share/man/man3/readline.3 | |
/usr/bin/install -c -m 644 ../../doc/history.3 /home/develop/RPi3-sysroot/usr/share/man/man3/history.3 | |
if test -n "" ; then \ | |
if test -f readline.html; then \ | |
/usr/bin/install -c -m 644 readline.html /home/develop/RPi3-sysroot/readline.html; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/readline.html /home/develop/RPi3-sysroot/readline.html; \ | |
fi ; \ | |
if test -f history.html; then \ | |
/usr/bin/install -c -m 644 history.html /home/develop/RPi3-sysroot/history.html; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/history.html /home/develop/RPi3-sysroot/history.html; \ | |
fi ; \ | |
if test -f rluserman.html; then \ | |
/usr/bin/install -c -m 644 rluserman.html /home/develop/RPi3-sysroot/rluserman.html; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/rluserman.html /home/develop/RPi3-sysroot/rluserman.html; \ | |
fi ; \ | |
fi | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/doc' | |
( cd examples ; make DESTDIR=/home/develop/RPi3-sysroot install ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/examples' | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-sysroot/usr/share/readline | |
mkdir /home/develop/RPi3-sysroot/usr/share/readline | |
/usr/bin/install: cannot stat '../../examples/rltest2.c': No such file or directory | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/examples' | |
/usr/bin/install -c -m 644 /home/develop/readline-8.0/build-arm/readline.pc /home/develop/RPi3-sysroot/usr/lib/pkgconfig/readline.pc | |
mv /home/develop/RPi3-sysroot/usr/lib/libreadline.a /home/develop/RPi3-sysroot/usr/lib/libreadline.old | |
mv: cannot stat '/home/develop/RPi3-sysroot/usr/lib/libreadline.a': No such file or directory | |
make: [install-static] Error 1 (ignored) | |
Makefile:254: recipe for target 'install-static' failed | |
/usr/bin/install -c -m 644 libreadline.a /home/develop/RPi3-sysroot/usr/lib/libreadline.a | |
test -n "aarch64-rpi3-linux-gnu-ranlib" && aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-sysroot/usr/lib/libreadline.a | |
mv /home/develop/RPi3-sysroot/usr/lib/libhistory.a /home/develop/RPi3-sysroot/usr/lib/libhistory.old | |
mv: cannot stat '/home/develop/RPi3-sysroot/usr/lib/libhistory.a': No such file or directory | |
make: [install-static] Error 1 (ignored) | |
Makefile:254: recipe for target 'install-static' failed | |
/usr/bin/install -c -m 644 libhistory.a /home/develop/RPi3-sysroot/usr/lib/libhistory.a | |
test -n "aarch64-rpi3-linux-gnu-ranlib" && aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-sysroot/usr/lib/libhistory.a | |
test -d shlib || mkdir shlib | |
( cd shlib ; make all ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/shlib' | |
make[1]: Nothing to be done for 'all'. | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/shlib' | |
( cd shlib ; make DESTDIR=/home/develop/RPi3-sysroot install ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/shlib' | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-sysroot/usr/lib | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-sysroot/usr/bin | |
/bin/sh ../../support/shlib-install -O linux-gnu -V rpi3 -d /home/develop/RPi3-sysroot/usr/lib -b /home/develop/RPi3-sysroot/usr/bin -i "/usr/bin/install -c -m 644" libhistory.so.8.0 | |
/bin/sh ../../support/shlib-install -O linux-gnu -V rpi3 -d /home/develop/RPi3-sysroot/usr/lib -b /home/develop/RPi3-sysroot/usr/bin -i "/usr/bin/install -c -m 644" libreadline.so.8.0 | |
install: you may need to run ldconfig | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/shlib' | |
Removing intermediate container 345d0ee9744f | |
---> 566110079ce0 | |
Step 142/184 : RUN make install DESTDIR=${RPI3_STAGING} # SHLIB_LIBS="-lncurses" | |
---> Running in caa9599d7631 | |
/bin/sh ../support/mkinstalldirs /home/develop/RPi3-staging/usr/include \ | |
/home/develop/RPi3-staging/usr/include/readline /home/develop/RPi3-staging/usr/lib \ | |
/home/develop/RPi3-staging/usr/share/info /home/develop/RPi3-staging/usr/share/man/man3 /home/develop/RPi3-staging/usr/share/doc/readline \ | |
/home/develop/RPi3-staging/usr/lib/pkgconfig | |
mkdir -p -- /home/develop/RPi3-staging/usr/include/readline /home/develop/RPi3-staging/usr/lib /home/develop/RPi3-staging/usr/share/info /home/develop/RPi3-staging/usr/share/man/man3 /home/develop/RPi3-staging/usr/share/doc/readline /home/develop/RPi3-staging/usr/lib/pkgconfig | |
for f in readline.h chardefs.h keymaps.h history.h tilde.h rlstdc.h rlconf.h rltypedefs.h; do \ | |
/usr/bin/install -c -m 644 ../$f /home/develop/RPi3-staging/usr/include/readline ; \ | |
done | |
/usr/bin/install -c -m 644 ../CHANGES ../INSTALL ../README /home/develop/RPi3-staging/usr/share/doc/readline | |
( if test -d doc ; then \ | |
cd doc && \ | |
make infodir=/usr/share/info DESTDIR=/home/develop/RPi3-staging install; \ | |
fi ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/doc' | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-staging/usr/share/info /home/develop/RPi3-staging/usr/share/man/man3 | |
if test -n "" ; then \ | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-staging ; \ | |
fi | |
if test -f readline.info; then \ | |
/usr/bin/install -c -m 644 readline.info /home/develop/RPi3-staging/usr/share/info/readline.info; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/readline.info /home/develop/RPi3-staging/usr/share/info/readline.info; \ | |
fi | |
if test -f rluserman.info; then \ | |
/usr/bin/install -c -m 644 rluserman.info /home/develop/RPi3-staging/usr/share/info/rluserman.info; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/rluserman.info /home/develop/RPi3-staging/usr/share/info/rluserman.info; \ | |
fi | |
if test -f history.info; then \ | |
/usr/bin/install -c -m 644 history.info /home/develop/RPi3-staging/usr/share/info/history.info; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/history.info /home/develop/RPi3-staging/usr/share/info/history.info; \ | |
fi | |
if /bin/sh -c 'install-info --version' >/dev/null 2>&1; then \ | |
install-info --dir-file=/home/develop/RPi3-staging/usr/share/info/dir \ | |
/home/develop/RPi3-staging/usr/share/info/readline.info ; \ | |
install-info --dir-file=/home/develop/RPi3-staging/usr/share/info/dir \ | |
/home/develop/RPi3-staging/usr/share/info/history.info ; \ | |
install-info --dir-file=/home/develop/RPi3-staging/usr/share/info/dir \ | |
/home/develop/RPi3-staging/usr/share/info/rluserman.info ; \ | |
else true; fi | |
/usr/bin/install -c -m 644 ../../doc/readline.3 /home/develop/RPi3-staging/usr/share/man/man3/readline.3 | |
/usr/bin/install -c -m 644 ../../doc/history.3 /home/develop/RPi3-staging/usr/share/man/man3/history.3 | |
if test -n "" ; then \ | |
if test -f readline.html; then \ | |
/usr/bin/install -c -m 644 readline.html /home/develop/RPi3-staging/readline.html; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/readline.html /home/develop/RPi3-staging/readline.html; \ | |
fi ; \ | |
if test -f history.html; then \ | |
/usr/bin/install -c -m 644 history.html /home/develop/RPi3-staging/history.html; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/history.html /home/develop/RPi3-staging/history.html; \ | |
fi ; \ | |
if test -f rluserman.html; then \ | |
/usr/bin/install -c -m 644 rluserman.html /home/develop/RPi3-staging/rluserman.html; \ | |
else \ | |
/usr/bin/install -c -m 644 ../../doc/rluserman.html /home/develop/RPi3-staging/rluserman.html; \ | |
fi ; \ | |
fi | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/doc' | |
( cd examples ; make DESTDIR=/home/develop/RPi3-staging install ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/examples' | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-staging/usr/share/readline | |
mkdir /home/develop/RPi3-staging/usr/share/readline | |
/usr/bin/install: cannot stat '../../examples/rltest2.c': No such file or directory | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/examples' | |
/usr/bin/install -c -m 644 /home/develop/readline-8.0/build-arm/readline.pc /home/develop/RPi3-staging/usr/lib/pkgconfig/readline.pc | |
mv /home/develop/RPi3-staging/usr/lib/libreadline.a /home/develop/RPi3-staging/usr/lib/libreadline.old | |
mv: cannot stat '/home/develop/RPi3-staging/usr/lib/libreadline.a': No such file or directory | |
make: [install-static] Error 1 (ignored) | |
Makefile:254: recipe for target 'install-static' failed | |
/usr/bin/install -c -m 644 libreadline.a /home/develop/RPi3-staging/usr/lib/libreadline.a | |
test -n "aarch64-rpi3-linux-gnu-ranlib" && aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-staging/usr/lib/libreadline.a | |
mv /home/develop/RPi3-staging/usr/lib/libhistory.a /home/develop/RPi3-staging/usr/lib/libhistory.old | |
mv: cannot stat '/home/develop/RPi3-staging/usr/lib/libhistory.a': No such file or directory | |
make: [install-static] Error 1 (ignored) | |
Makefile:254: recipe for target 'install-static' failed | |
/usr/bin/install -c -m 644 libhistory.a /home/develop/RPi3-staging/usr/lib/libhistory.a | |
test -n "aarch64-rpi3-linux-gnu-ranlib" && aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-staging/usr/lib/libhistory.a | |
test -d shlib || mkdir shlib | |
( cd shlib ; make all ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/shlib' | |
make[1]: Nothing to be done for 'all'. | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/shlib' | |
( cd shlib ; make DESTDIR=/home/develop/RPi3-staging install ) | |
make[1]: Entering directory '/home/develop/readline-8.0/build-arm/shlib' | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-staging/usr/lib | |
/bin/sh ../../support/mkdirs /home/develop/RPi3-staging/usr/bin | |
/bin/sh ../../support/shlib-install -O linux-gnu -V rpi3 -d /home/develop/RPi3-staging/usr/lib -b /home/develop/RPi3-staging/usr/bin -i "/usr/bin/install -c -m 644" libhistory.so.8.0 | |
/bin/sh ../../support/shlib-install -O linux-gnu -V rpi3 -d /home/develop/RPi3-staging/usr/lib -b /home/develop/RPi3-staging/usr/bin -i "/usr/bin/install -c -m 644" libreadline.so.8.0 | |
install: you may need to run ldconfig | |
make[1]: Leaving directory '/home/develop/readline-8.0/build-arm/shlib' | |
Removing intermediate container caa9599d7631 | |
---> 161898faab23 | |
Step 143/184 : WORKDIR /home/develop | |
---> Running in b5a31610f9ef | |
Removing intermediate container b5a31610f9ef | |
---> a3b8d76293f4 | |
Step 144/184 : RUN wget ftp://ftp.gnu.org/gnu/gdbm/gdbm-1.18.1.tar.gz | |
---> Running in 7ae219d7d9de | |
--2019-09-09 13:52:04-- ftp://ftp.gnu.org/gnu/gdbm/gdbm-1.18.1.tar.gz | |
=> 'gdbm-1.18.1.tar.gz' | |
Resolving ftp.gnu.org (ftp.gnu.org)... 209.51.188.20, 2001:470:142:3::b | |
Connecting to ftp.gnu.org (ftp.gnu.org)|209.51.188.20|:21... connected. | |
Logging in as anonymous ... Logged in! | |
==> SYST ... done. ==> PWD ... done. | |
==> TYPE I ... done. ==> CWD (1) /gnu/gdbm ... done. | |
==> SIZE gdbm-1.18.1.tar.gz ... 941863 | |
==> PASV ... done. ==> RETR gdbm-1.18.1.tar.gz ... done. | |
Length: 941863 (920K) (unauthoritative) | |
0K .......... .......... .......... .......... .......... 5% 255K 3s | |
50K .......... .......... .......... .......... .......... 10% 516K 2s | |
100K .......... .......... .......... .......... .......... 16% 9.24M 2s | |
150K .......... .......... .......... .......... .......... 21% 531K 1s | |
200K .......... .......... .......... .......... .......... 27% 8.54M 1s | |
250K .......... .......... .......... .......... .......... 32% 6.82M 1s | |
300K .......... .......... .......... .......... .......... 38% 607K 1s | |
350K .......... .......... .......... .......... .......... 43% 8.64M 1s | |
400K .......... .......... .......... .......... .......... 48% 8.95M 1s | |
450K .......... .......... .......... .......... .......... 54% 8.09M 0s | |
500K .......... .......... .......... .......... .......... 59% 617K 0s | |
550K .......... .......... .......... .......... .......... 65% 8.37M 0s | |
600K .......... .......... .......... .......... .......... 70% 11.2M 0s | |
650K .......... .......... .......... .......... .......... 76% 5.85M 0s | |
700K .......... .......... .......... .......... .......... 81% 631K 0s | |
750K .......... .......... .......... .......... .......... 86% 7.60M 0s | |
800K .......... .......... .......... .......... .......... 92% 14.8M 0s | |
850K .......... .......... .......... .......... .......... 97% 9.33M 0s | |
900K .......... ......... 100% 7.30M=0.7s | |
2019-09-09 13:52:06 (1.28 MB/s) - 'gdbm-1.18.1.tar.gz' saved [941863] | |
Removing intermediate container 7ae219d7d9de | |
---> 28c2b256eaa1 | |
Step 145/184 : RUN tar xzf gdbm-1.18.1.tar.gz && rm gdbm-1.18.1.tar.gz | |
---> Running in dd6ecaf3e0de | |
Removing intermediate container dd6ecaf3e0de | |
---> da798076c5f9 | |
Step 146/184 : RUN mkdir gdbm-1.18.1/build-arm | |
---> Running in 0c0e8b42f21e | |
Removing intermediate container 0c0e8b42f21e | |
---> b7aff424d3de | |
Step 147/184 : WORKDIR /home/develop/gdbm-1.18.1/build-arm | |
---> Running in 904a30bcbfae | |
Removing intermediate container 904a30bcbfae | |
---> 02ded33a7d45 | |
Step 148/184 : RUN ../configure --prefix="/usr" --host="aarch64-rpi3-linux-gnu" CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
---> Running in ffd12475ff42 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for aarch64-rpi3-linux-gnu-strip... aarch64-rpi3-linux-gnu-strip | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether make supports nested variables... (cached) yes | |
checking for aarch64-rpi3-linux-gnu-gcc... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... yes | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot accepts -g... yes | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to accept ISO C89... none needed | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot understands -c and -o together... yes | |
checking for style of include used by make... GNU | |
checking dependency style of aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... gcc3 | |
checking how to run the C preprocessor... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -E | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... aarch64-rpi3-linux-gnu | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /bin/sed | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for fgrep... /bin/grep -F | |
checking for ld used by aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld | |
checking if the linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) is GNU ld... yes | |
checking for BSD- or MS-compatible name lister (nm)... /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B | |
checking the name lister (/home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B) interface... BSD nm | |
checking whether ln -s works... yes | |
checking the maximum length of command line arguments... 1572864 | |
checking whether the shell understands some XSI constructs... yes | |
checking whether the shell understands "+="... yes | |
checking how to convert x86_64-unknown-linux-gnu file names to aarch64-rpi3-linux-gnu format... func_convert_file_noop | |
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop | |
checking for /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld option to reload object files... -r | |
checking for aarch64-rpi3-linux-gnu-objdump... aarch64-rpi3-linux-gnu-objdump | |
checking how to recognize dependent libraries... pass_all | |
checking for aarch64-rpi3-linux-gnu-dlltool... no | |
checking for dlltool... no | |
checking how to associate runtime and link libraries... printf %s\n | |
checking for aarch64-rpi3-linux-gnu-ar... aarch64-rpi3-linux-gnu-ar | |
checking for archiver @FILE support... @ | |
checking for aarch64-rpi3-linux-gnu-strip... (cached) aarch64-rpi3-linux-gnu-strip | |
checking for aarch64-rpi3-linux-gnu-ranlib... aarch64-rpi3-linux-gnu-ranlib | |
checking command to parse /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B output from aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot object... ok | |
checking for sysroot... no | |
checking for aarch64-rpi3-linux-gnu-mt... no | |
checking for mt... no | |
checking if : is a manifest tool... no | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking for dlfcn.h... yes | |
checking for objdir... .libs | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -fno-rtti -fno-exceptions... no | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to produce PIC... -fPIC -DPIC | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot PIC flag -fPIC -DPIC works... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot static flag -static works... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -c -o file.o... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -c -o file.o... (cached) yes | |
checking whether the aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... yes | |
checking for bison... bison -y | |
checking for flex... flex | |
checking lex output file root... lex.yy | |
checking lex library... none needed | |
checking whether yytext is a pointer... no | |
checking for gzip... /bin/gzip | |
checking for base64... /usr/bin/base64 | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking for an ANSI C-conforming const... yes | |
checking for unsigned long long int... yes | |
checking for TLS qualifier... __thread | |
checking whether NLS is requested... yes | |
checking for msgfmt... /usr/bin/msgfmt | |
checking for gmsgfmt... /usr/bin/msgfmt | |
checking for xgettext... /usr/bin/xgettext | |
checking for msgmerge... /usr/bin/msgmerge | |
checking for ld used by GCC... /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld | |
checking if the linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) is GNU ld... yes | |
checking for shared library run path origin... done | |
checking for CFPreferencesCopyAppValue... no | |
checking for CFLocaleCopyCurrent... no | |
checking for GNU gettext in libc... yes | |
checking whether to use NLS... yes | |
checking where the gettext function comes from... libc | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking sys/termios.h usability... yes | |
checking sys/termios.h presence... yes | |
checking for sys/termios.h... yes | |
checking for string.h... (cached) yes | |
checking locale.h usability... yes | |
checking locale.h presence... yes | |
checking for locale.h... yes | |
checking getopt.h usability... yes | |
checking getopt.h presence... yes | |
checking for getopt.h... yes | |
checking for main in -ldbm... no | |
checking for main in -lndbm... no | |
checking for ftruncate... yes | |
checking for flock... yes | |
checking for lockf... yes | |
checking for fsync... yes | |
checking for setlocale... yes | |
checking for getopt_long... yes | |
checking for stdlib.h... (cached) yes | |
checking for unistd.h... (cached) yes | |
checking for sys/param.h... yes | |
checking for getpagesize... yes | |
checking for working mmap... no | |
checking for msync... yes | |
checking for off_t... yes | |
checking size of off_t... 8 | |
checking for struct stat.st_blksize... yes | |
checking for tputs in -lncurses... yes | |
checking for readline in -lreadline... yes | |
checking readline/readline.h usability... yes | |
checking readline/readline.h presence... yes | |
checking for readline/readline.h... yes | |
checking for rl_completion_matches... yes | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating tests/Makefile | |
config.status: creating tests/atlocal | |
config.status: creating po/Makefile.in | |
config.status: creating Makefile | |
config.status: creating src/Makefile | |
config.status: creating src/gdbm.h | |
config.status: creating doc/Makefile | |
config.status: creating compat/Makefile | |
config.status: creating autoconf.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
config.status: executing po-directories commands | |
config.status: creating po/POTFILES | |
config.status: creating po/Makefile | |
config.status: executing tests/atconfig commands | |
config.status: executing status commands | |
******************************************************************* | |
GDBM settings summary: | |
Compatibility library ......................... no | |
Memory mapped I/O ............................. yes | |
GNU Readline .................................. yes | |
Debugging support ............................. no | |
******************************************************************* | |
Removing intermediate container ffd12475ff42 | |
---> dde57d298b83 | |
Step 149/184 : RUN make -j$(($(nproc) * 2)) | |
---> Running in 620e141c3e38 | |
make all-recursive | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm' | |
Making all in po | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/po' | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/po' | |
Making all in src | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make all-am | |
make[3]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
CC err.o | |
CC mem.o | |
CC parseopt.o | |
CC progname.o | |
CC gdbmclose.lo | |
CC gdbmcount.lo | |
CC gdbmdelete.lo | |
CC gdbmdump.lo | |
CC gdbmerrno.lo | |
CC gdbmexists.lo | |
CC gdbmexp.lo | |
CC gdbmfetch.lo | |
CC gdbmseq.lo | |
CC gdbmimp.lo | |
CC gdbmload.lo | |
CC gdbmstore.lo | |
CC gdbmfdesc.lo | |
CC gdbmreorg.lo | |
CC falloc.lo | |
CC bucket.lo | |
CC gdbmopen.lo | |
CC gdbmsetopt.lo | |
CC gdbmsync.lo | |
CC base64.lo | |
CC findkey.lo | |
CC fullio.lo | |
CC hash.lo | |
CC lock.lo | |
CC mmap.lo | |
CC recover.lo | |
CC version.lo | |
CC datconv.o | |
CC update.lo | |
CC gram.o | |
CC input-argv.o | |
CC input-file.o | |
CC lex.o | |
CC gdbmtool.o | |
CC util.o | |
CC var.o | |
CC input-rl.o | |
CC gdbm_load.o | |
CC gdbm_dump.o | |
AR libgdbmapp.a | |
CCLD libgdbm.la | |
CCLD gdbm_load | |
CCLD gdbm_dump | |
CCLD gdbmtool | |
make[3]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
Making all in doc | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[2]: Nothing to be done for 'all'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
Making all in tests | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[2]: Nothing to be done for 'all'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[2]: Nothing to be done for 'all-am'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm' | |
Removing intermediate container 620e141c3e38 | |
---> 2f2ddf4a5d2f | |
Step 150/184 : RUN make install DESTDIR=${RPI3_SYSROOT} | |
---> Running in 3b726de3f26d | |
Making install in po | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/po' | |
installing ../../po/da.gmo as /home/develop/RPi3-sysroot/usr/share/locale/da/LC_MESSAGES/gdbm.mo | |
installing ../../po/de.gmo as /home/develop/RPi3-sysroot/usr/share/locale/de/LC_MESSAGES/gdbm.mo | |
installing ../../po/eo.gmo as /home/develop/RPi3-sysroot/usr/share/locale/eo/LC_MESSAGES/gdbm.mo | |
installing ../../po/es.gmo as /home/develop/RPi3-sysroot/usr/share/locale/es/LC_MESSAGES/gdbm.mo | |
installing ../../po/fi.gmo as /home/develop/RPi3-sysroot/usr/share/locale/fi/LC_MESSAGES/gdbm.mo | |
installing ../../po/fr.gmo as /home/develop/RPi3-sysroot/usr/share/locale/fr/LC_MESSAGES/gdbm.mo | |
installing ../../po/ja.gmo as /home/develop/RPi3-sysroot/usr/share/locale/ja/LC_MESSAGES/gdbm.mo | |
installing ../../po/pl.gmo as /home/develop/RPi3-sysroot/usr/share/locale/pl/LC_MESSAGES/gdbm.mo | |
installing ../../po/pt_BR.gmo as /home/develop/RPi3-sysroot/usr/share/locale/pt_BR/LC_MESSAGES/gdbm.mo | |
installing ../../po/sr.gmo as /home/develop/RPi3-sysroot/usr/share/locale/sr/LC_MESSAGES/gdbm.mo | |
installing ../../po/sv.gmo as /home/develop/RPi3-sysroot/usr/share/locale/sv/LC_MESSAGES/gdbm.mo | |
installing ../../po/uk.gmo as /home/develop/RPi3-sysroot/usr/share/locale/uk/LC_MESSAGES/gdbm.mo | |
installing ../../po/vi.gmo as /home/develop/RPi3-sysroot/usr/share/locale/vi/LC_MESSAGES/gdbm.mo | |
if test "gdbm" = "gettext-tools"; then \ | |
/bin/mkdir -p /home/develop/RPi3-sysroot/usr/share/gettext/po; \ | |
for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed [email protected] [email protected] insert-header.sin Rules-quot Makevars.template; do \ | |
/usr/bin/install -c -m 644 ../../po/$file \ | |
/home/develop/RPi3-sysroot/usr/share/gettext/po/$file; \ | |
done; \ | |
for file in Makevars; do \ | |
rm -f /home/develop/RPi3-sysroot/usr/share/gettext/po/$file; \ | |
done; \ | |
else \ | |
: ; \ | |
fi | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/po' | |
Making install in src | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make install-am | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[3]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/lib' | |
/bin/bash ../libtool --mode=install /usr/bin/install -c libgdbm.la '/home/develop/RPi3-sysroot/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/libgdbm.so.6.0.0 /home/develop/RPi3-sysroot/usr/lib/libgdbm.so.6.0.0 | |
libtool: install: (cd /home/develop/RPi3-sysroot/usr/lib && { ln -s -f libgdbm.so.6.0.0 libgdbm.so.6 || { rm -f libgdbm.so.6 && ln -s libgdbm.so.6.0.0 libgdbm.so.6; }; }) | |
libtool: install: (cd /home/develop/RPi3-sysroot/usr/lib && { ln -s -f libgdbm.so.6.0.0 libgdbm.so || { rm -f libgdbm.so && ln -s libgdbm.so.6.0.0 libgdbm.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libgdbm.lai /home/develop/RPi3-sysroot/usr/lib/libgdbm.la | |
libtool: install: /usr/bin/install -c .libs/libgdbm.a /home/develop/RPi3-sysroot/usr/lib/libgdbm.a | |
libtool: install: chmod 644 /home/develop/RPi3-sysroot/usr/lib/libgdbm.a | |
libtool: install: aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-sysroot/usr/lib/libgdbm.a | |
libtool: install: warning: remember to run `libtool --finish /usr/lib' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/bin' | |
/bin/bash ../libtool --mode=install /usr/bin/install -c gdbmtool gdbm_load gdbm_dump '/home/develop/RPi3-sysroot/usr/bin' | |
libtool: install: warning: `./libgdbm.la' has not been installed in `/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/gdbmtool /home/develop/RPi3-sysroot/usr/bin/gdbmtool | |
libtool: install: warning: `./libgdbm.la' has not been installed in `/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/gdbm_load /home/develop/RPi3-sysroot/usr/bin/gdbm_load | |
libtool: install: warning: `./libgdbm.la' has not been installed in `/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/gdbm_dump /home/develop/RPi3-sysroot/usr/bin/gdbm_dump | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/include' | |
/usr/bin/install -c -m 644 gdbm.h '/home/develop/RPi3-sysroot/usr/include' | |
make[3]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
Making install in doc | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[2]: Nothing to be done for 'install-exec-am'. | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/share/info' | |
/usr/bin/install -c -m 644 ../../doc/gdbm.info '/home/develop/RPi3-sysroot/usr/share/info' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/share/man/man1' | |
/usr/bin/install -c -m 644 ../../doc/gdbm_dump.1 ../../doc/gdbm_load.1 ../../doc/gdbmtool.1 '/home/develop/RPi3-sysroot/usr/share/man/man1' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/share/man/man3' | |
/usr/bin/install -c -m 644 ../../doc/gdbm.3 '/home/develop/RPi3-sysroot/usr/share/man/man3' | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
Making install in tests | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[2]: Nothing to be done for 'install-exec-am'. | |
make[2]: Nothing to be done for 'install-data-am'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[2]: Nothing to be done for 'install-exec-am'. | |
make[2]: Nothing to be done for 'install-data-am'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm' | |
Removing intermediate container 3b726de3f26d | |
---> 3096013b266f | |
Step 151/184 : RUN make install DESTDIR=${RPI3_STAGING} | |
---> Running in 770de940e2ac | |
Making install in po | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/po' | |
installing ../../po/da.gmo as /home/develop/RPi3-staging/usr/share/locale/da/LC_MESSAGES/gdbm.mo | |
installing ../../po/de.gmo as /home/develop/RPi3-staging/usr/share/locale/de/LC_MESSAGES/gdbm.mo | |
installing ../../po/eo.gmo as /home/develop/RPi3-staging/usr/share/locale/eo/LC_MESSAGES/gdbm.mo | |
installing ../../po/es.gmo as /home/develop/RPi3-staging/usr/share/locale/es/LC_MESSAGES/gdbm.mo | |
installing ../../po/fi.gmo as /home/develop/RPi3-staging/usr/share/locale/fi/LC_MESSAGES/gdbm.mo | |
installing ../../po/fr.gmo as /home/develop/RPi3-staging/usr/share/locale/fr/LC_MESSAGES/gdbm.mo | |
installing ../../po/ja.gmo as /home/develop/RPi3-staging/usr/share/locale/ja/LC_MESSAGES/gdbm.mo | |
installing ../../po/pl.gmo as /home/develop/RPi3-staging/usr/share/locale/pl/LC_MESSAGES/gdbm.mo | |
installing ../../po/pt_BR.gmo as /home/develop/RPi3-staging/usr/share/locale/pt_BR/LC_MESSAGES/gdbm.mo | |
installing ../../po/sr.gmo as /home/develop/RPi3-staging/usr/share/locale/sr/LC_MESSAGES/gdbm.mo | |
installing ../../po/sv.gmo as /home/develop/RPi3-staging/usr/share/locale/sv/LC_MESSAGES/gdbm.mo | |
installing ../../po/uk.gmo as /home/develop/RPi3-staging/usr/share/locale/uk/LC_MESSAGES/gdbm.mo | |
installing ../../po/vi.gmo as /home/develop/RPi3-staging/usr/share/locale/vi/LC_MESSAGES/gdbm.mo | |
if test "gdbm" = "gettext-tools"; then \ | |
/bin/mkdir -p /home/develop/RPi3-staging/usr/share/gettext/po; \ | |
for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed [email protected] [email protected] insert-header.sin Rules-quot Makevars.template; do \ | |
/usr/bin/install -c -m 644 ../../po/$file \ | |
/home/develop/RPi3-staging/usr/share/gettext/po/$file; \ | |
done; \ | |
for file in Makevars; do \ | |
rm -f /home/develop/RPi3-staging/usr/share/gettext/po/$file; \ | |
done; \ | |
else \ | |
: ; \ | |
fi | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/po' | |
Making install in src | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make install-am | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[3]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/lib' | |
/bin/bash ../libtool --mode=install /usr/bin/install -c libgdbm.la '/home/develop/RPi3-staging/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/libgdbm.so.6.0.0 /home/develop/RPi3-staging/usr/lib/libgdbm.so.6.0.0 | |
libtool: install: (cd /home/develop/RPi3-staging/usr/lib && { ln -s -f libgdbm.so.6.0.0 libgdbm.so.6 || { rm -f libgdbm.so.6 && ln -s libgdbm.so.6.0.0 libgdbm.so.6; }; }) | |
libtool: install: (cd /home/develop/RPi3-staging/usr/lib && { ln -s -f libgdbm.so.6.0.0 libgdbm.so || { rm -f libgdbm.so && ln -s libgdbm.so.6.0.0 libgdbm.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libgdbm.lai /home/develop/RPi3-staging/usr/lib/libgdbm.la | |
libtool: install: /usr/bin/install -c .libs/libgdbm.a /home/develop/RPi3-staging/usr/lib/libgdbm.a | |
libtool: install: chmod 644 /home/develop/RPi3-staging/usr/lib/libgdbm.a | |
libtool: install: aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-staging/usr/lib/libgdbm.a | |
libtool: install: warning: remember to run `libtool --finish /usr/lib' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/bin' | |
/bin/bash ../libtool --mode=install /usr/bin/install -c gdbmtool gdbm_load gdbm_dump '/home/develop/RPi3-staging/usr/bin' | |
libtool: install: warning: `./libgdbm.la' has not been installed in `/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/gdbmtool /home/develop/RPi3-staging/usr/bin/gdbmtool | |
libtool: install: warning: `./libgdbm.la' has not been installed in `/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/gdbm_load /home/develop/RPi3-staging/usr/bin/gdbm_load | |
libtool: install: warning: `./libgdbm.la' has not been installed in `/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/gdbm_dump /home/develop/RPi3-staging/usr/bin/gdbm_dump | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/include' | |
/usr/bin/install -c -m 644 gdbm.h '/home/develop/RPi3-staging/usr/include' | |
make[3]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/src' | |
Making install in doc | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[2]: Nothing to be done for 'install-exec-am'. | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/share/info' | |
/usr/bin/install -c -m 644 ../../doc/gdbm.info '/home/develop/RPi3-staging/usr/share/info' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/share/man/man1' | |
/usr/bin/install -c -m 644 ../../doc/gdbm_dump.1 ../../doc/gdbm_load.1 ../../doc/gdbmtool.1 '/home/develop/RPi3-staging/usr/share/man/man1' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/share/man/man3' | |
/usr/bin/install -c -m 644 ../../doc/gdbm.3 '/home/develop/RPi3-staging/usr/share/man/man3' | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/doc' | |
Making install in tests | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[2]: Nothing to be done for 'install-exec-am'. | |
make[2]: Nothing to be done for 'install-data-am'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm/tests' | |
make[1]: Entering directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[2]: Entering directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[2]: Nothing to be done for 'install-exec-am'. | |
make[2]: Nothing to be done for 'install-data-am'. | |
make[2]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm' | |
make[1]: Leaving directory '/home/develop/gdbm-1.18.1/build-arm' | |
Removing intermediate container 770de940e2ac | |
---> f9b6b65677af | |
Step 152/184 : WORKDIR /home/develop | |
---> Running in c471c71bce61 | |
Removing intermediate container c471c71bce61 | |
---> e56e41643efb | |
Step 153/184 : RUN wget https://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gz | |
---> Running in f37a7053a1a1 | |
--2019-09-09 13:52:21-- https://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gz | |
Resolving www.sqlite.org (www.sqlite.org)... 45.33.6.223, 2600:3c00::f03c:91ff:fe96:b959 | |
Connecting to www.sqlite.org (www.sqlite.org)|45.33.6.223|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 2833613 (2.7M) [application/x-gzip] | |
Saving to: 'sqlite-autoconf-3290000.tar.gz' | |
0K .......... .......... .......... .......... .......... 1% 81.2K 33s | |
50K .......... .......... .......... .......... .......... 3% 399K 20s | |
100K .......... .......... .......... .......... .......... 5% 13.7M 13s | |
150K .......... .......... .......... .......... .......... 7% 283K 12s | |
200K .......... .......... .......... .......... .......... 9% 7.12M 9s | |
250K .......... .......... .......... .......... .......... 10% 7.20M 8s | |
300K .......... .......... .......... .......... .......... 12% 30.1M 6s | |
350K .......... .......... .......... .......... .......... 14% 16.5M 6s | |
400K .......... .......... .......... .......... .......... 16% 468K 5s | |
450K .......... .......... .......... .......... .......... 18% 4.76M 5s | |
500K .......... .......... .......... .......... .......... 19% 8.66M 4s | |
550K .......... .......... .......... .......... .......... 21% 9.11M 4s | |
600K .......... .......... .......... .......... .......... 23% 13.4M 3s | |
650K .......... .......... .......... .......... .......... 25% 9.16M 3s | |
700K .......... .......... .......... .......... .......... 27% 5.37M 3s | |
750K .......... .......... .......... .......... .......... 28% 596K 3s | |
800K .......... .......... .......... .......... .......... 30% 3.86M 3s | |
850K .......... .......... .......... .......... .......... 32% 8.67M 2s | |
900K .......... .......... .......... .......... .......... 34% 7.25M 2s | |
950K .......... .......... .......... .......... .......... 36% 15.1M 2s | |
1000K .......... .......... .......... .......... .......... 37% 8.87M 2s | |
1050K .......... .......... .......... .......... .......... 39% 16.1M 2s | |
1100K .......... .......... .......... .......... .......... 41% 8.22M 2s | |
1150K .......... .......... .......... .......... .......... 43% 615K 2s | |
1200K .......... .......... .......... .......... .......... 45% 4.03M 2s | |
1250K .......... .......... .......... .......... .......... 46% 5.02M 1s | |
1300K .......... .......... .......... .......... .......... 48% 9.81M 1s | |
1350K .......... .......... .......... .......... .......... 50% 12.1M 1s | |
1400K .......... .......... .......... .......... .......... 52% 7.13M 1s | |
1450K .......... .......... .......... .......... .......... 54% 9.92M 1s | |
1500K .......... .......... .......... .......... .......... 56% 9.31M 1s | |
1550K .......... .......... .......... .......... .......... 57% 7.26M 1s | |
1600K .......... .......... .......... .......... .......... 59% 660K 1s | |
1650K .......... .......... .......... .......... .......... 61% 2.86M 1s | |
1700K .......... .......... .......... .......... .......... 63% 5.36M 1s | |
1750K .......... .......... .......... .......... .......... 65% 5.15M 1s | |
1800K .......... .......... .......... .......... .......... 66% 14.5M 1s | |
1850K .......... .......... .......... .......... .......... 68% 11.4M 1s | |
1900K .......... .......... .......... .......... .......... 70% 10.1M 1s | |
1950K .......... .......... .......... .......... .......... 72% 8.00M 1s | |
2000K .......... .......... .......... .......... .......... 74% 767K 1s | |
2050K .......... .......... .......... .......... .......... 75% 4.10M 0s | |
2100K .......... .......... .......... .......... .......... 77% 5.32M 0s | |
2150K .......... .......... .......... .......... .......... 79% 4.65M 0s | |
2200K .......... .......... .......... .......... .......... 81% 4.65M 0s | |
2250K .......... .......... .......... .......... .......... 83% 7.89M 0s | |
2300K .......... .......... .......... .......... .......... 84% 14.1M 0s | |
2350K .......... .......... .......... .......... .......... 86% 8.64M 0s | |
2400K .......... .......... .......... .......... .......... 88% 8.71M 0s | |
2450K .......... .......... .......... .......... .......... 90% 846K 0s | |
2500K .......... .......... .......... .......... .......... 92% 8.95M 0s | |
2550K .......... .......... .......... .......... .......... 93% 3.02M 0s | |
2600K .......... .......... .......... .......... .......... 95% 3.80M 0s | |
2650K .......... .......... .......... .......... .......... 97% 5.84M 0s | |
2700K .......... .......... .......... .......... .......... 99% 9.52M 0s | |
2750K .......... ....... 100% 11.1M=1.7s | |
2019-09-09 13:52:25 (1.58 MB/s) - 'sqlite-autoconf-3290000.tar.gz' saved [2833613/2833613] | |
Removing intermediate container f37a7053a1a1 | |
---> 7572c96e62b7 | |
Step 154/184 : RUN tar xzf sqlite-autoconf-3290000.tar.gz && rm sqlite-autoconf-3290000.tar.gz | |
---> Running in faabfc0ef71a | |
Removing intermediate container faabfc0ef71a | |
---> 6315fac1a295 | |
Step 155/184 : RUN mkdir sqlite-autoconf-3290000/build-arm | |
---> Running in bcebe4a22ece | |
Removing intermediate container bcebe4a22ece | |
---> 8b3ae9038330 | |
Step 156/184 : WORKDIR /home/develop/sqlite-autoconf-3290000/build-arm | |
---> Running in f3c9d444b5c5 | |
Removing intermediate container f3c9d444b5c5 | |
---> 9cafcb4ab512 | |
Step 157/184 : RUN ../configure --prefix="/usr" --host="aarch64-rpi3-linux-gnu" CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
---> Running in 4de39a38777f | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for aarch64-rpi3-linux-gnu-strip... aarch64-rpi3-linux-gnu-strip | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking for style of include used by make... GNU | |
checking for aarch64-rpi3-linux-gnu-gcc... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... yes | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot accepts -g... yes | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to accept ISO C89... none needed | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot understands -c and -o together... yes | |
checking dependency style of aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... gcc3 | |
checking for special C compiler options needed for large files... no | |
checking for _FILE_OFFSET_BITS value needed for large files... no | |
checking for aarch64-rpi3-linux-gnu-gcc... (cached) aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot accepts -g... (cached) yes | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to accept ISO C89... (cached) none needed | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot understands -c and -o together... (cached) yes | |
checking dependency style of aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... (cached) gcc3 | |
checking build system type... x86_64-pc-linux-gnu | |
checking host system type... aarch64-rpi3-linux-gnu | |
checking how to print strings... printf | |
checking for a sed that does not truncate output... /bin/sed | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for fgrep... /bin/grep -F | |
checking for ld used by aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld | |
checking if the linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) is GNU ld... yes | |
checking for BSD- or MS-compatible name lister (nm)... /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B | |
checking the name lister (/home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B) interface... BSD nm | |
checking whether ln -s works... yes | |
checking the maximum length of command line arguments... 1572864 | |
checking how to convert x86_64-pc-linux-gnu file names to aarch64-rpi3-linux-gnu format... func_convert_file_noop | |
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop | |
checking for /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld option to reload object files... -r | |
checking for aarch64-rpi3-linux-gnu-objdump... aarch64-rpi3-linux-gnu-objdump | |
checking how to recognize dependent libraries... pass_all | |
checking for aarch64-rpi3-linux-gnu-dlltool... no | |
checking for dlltool... no | |
checking how to associate runtime and link libraries... printf %s\n | |
checking for aarch64-rpi3-linux-gnu-ar... aarch64-rpi3-linux-gnu-ar | |
checking for archiver @FILE support... @ | |
checking for aarch64-rpi3-linux-gnu-strip... (cached) aarch64-rpi3-linux-gnu-strip | |
checking for aarch64-rpi3-linux-gnu-ranlib... aarch64-rpi3-linux-gnu-ranlib | |
checking command to parse /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B output from aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot object... ok | |
checking for sysroot... no | |
checking for a working dd... /bin/dd | |
checking how to truncate binary pipes... /bin/dd bs=4096 count=1 | |
checking for aarch64-rpi3-linux-gnu-mt... no | |
checking for mt... no | |
checking if : is a manifest tool... no | |
checking how to run the C preprocessor... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking for dlfcn.h... yes | |
checking for objdir... .libs | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -fno-rtti -fno-exceptions... no | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to produce PIC... -fPIC -DPIC | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot PIC flag -fPIC -DPIC works... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot static flag -static works... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -c -o file.o... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -c -o file.o... (cached) yes | |
checking whether the aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... yes | |
checking for fdatasync... yes | |
checking for usleep... yes | |
checking for fullfsync... no | |
checking for localtime_r... yes | |
checking for gmtime_r... yes | |
checking whether strerror_r is declared... yes | |
checking for strerror_r... yes | |
checking whether strerror_r returns char *... no | |
checking editline/readline.h usability... no | |
checking editline/readline.h presence... no | |
checking for editline/readline.h... no | |
checking readline/readline.h usability... yes | |
checking readline/readline.h presence... yes | |
checking for readline/readline.h... yes | |
checking for library containing tgetent... -lcurses | |
checking for library containing readline... -lreadline | |
checking for library containing pthread_create... -lpthread | |
checking for library containing pthread_mutexattr_init... none required | |
checking for library containing dlopen... -ldl | |
checking for whether to support dynamic extensions... yes | |
checking for library containing log... -lm | |
checking for posix_fallocate... yes | |
checking zlib.h usability... yes | |
checking zlib.h presence... yes | |
checking for zlib.h... yes | |
checking for library containing deflate... -lz | |
checking for library containing system... none required | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating sqlite3.pc | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
Removing intermediate container 4de39a38777f | |
---> 77c8a68b2da7 | |
Step 158/184 : RUN make -j$(($(nproc) * 2)) | |
---> Running in 3a50938fb356 | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DPACKAGE_NAME=\"sqlite\" -DPACKAGE_TARNAME=\"sqlite\" -DPACKAGE_VERSION=\"3.29.0\" -DPACKAGE_STRING=\"sqlite\ 3.29.0\" -DPACKAGE_BUGREPORT=\"http://www.sqlite.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sqlite\" -DVERSION=\"3.29.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_FDATASYNC=1 -DHAVE_USLEEP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_GMTIME_R=1 -DHAVE_DECL_STRERROR_R=1 -DHAVE_STRERROR_R=1 -DHAVE_READLINE_READLINE_H=1 -DHAVE_READLINE=1 -DHAVE_POSIX_FALLOCATE=1 -DHAVE_ZLIB_H=1 -I. -I.. -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -g -O2 -MT sqlite3.lo -MD -MP -MF .deps/sqlite3.Tpo -c -o sqlite3.lo ../sqlite3.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DPACKAGE_NAME=\"sqlite\" -DPACKAGE_TARNAME=\"sqlite\" -DPACKAGE_VERSION=\"3.29.0\" -DPACKAGE_STRING=\"sqlite\ 3.29.0\" -DPACKAGE_BUGREPORT=\"http://www.sqlite.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sqlite\" -DVERSION=\"3.29.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_FDATASYNC=1 -DHAVE_USLEEP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_GMTIME_R=1 -DHAVE_DECL_STRERROR_R=1 -DHAVE_STRERROR_R=1 -DHAVE_READLINE_READLINE_H=1 -DHAVE_READLINE=1 -DHAVE_POSIX_FALLOCATE=1 -DHAVE_ZLIB_H=1 -I. -I.. -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_ENABLE_STMTVTAB -DSQLITE_ENABLE_DBSTAT_VTAB -g -O2 -MT sqlite3-shell.o -MD -MP -MF .deps/sqlite3-shell.Tpo -c -o sqlite3-shell.o `test -f 'shell.c' || echo '../'`shell.c | |
aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DPACKAGE_NAME=\"sqlite\" -DPACKAGE_TARNAME=\"sqlite\" -DPACKAGE_VERSION=\"3.29.0\" -DPACKAGE_STRING=\"sqlite\ 3.29.0\" -DPACKAGE_BUGREPORT=\"http://www.sqlite.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sqlite\" -DVERSION=\"3.29.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_FDATASYNC=1 -DHAVE_USLEEP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_GMTIME_R=1 -DHAVE_DECL_STRERROR_R=1 -DHAVE_STRERROR_R=1 -DHAVE_READLINE_READLINE_H=1 -DHAVE_READLINE=1 -DHAVE_POSIX_FALLOCATE=1 -DHAVE_ZLIB_H=1 -I. -I.. -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_ENABLE_STMTVTAB -DSQLITE_ENABLE_DBSTAT_VTAB -g -O2 -MT sqlite3-sqlite3.o -MD -MP -MF .deps/sqlite3-sqlite3.Tpo -c -o sqlite3-sqlite3.o `test -f 'sqlite3.c' || echo '../'`sqlite3.c | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DPACKAGE_NAME=\"sqlite\" -DPACKAGE_TARNAME=\"sqlite\" -DPACKAGE_VERSION=\"3.29.0\" "-DPACKAGE_STRING=\"sqlite 3.29.0\"" -DPACKAGE_BUGREPORT=\"http://www.sqlite.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sqlite\" -DVERSION=\"3.29.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_FDATASYNC=1 -DHAVE_USLEEP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_GMTIME_R=1 -DHAVE_DECL_STRERROR_R=1 -DHAVE_STRERROR_R=1 -DHAVE_READLINE_READLINE_H=1 -DHAVE_READLINE=1 -DHAVE_POSIX_FALLOCATE=1 -DHAVE_ZLIB_H=1 -I. -I.. -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -g -O2 -MT sqlite3.lo -MD -MP -MF .deps/sqlite3.Tpo -c ../sqlite3.c -fPIC -DPIC -o .libs/sqlite3.o | |
mv -f .deps/sqlite3-shell.Tpo .deps/sqlite3-shell.Po | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DPACKAGE_NAME=\"sqlite\" -DPACKAGE_TARNAME=\"sqlite\" -DPACKAGE_VERSION=\"3.29.0\" "-DPACKAGE_STRING=\"sqlite 3.29.0\"" -DPACKAGE_BUGREPORT=\"http://www.sqlite.org\" -DPACKAGE_URL=\"\" -DPACKAGE=\"sqlite\" -DVERSION=\"3.29.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_FDATASYNC=1 -DHAVE_USLEEP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_GMTIME_R=1 -DHAVE_DECL_STRERROR_R=1 -DHAVE_STRERROR_R=1 -DHAVE_READLINE_READLINE_H=1 -DHAVE_READLINE=1 -DHAVE_POSIX_FALLOCATE=1 -DHAVE_ZLIB_H=1 -I. -I.. -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -g -O2 -MT sqlite3.lo -MD -MP -MF .deps/sqlite3.Tpo -c ../sqlite3.c -o sqlite3.o >/dev/null 2>&1 | |
mv -f .deps/sqlite3-sqlite3.Tpo .deps/sqlite3-sqlite3.Po | |
/bin/bash ./libtool --tag=CC --mode=link aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_ENABLE_STMTVTAB -DSQLITE_ENABLE_DBSTAT_VTAB -g -O2 -o sqlite3 sqlite3-shell.o sqlite3-sqlite3.o -lreadline -lcurses -lz -lm -ldl -lpthread | |
libtool: link: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_ENABLE_STMTVTAB -DSQLITE_ENABLE_DBSTAT_VTAB -g -O2 -o sqlite3 sqlite3-shell.o sqlite3-sqlite3.o -lreadline -lcurses -lz -lm -ldl -lpthread | |
mv -f .deps/sqlite3.Tpo .deps/sqlite3.Plo | |
/bin/bash ./libtool --tag=CC --mode=link aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_RTREE -DSQLITE_HAVE_ZLIB -g -O2 -no-undefined -version-info 8:6:8 -o libsqlite3.la -rpath /usr/lib sqlite3.lo -lz -lm -ldl -lpthread | |
libtool: link: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -shared -fPIC -DPIC .libs/sqlite3.o -lz -lm -ldl -lpthread --sysroot=/home/develop/RPi3-sysroot -g -O2 -Wl,-soname -Wl,libsqlite3.so.0 -o .libs/libsqlite3.so.0.8.6 | |
libtool: link: (cd ".libs" && rm -f "libsqlite3.so.0" && ln -s "libsqlite3.so.0.8.6" "libsqlite3.so.0") | |
libtool: link: (cd ".libs" && rm -f "libsqlite3.so" && ln -s "libsqlite3.so.0.8.6" "libsqlite3.so") | |
libtool: link: aarch64-rpi3-linux-gnu-ar cru .libs/libsqlite3.a sqlite3.o | |
libtool: link: aarch64-rpi3-linux-gnu-ranlib .libs/libsqlite3.a | |
libtool: link: ( cd ".libs" && rm -f "libsqlite3.la" && ln -s "../libsqlite3.la" "libsqlite3.la" ) | |
Removing intermediate container 3a50938fb356 | |
---> 18ff72db0c7b | |
Step 159/184 : RUN make install DESTDIR=${RPI3_SYSROOT} | |
---> Running in 6ec2d3358b62 | |
make[1]: Entering directory '/home/develop/sqlite-autoconf-3290000/build-arm' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/lib' | |
/bin/bash ./libtool --mode=install /usr/bin/install -c libsqlite3.la '/home/develop/RPi3-sysroot/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/libsqlite3.so.0.8.6 /home/develop/RPi3-sysroot/usr/lib/libsqlite3.so.0.8.6 | |
libtool: install: (cd /home/develop/RPi3-sysroot/usr/lib && { ln -s -f libsqlite3.so.0.8.6 libsqlite3.so.0 || { rm -f libsqlite3.so.0 && ln -s libsqlite3.so.0.8.6 libsqlite3.so.0; }; }) | |
libtool: install: (cd /home/develop/RPi3-sysroot/usr/lib && { ln -s -f libsqlite3.so.0.8.6 libsqlite3.so || { rm -f libsqlite3.so && ln -s libsqlite3.so.0.8.6 libsqlite3.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libsqlite3.lai /home/develop/RPi3-sysroot/usr/lib/libsqlite3.la | |
libtool: install: /usr/bin/install -c .libs/libsqlite3.a /home/develop/RPi3-sysroot/usr/lib/libsqlite3.a | |
libtool: install: chmod 644 /home/develop/RPi3-sysroot/usr/lib/libsqlite3.a | |
libtool: install: aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-sysroot/usr/lib/libsqlite3.a | |
libtool: warning: remember to run 'libtool --finish /usr/lib' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/bin' | |
/bin/bash ./libtool --mode=install /usr/bin/install -c sqlite3 '/home/develop/RPi3-sysroot/usr/bin' | |
libtool: install: /usr/bin/install -c sqlite3 /home/develop/RPi3-sysroot/usr/bin/sqlite3 | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/include' | |
/usr/bin/install -c -m 644 ../sqlite3.h ../sqlite3ext.h '/home/develop/RPi3-sysroot/usr/include' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/share/man/man1' | |
/usr/bin/install -c -m 644 ../sqlite3.1 '/home/develop/RPi3-sysroot/usr/share/man/man1' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/lib/pkgconfig' | |
/usr/bin/install -c -m 644 sqlite3.pc '/home/develop/RPi3-sysroot/usr/lib/pkgconfig' | |
make[1]: Leaving directory '/home/develop/sqlite-autoconf-3290000/build-arm' | |
Removing intermediate container 6ec2d3358b62 | |
---> 01473a6ee2cb | |
Step 160/184 : RUN make install DESTDIR=${RPI3_STAGING} | |
---> Running in dfc6d08fcf36 | |
make[1]: Entering directory '/home/develop/sqlite-autoconf-3290000/build-arm' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/lib' | |
/bin/bash ./libtool --mode=install /usr/bin/install -c libsqlite3.la '/home/develop/RPi3-staging/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/libsqlite3.so.0.8.6 /home/develop/RPi3-staging/usr/lib/libsqlite3.so.0.8.6 | |
libtool: install: (cd /home/develop/RPi3-staging/usr/lib && { ln -s -f libsqlite3.so.0.8.6 libsqlite3.so.0 || { rm -f libsqlite3.so.0 && ln -s libsqlite3.so.0.8.6 libsqlite3.so.0; }; }) | |
libtool: install: (cd /home/develop/RPi3-staging/usr/lib && { ln -s -f libsqlite3.so.0.8.6 libsqlite3.so || { rm -f libsqlite3.so && ln -s libsqlite3.so.0.8.6 libsqlite3.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libsqlite3.lai /home/develop/RPi3-staging/usr/lib/libsqlite3.la | |
libtool: install: /usr/bin/install -c .libs/libsqlite3.a /home/develop/RPi3-staging/usr/lib/libsqlite3.a | |
libtool: install: chmod 644 /home/develop/RPi3-staging/usr/lib/libsqlite3.a | |
libtool: install: aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-staging/usr/lib/libsqlite3.a | |
libtool: warning: remember to run 'libtool --finish /usr/lib' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/bin' | |
/bin/bash ./libtool --mode=install /usr/bin/install -c sqlite3 '/home/develop/RPi3-staging/usr/bin' | |
libtool: install: /usr/bin/install -c sqlite3 /home/develop/RPi3-staging/usr/bin/sqlite3 | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/include' | |
/usr/bin/install -c -m 644 ../sqlite3.h ../sqlite3ext.h '/home/develop/RPi3-staging/usr/include' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/share/man/man1' | |
/usr/bin/install -c -m 644 ../sqlite3.1 '/home/develop/RPi3-staging/usr/share/man/man1' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/lib/pkgconfig' | |
/usr/bin/install -c -m 644 sqlite3.pc '/home/develop/RPi3-staging/usr/lib/pkgconfig' | |
make[1]: Leaving directory '/home/develop/sqlite-autoconf-3290000/build-arm' | |
Removing intermediate container dfc6d08fcf36 | |
---> 136cec8689a7 | |
Step 161/184 : WORKDIR /home/develop | |
---> Running in 088f3b63b3b8 | |
Removing intermediate container 088f3b63b3b8 | |
---> 84bd50716bff | |
Step 162/184 : RUN wget https://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz | |
---> Running in dd48f543e132 | |
--2019-09-09 13:53:41-- https://downloads.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz | |
Resolving downloads.sourceforge.net (downloads.sourceforge.net)... 216.105.38.13 | |
Connecting to downloads.sourceforge.net (downloads.sourceforge.net)|216.105.38.13|:443... connected. | |
HTTP request sent, awaiting response... 302 Found | |
Location: https://vorboss.dl.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz [following] | |
--2019-09-09 13:53:42-- https://vorboss.dl.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz | |
Resolving vorboss.dl.sourceforge.net (vorboss.dl.sourceforge.net)... 5.10.152.194 | |
Connecting to vorboss.dl.sourceforge.net (vorboss.dl.sourceforge.net)|5.10.152.194|:443... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 318256 (311K) [application/x-gzip] | |
Saving to: 'libuuid-1.0.3.tar.gz' | |
0K .......... .......... .......... .......... .......... 16% 549K 0s | |
50K .......... .......... .......... .......... .......... 32% 1.13M 0s | |
100K .......... .......... .......... .......... .......... 48% 7.98M 0s | |
150K .......... .......... .......... .......... .......... 64% 1.19M 0s | |
200K .......... .......... .......... .......... .......... 80% 8.32M 0s | |
250K .......... .......... .......... .......... .......... 96% 13.7M 0s | |
300K .......... 100% 23.4M=0.2s | |
2019-09-09 13:53:43 (1.58 MB/s) - 'libuuid-1.0.3.tar.gz' saved [318256/318256] | |
Removing intermediate container dd48f543e132 | |
---> 51c1a2bb17ec | |
Step 163/184 : RUN tar xzf libuuid-1.0.3.tar.gz && rm libuuid-1.0.3.tar.gz | |
---> Running in 5169099efc25 | |
Removing intermediate container 5169099efc25 | |
---> 5a308d46fcc7 | |
Step 164/184 : RUN mkdir libuuid-1.0.3/build-arm | |
---> Running in 40c64fc2182a | |
Removing intermediate container 40c64fc2182a | |
---> b57eed02f8c0 | |
Step 165/184 : WORKDIR /home/develop/libuuid-1.0.3/build-arm | |
---> Running in a268d23db44d | |
Removing intermediate container a268d23db44d | |
---> 8ea3747738cd | |
Step 166/184 : RUN ../configure --prefix="/usr" --host="aarch64-rpi3-linux-gnu" CC="aarch64-rpi3-linux-gnu-gcc --sysroot=${RPI3_SYSROOT}" | |
---> Running in 6567a7d2e190 | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for aarch64-rpi3-linux-gnu-strip... aarch64-rpi3-linux-gnu-strip | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for gawk... gawk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking build system type... x86_64-unknown-linux-gnu | |
checking host system type... aarch64-rpi3-linux-gnu | |
checking how to print strings... printf | |
checking for style of include used by make... GNU | |
checking for aarch64-rpi3-linux-gnu-gcc... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... yes | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot accepts -g... yes | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to accept ISO C89... none needed | |
checking dependency style of aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... gcc3 | |
checking for a sed that does not truncate output... /bin/sed | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for egrep... /bin/grep -E | |
checking for fgrep... /bin/grep -F | |
checking for ld used by aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld | |
checking if the linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) is GNU ld... yes | |
checking for BSD- or MS-compatible name lister (nm)... /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B | |
checking the name lister (/home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B) interface... BSD nm | |
checking whether ln -s works... yes | |
checking the maximum length of command line arguments... 1572864 | |
checking whether the shell understands some XSI constructs... yes | |
checking whether the shell understands "+="... yes | |
checking how to convert x86_64-unknown-linux-gnu file names to aarch64-rpi3-linux-gnu format... func_convert_file_noop | |
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop | |
checking for /home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld option to reload object files... -r | |
checking for aarch64-rpi3-linux-gnu-objdump... aarch64-rpi3-linux-gnu-objdump | |
checking how to recognize dependent libraries... pass_all | |
checking for aarch64-rpi3-linux-gnu-dlltool... no | |
checking for dlltool... no | |
checking how to associate runtime and link libraries... printf %s\n | |
checking for aarch64-rpi3-linux-gnu-ar... aarch64-rpi3-linux-gnu-ar | |
checking for archiver @FILE support... @ | |
checking for aarch64-rpi3-linux-gnu-strip... (cached) aarch64-rpi3-linux-gnu-strip | |
checking for aarch64-rpi3-linux-gnu-ranlib... aarch64-rpi3-linux-gnu-ranlib | |
checking command to parse /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-nm -B output from aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot object... ok | |
checking for sysroot... no | |
checking for aarch64-rpi3-linux-gnu-mt... no | |
checking for mt... no | |
checking if : is a manifest tool... no | |
checking how to run the C preprocessor... aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking for dlfcn.h... yes | |
checking for objdir... .libs | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -fno-rtti -fno-exceptions... no | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to produce PIC... -fPIC -DPIC | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot PIC flag -fPIC -DPIC works... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot static flag -static works... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -c -o file.o... yes | |
checking if aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot supports -c -o file.o... (cached) yes | |
checking whether the aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot linker (/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/bin/ld) supports shared libraries... yes | |
checking whether -lc should be explicitly linked in... no | |
checking dynamic linker characteristics... GNU/Linux ld.so | |
checking how to hardcode library paths into programs... immediate | |
checking whether stripping libraries is possible... yes | |
checking if libtool supports shared libraries... yes | |
checking whether to build shared libraries... yes | |
checking whether to build static libraries... yes | |
checking for aarch64-rpi3-linux-gnu-gcc... (cached) aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot | |
checking whether we are using the GNU C compiler... (cached) yes | |
checking whether aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot accepts -g... (cached) yes | |
checking for aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot option to accept ISO C89... (cached) none needed | |
checking dependency style of aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot... (cached) gcc3 | |
checking for library containing socket... none required | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking for inttypes.h... (cached) yes | |
checking limits.h usability... yes | |
checking limits.h presence... yes | |
checking for limits.h... yes | |
checking netinet/in.h usability... yes | |
checking netinet/in.h presence... yes | |
checking for netinet/in.h... yes | |
checking for stdlib.h... (cached) yes | |
checking for string.h... (cached) yes | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking sys/ioctl.h usability... yes | |
checking sys/ioctl.h presence... yes | |
checking for sys/ioctl.h... yes | |
checking sys/socket.h usability... yes | |
checking sys/socket.h presence... yes | |
checking for sys/socket.h... yes | |
checking sys/time.h usability... yes | |
checking sys/time.h presence... yes | |
checking for sys/time.h... yes | |
checking for unistd.h... (cached) yes | |
checking whether _SC_HOST_NAME_MAX is declared... yes | |
checking for int32_t... yes | |
checking for mode_t... yes | |
checking for size_t... yes | |
checking for ssize_t... yes | |
checking for uint16_t... yes | |
checking for uint32_t... yes | |
checking for uint64_t... yes | |
checking for uint8_t... yes | |
checking for ftruncate... yes | |
checking for gettimeofday... yes | |
checking for memset... yes | |
checking for socket... yes | |
checking for strtoul... yes | |
checking for usleep... yes | |
checking for srandom... yes | |
checking that generated files are newer than configure... done | |
configure: creating ./config.status | |
config.status: creating Makefile | |
config.status: creating uuid.pc | |
config.status: creating config.h | |
config.status: executing depfiles commands | |
config.status: executing libtool commands | |
Removing intermediate container 6567a7d2e190 | |
---> 179f61d9977f | |
Step 167/184 : RUN make -j$(($(nproc) * 2)) | |
---> Running in a1291854984f | |
make all-am | |
make[1]: Entering directory '/home/develop/libuuid-1.0.3/build-arm' | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-clear.lo -MD -MP -MF .deps/libuuid_la-clear.Tpo -c -o libuuid_la-clear.lo `test -f 'clear.c' || echo '../'`clear.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-compare.lo -MD -MP -MF .deps/libuuid_la-compare.Tpo -c -o libuuid_la-compare.lo `test -f 'compare.c' || echo '../'`compare.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-copy.lo -MD -MP -MF .deps/libuuid_la-copy.Tpo -c -o libuuid_la-copy.lo `test -f 'copy.c' || echo '../'`copy.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-gen_uuid.lo -MD -MP -MF .deps/libuuid_la-gen_uuid.Tpo -c -o libuuid_la-gen_uuid.lo `test -f 'gen_uuid.c' || echo '../'`gen_uuid.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-isnull.lo -MD -MP -MF .deps/libuuid_la-isnull.Tpo -c -o libuuid_la-isnull.lo `test -f 'isnull.c' || echo '../'`isnull.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-pack.lo -MD -MP -MF .deps/libuuid_la-pack.Tpo -c -o libuuid_la-pack.lo `test -f 'pack.c' || echo '../'`pack.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-parse.lo -MD -MP -MF .deps/libuuid_la-parse.Tpo -c -o libuuid_la-parse.lo `test -f 'parse.c' || echo '../'`parse.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-unpack.lo -MD -MP -MF .deps/libuuid_la-unpack.Tpo -c -o libuuid_la-unpack.lo `test -f 'unpack.c' || echo '../'`unpack.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-unparse.lo -MD -MP -MF .deps/libuuid_la-unparse.Tpo -c -o libuuid_la-unparse.lo `test -f 'unparse.c' || echo '../'`unparse.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-uuid_time.lo -MD -MP -MF .deps/libuuid_la-uuid_time.Tpo -c -o libuuid_la-uuid_time.lo `test -f 'uuid_time.c' || echo '../'`uuid_time.c | |
/bin/bash ./libtool --tag=CC --mode=compile aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-randutils.lo -MD -MP -MF .deps/libuuid_la-randutils.Tpo -c -o libuuid_la-randutils.lo `test -f 'randutils.c' || echo '../'`randutils.c | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-compare.lo -MD -MP -MF .deps/libuuid_la-compare.Tpo -c ../compare.c -fPIC -DPIC -o .libs/libuuid_la-compare.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-copy.lo -MD -MP -MF .deps/libuuid_la-copy.Tpo -c ../copy.c -fPIC -DPIC -o .libs/libuuid_la-copy.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-clear.lo -MD -MP -MF .deps/libuuid_la-clear.Tpo -c ../clear.c -fPIC -DPIC -o .libs/libuuid_la-clear.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-unparse.lo -MD -MP -MF .deps/libuuid_la-unparse.Tpo -c ../unparse.c -fPIC -DPIC -o .libs/libuuid_la-unparse.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-gen_uuid.lo -MD -MP -MF .deps/libuuid_la-gen_uuid.Tpo -c ../gen_uuid.c -fPIC -DPIC -o .libs/libuuid_la-gen_uuid.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-isnull.lo -MD -MP -MF .deps/libuuid_la-isnull.Tpo -c ../isnull.c -fPIC -DPIC -o .libs/libuuid_la-isnull.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-pack.lo -MD -MP -MF .deps/libuuid_la-pack.Tpo -c ../pack.c -fPIC -DPIC -o .libs/libuuid_la-pack.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-uuid_time.lo -MD -MP -MF .deps/libuuid_la-uuid_time.Tpo -c ../uuid_time.c -fPIC -DPIC -o .libs/libuuid_la-uuid_time.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-randutils.lo -MD -MP -MF .deps/libuuid_la-randutils.Tpo -c ../randutils.c -fPIC -DPIC -o .libs/libuuid_la-randutils.o | |
In file included from /home/develop/RPi3-sysroot/usr/include/bits/libc-header-start.h:33, | |
from /home/develop/RPi3-sysroot/usr/include/stdio.h:27, | |
from ../gen_uuid.c:46: | |
/home/develop/RPi3-sysroot/usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] | |
184 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | |
| ^~~~~~~ | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-parse.lo -MD -MP -MF .deps/libuuid_la-parse.Tpo -c ../parse.c -fPIC -DPIC -o .libs/libuuid_la-parse.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-unpack.lo -MD -MP -MF .deps/libuuid_la-unpack.Tpo -c ../unpack.c -fPIC -DPIC -o .libs/libuuid_la-unpack.o | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-copy.lo -MD -MP -MF .deps/libuuid_la-copy.Tpo -c ../copy.c -o libuuid_la-copy.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-compare.lo -MD -MP -MF .deps/libuuid_la-compare.Tpo -c ../compare.c -o libuuid_la-compare.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-clear.lo -MD -MP -MF .deps/libuuid_la-clear.Tpo -c ../clear.c -o libuuid_la-clear.o >/dev/null 2>&1 | |
../gen_uuid.c: In function 'get_clock': | |
../gen_uuid.c:297:10: warning: implicit declaration of function 'flock'; did you mean 'clock'? [-Wimplicit-function-declaration] | |
297 | while (flock(state_fd, LOCK_EX) < 0) { | |
| ^~~~~ | |
| clock | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-isnull.lo -MD -MP -MF .deps/libuuid_la-isnull.Tpo -c ../isnull.c -o libuuid_la-isnull.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-pack.lo -MD -MP -MF .deps/libuuid_la-pack.Tpo -c ../pack.c -o libuuid_la-pack.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-unparse.lo -MD -MP -MF .deps/libuuid_la-unparse.Tpo -c ../unparse.c -o libuuid_la-unparse.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-unpack.lo -MD -MP -MF .deps/libuuid_la-unpack.Tpo -c ../unpack.c -o libuuid_la-unpack.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-uuid_time.lo -MD -MP -MF .deps/libuuid_la-uuid_time.Tpo -c ../uuid_time.c -o libuuid_la-uuid_time.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-randutils.lo -MD -MP -MF .deps/libuuid_la-randutils.Tpo -c ../randutils.c -o libuuid_la-randutils.o >/dev/null 2>&1 | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-parse.lo -MD -MP -MF .deps/libuuid_la-parse.Tpo -c ../parse.c -o libuuid_la-parse.o >/dev/null 2>&1 | |
mv -f .deps/libuuid_la-copy.Tpo .deps/libuuid_la-copy.Plo | |
mv -f .deps/libuuid_la-clear.Tpo .deps/libuuid_la-clear.Plo | |
mv -f .deps/libuuid_la-compare.Tpo .deps/libuuid_la-compare.Plo | |
mv -f .deps/libuuid_la-isnull.Tpo .deps/libuuid_la-isnull.Plo | |
mv -f .deps/libuuid_la-pack.Tpo .deps/libuuid_la-pack.Plo | |
mv -f .deps/libuuid_la-unpack.Tpo .deps/libuuid_la-unpack.Plo | |
mv -f .deps/libuuid_la-unparse.Tpo .deps/libuuid_la-unparse.Plo | |
mv -f .deps/libuuid_la-uuid_time.Tpo .deps/libuuid_la-uuid_time.Plo | |
libtool: compile: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -DHAVE_CONFIG_H -I. -I.. -I.. -g -O2 -MT libuuid_la-gen_uuid.lo -MD -MP -MF .deps/libuuid_la-gen_uuid.Tpo -c ../gen_uuid.c -o libuuid_la-gen_uuid.o >/dev/null 2>&1 | |
mv -f .deps/libuuid_la-randutils.Tpo .deps/libuuid_la-randutils.Plo | |
mv -f .deps/libuuid_la-parse.Tpo .deps/libuuid_la-parse.Plo | |
mv -f .deps/libuuid_la-gen_uuid.Tpo .deps/libuuid_la-gen_uuid.Plo | |
/bin/bash ./libtool --tag=CC --mode=link aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -I.. -g -O2 -version-info 1:0:0 -o libuuid.la -rpath /usr/lib libuuid_la-clear.lo libuuid_la-compare.lo libuuid_la-copy.lo libuuid_la-gen_uuid.lo libuuid_la-isnull.lo libuuid_la-pack.lo libuuid_la-parse.lo libuuid_la-unpack.lo libuuid_la-unparse.lo libuuid_la-uuid_time.lo libuuid_la-randutils.lo | |
libtool: link: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot -shared -fPIC -DPIC .libs/libuuid_la-clear.o .libs/libuuid_la-compare.o .libs/libuuid_la-copy.o .libs/libuuid_la-gen_uuid.o .libs/libuuid_la-isnull.o .libs/libuuid_la-pack.o .libs/libuuid_la-parse.o .libs/libuuid_la-unpack.o .libs/libuuid_la-unparse.o .libs/libuuid_la-uuid_time.o .libs/libuuid_la-randutils.o --sysroot=/home/develop/RPi3-sysroot -O2 -Wl,-soname -Wl,libuuid.so.1 -o .libs/libuuid.so.1.0.0 | |
libtool: link: (cd ".libs" && rm -f "libuuid.so.1" && ln -s "libuuid.so.1.0.0" "libuuid.so.1") | |
libtool: link: (cd ".libs" && rm -f "libuuid.so" && ln -s "libuuid.so.1.0.0" "libuuid.so") | |
libtool: link: aarch64-rpi3-linux-gnu-ar cru .libs/libuuid.a libuuid_la-clear.o libuuid_la-compare.o libuuid_la-copy.o libuuid_la-gen_uuid.o libuuid_la-isnull.o libuuid_la-pack.o libuuid_la-parse.o libuuid_la-unpack.o libuuid_la-unparse.o libuuid_la-uuid_time.o libuuid_la-randutils.o | |
libtool: link: aarch64-rpi3-linux-gnu-ranlib .libs/libuuid.a | |
libtool: link: ( cd ".libs" && rm -f "libuuid.la" && ln -s "../libuuid.la" "libuuid.la" ) | |
make[1]: Leaving directory '/home/develop/libuuid-1.0.3/build-arm' | |
Removing intermediate container a1291854984f | |
---> 44977366c899 | |
Step 168/184 : RUN make install DESTDIR=${RPI3_SYSROOT} | |
---> Running in 9dd638f7615c | |
make[1]: Entering directory '/home/develop/libuuid-1.0.3/build-arm' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/lib' | |
/bin/bash ./libtool --mode=install /usr/bin/install -c libuuid.la '/home/develop/RPi3-sysroot/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/libuuid.so.1.0.0 /home/develop/RPi3-sysroot/usr/lib/libuuid.so.1.0.0 | |
libtool: install: (cd /home/develop/RPi3-sysroot/usr/lib && { ln -s -f libuuid.so.1.0.0 libuuid.so.1 || { rm -f libuuid.so.1 && ln -s libuuid.so.1.0.0 libuuid.so.1; }; }) | |
libtool: install: (cd /home/develop/RPi3-sysroot/usr/lib && { ln -s -f libuuid.so.1.0.0 libuuid.so || { rm -f libuuid.so && ln -s libuuid.so.1.0.0 libuuid.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libuuid.lai /home/develop/RPi3-sysroot/usr/lib/libuuid.la | |
libtool: install: /usr/bin/install -c .libs/libuuid.a /home/develop/RPi3-sysroot/usr/lib/libuuid.a | |
libtool: install: chmod 644 /home/develop/RPi3-sysroot/usr/lib/libuuid.a | |
libtool: install: aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-sysroot/usr/lib/libuuid.a | |
libtool: install: warning: remember to run `libtool --finish /usr/lib' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/lib/pkgconfig' | |
/usr/bin/install -c -m 644 uuid.pc '/home/develop/RPi3-sysroot/usr/lib/pkgconfig' | |
/bin/mkdir -p '/home/develop/RPi3-sysroot/usr/include/uuid' | |
/usr/bin/install -c -m 644 ../uuid.h '/home/develop/RPi3-sysroot/usr/include/uuid' | |
make[1]: Leaving directory '/home/develop/libuuid-1.0.3/build-arm' | |
Removing intermediate container 9dd638f7615c | |
---> ce165901f8b6 | |
Step 169/184 : RUN make install DESTDIR=${RPI3_STAGING} | |
---> Running in fab464e63208 | |
make[1]: Entering directory '/home/develop/libuuid-1.0.3/build-arm' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/lib' | |
/bin/bash ./libtool --mode=install /usr/bin/install -c libuuid.la '/home/develop/RPi3-staging/usr/lib' | |
libtool: install: /usr/bin/install -c .libs/libuuid.so.1.0.0 /home/develop/RPi3-staging/usr/lib/libuuid.so.1.0.0 | |
libtool: install: (cd /home/develop/RPi3-staging/usr/lib && { ln -s -f libuuid.so.1.0.0 libuuid.so.1 || { rm -f libuuid.so.1 && ln -s libuuid.so.1.0.0 libuuid.so.1; }; }) | |
libtool: install: (cd /home/develop/RPi3-staging/usr/lib && { ln -s -f libuuid.so.1.0.0 libuuid.so || { rm -f libuuid.so && ln -s libuuid.so.1.0.0 libuuid.so; }; }) | |
libtool: install: /usr/bin/install -c .libs/libuuid.lai /home/develop/RPi3-staging/usr/lib/libuuid.la | |
libtool: install: /usr/bin/install -c .libs/libuuid.a /home/develop/RPi3-staging/usr/lib/libuuid.a | |
libtool: install: chmod 644 /home/develop/RPi3-staging/usr/lib/libuuid.a | |
libtool: install: aarch64-rpi3-linux-gnu-ranlib /home/develop/RPi3-staging/usr/lib/libuuid.a | |
libtool: install: warning: remember to run `libtool --finish /usr/lib' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/lib/pkgconfig' | |
/usr/bin/install -c -m 644 uuid.pc '/home/develop/RPi3-staging/usr/lib/pkgconfig' | |
/bin/mkdir -p '/home/develop/RPi3-staging/usr/include/uuid' | |
/usr/bin/install -c -m 644 ../uuid.h '/home/develop/RPi3-staging/usr/include/uuid' | |
make[1]: Leaving directory '/home/develop/libuuid-1.0.3/build-arm' | |
Removing intermediate container fab464e63208 | |
---> 469f488f610c | |
Step 170/184 : RUN ln -s uuid/uuid.h ${RPI3_SYSROOT}/usr/include/uuid.h | |
---> Running in 1626d769b3da | |
Removing intermediate container 1626d769b3da | |
---> 0aef7b90aa3b | |
Step 171/184 : WORKDIR /home/develop/Python-3.7.4 | |
---> Running in 40655942dc50 | |
Removing intermediate container 40655942dc50 | |
---> ee9990cdf499 | |
Step 172/184 : RUN echo "ac_cv_file__dev_ptmx=yes\nac_cv_file__dev_ptc=no" > config.site | |
---> Running in 37ff26415bbd | |
Removing intermediate container 37ff26415bbd | |
---> 8d76054780ec | |
Step 173/184 : RUN mkdir build-arm | |
---> Running in 61eea750569c | |
Removing intermediate container 61eea750569c | |
---> adb0b0d94ddc | |
Step 174/184 : COPY setup.py setup.py | |
---> 671bf1788bd3 | |
Step 175/184 : WORKDIR /home/develop/Python-3.7.4/build-arm | |
---> Running in ed8e68e9ab63 | |
Removing intermediate container ed8e68e9ab63 | |
---> 6f7323cba8a9 | |
Step 176/184 : RUN CONFIG_SITE=../config.site ../configure --enable-ipv6 --enable-shared --with-lto --enable-optimizations --enable-loadable-sqlite-extensions --with-dbmliborder=bdb:gdbm --with-ensurepip=install --build="$(gcc -dumpmachine)" --host="aarch64-rpi3-linux-gnu" --prefix="/usr" CFLAGS="--sysroot=${RPI3_SYSROOT}" CPPFLAGS="--sysroot=${RPI3_SYSROOT}" CXXFLAGS="--sysroot=${RPI3_SYSROOT}" LDFLAGS="--sysroot=${RPI3_SYSROOT}" CC="aarch64-rpi3-linux-gnu-gcc" CXX="aarch64-rpi3-linux-gnu-g++" LD="aarch64-rpi3-linux-gnu-ld" && cat config.log && make -j$(($(nproc) * 2)) && make altinstall DESTDIR="${RPI3_SYSROOT}" && make altinstall DESTDIR="${RPI3_STAGING}" && cd && rm -rf Python-3.7.4/build-arm | |
---> Running in 8b9e8bda90bb | |
configure: loading site script ../config.site | |
checking build system type... x86_64-pc-linux-gnu | |
checking host system type... aarch64-rpi3-linux-gnu | |
checking for python3.7... python3.7 | |
checking for python interpreter for cross build... python3.7 | |
checking for --enable-universalsdk... no | |
checking for --with-universal-archs... no | |
checking MACHDEP... checking for --without-gcc... no | |
checking for --with-icc... no | |
checking for aarch64-rpi3-linux-gnu-gcc... aarch64-rpi3-linux-gnu-gcc | |
checking whether the C compiler works... yes | |
checking for C compiler default output file name... a.out | |
checking for suffix of executables... | |
checking whether we are cross compiling... yes | |
checking for suffix of object files... o | |
checking whether we are using the GNU C compiler... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc accepts -g... yes | |
checking for aarch64-rpi3-linux-gnu-gcc option to accept ISO C89... none needed | |
checking how to run the C preprocessor... aarch64-rpi3-linux-gnu-gcc -E | |
checking for grep that handles long lines and -e... /bin/grep | |
checking for a sed that does not truncate output... /bin/sed | |
checking for --with-cxx-main=<compiler>... no | |
checking for the platform triplet based on compiler characteristics... aarch64-linux-gnu | |
checking for -Wl,--no-as-needed... yes | |
checking for egrep... /bin/grep -E | |
checking for ANSI C header files... yes | |
checking for sys/types.h... yes | |
checking for sys/stat.h... yes | |
checking for stdlib.h... yes | |
checking for string.h... yes | |
checking for memory.h... yes | |
checking for strings.h... yes | |
checking for inttypes.h... yes | |
checking for stdint.h... yes | |
checking for unistd.h... yes | |
checking minix/config.h usability... no | |
checking minix/config.h presence... no | |
checking for minix/config.h... no | |
checking whether it is safe to define __EXTENSIONS__... yes | |
checking for the Android API level... not Android | |
checking for --with-suffix... | |
checking for case-insensitive build directory... no | |
checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a | |
checking LINKCC... $(PURIFY) $(MAINCC) | |
checking for GNU ld... yes | |
checking for --enable-shared... yes | |
checking for --enable-profiling... no | |
checking LDLIBRARY... libpython$(LDVERSION).so | |
checking for aarch64-rpi3-linux-gnu-ar... aarch64-rpi3-linux-gnu-ar | |
checking for aarch64-rpi3-linux-gnu-readelf... aarch64-rpi3-linux-gnu-readelf | |
checking for a BSD-compatible install... /usr/bin/install -c | |
checking for a thread-safe mkdir -p... /bin/mkdir -p | |
checking for --with-pydebug... no | |
checking for --with-assertions... no | |
checking for --enable-optimizations... yes | |
checking for --with-lto... yes | |
checking for -llvm-profdata... no | |
checking for -Wextra... yes | |
checking whether aarch64-rpi3-linux-gnu-gcc accepts and needs -fno-strict-aliasing... no | |
checking if we can turn off aarch64-rpi3-linux-gnu-gcc unused result warning... yes | |
checking if we can turn off aarch64-rpi3-linux-gnu-gcc unused parameter warning... yes | |
checking if we can turn off aarch64-rpi3-linux-gnu-gcc missing field initializers warning... yes | |
checking if we can turn off aarch64-rpi3-linux-gnu-gcc invalid function cast warning... yes | |
checking if we can turn on aarch64-rpi3-linux-gnu-gcc mixed sign comparison warning... yes | |
checking if we can turn on aarch64-rpi3-linux-gnu-gcc unreachable code warning... no | |
checking if we can turn on aarch64-rpi3-linux-gnu-gcc strict-prototypes warning... no | |
checking if we can make implicit function declaration an error in aarch64-rpi3-linux-gnu-gcc... yes | |
checking whether pthreads are available without options... no | |
checking whether aarch64-rpi3-linux-gnu-gcc accepts -Kpthread... no | |
checking whether aarch64-rpi3-linux-gnu-gcc accepts -Kthread... no | |
checking whether aarch64-rpi3-linux-gnu-gcc accepts -pthread... no | |
checking whether aarch64-rpi3-linux-gnu-g++ also accepts flags for thread support... no | |
checking for ANSI C header files... (cached) yes | |
checking asm/types.h usability... yes | |
checking asm/types.h presence... yes | |
checking for asm/types.h... yes | |
checking crypt.h usability... yes | |
checking crypt.h presence... yes | |
checking for crypt.h... yes | |
checking conio.h usability... no | |
checking conio.h presence... no | |
checking for conio.h... no | |
checking direct.h usability... no | |
checking direct.h presence... no | |
checking for direct.h... no | |
checking dlfcn.h usability... yes | |
checking dlfcn.h presence... yes | |
checking for dlfcn.h... yes | |
checking errno.h usability... yes | |
checking errno.h presence... yes | |
checking for errno.h... yes | |
checking fcntl.h usability... yes | |
checking fcntl.h presence... yes | |
checking for fcntl.h... yes | |
checking grp.h usability... yes | |
checking grp.h presence... yes | |
checking for grp.h... yes | |
checking ieeefp.h usability... no | |
checking ieeefp.h presence... no | |
checking for ieeefp.h... no | |
checking io.h usability... no | |
checking io.h presence... no | |
checking for io.h... no | |
checking langinfo.h usability... yes | |
checking langinfo.h presence... yes | |
checking for langinfo.h... yes | |
checking libintl.h usability... yes | |
checking libintl.h presence... yes | |
checking for libintl.h... yes | |
checking process.h usability... no | |
checking process.h presence... no | |
checking for process.h... no | |
checking pthread.h usability... yes | |
checking pthread.h presence... yes | |
checking for pthread.h... yes | |
checking sched.h usability... yes | |
checking sched.h presence... yes | |
checking for sched.h... yes | |
checking shadow.h usability... yes | |
checking shadow.h presence... yes | |
checking for shadow.h... yes | |
checking signal.h usability... yes | |
checking signal.h presence... yes | |
checking for signal.h... yes | |
checking stropts.h usability... yes | |
checking stropts.h presence... yes | |
checking for stropts.h... yes | |
checking termios.h usability... yes | |
checking termios.h presence... yes | |
checking for termios.h... yes | |
checking for unistd.h... (cached) yes | |
checking utime.h usability... yes | |
checking utime.h presence... yes | |
checking for utime.h... yes | |
checking poll.h usability... yes | |
checking poll.h presence... yes | |
checking for poll.h... yes | |
checking sys/devpoll.h usability... no | |
checking sys/devpoll.h presence... no | |
checking for sys/devpoll.h... no | |
checking sys/epoll.h usability... yes | |
checking sys/epoll.h presence... yes | |
checking for sys/epoll.h... yes | |
checking sys/poll.h usability... yes | |
checking sys/poll.h presence... yes | |
checking for sys/poll.h... yes | |
checking sys/audioio.h usability... no | |
checking sys/audioio.h presence... no | |
checking for sys/audioio.h... no | |
checking sys/xattr.h usability... yes | |
checking sys/xattr.h presence... yes | |
checking for sys/xattr.h... yes | |
checking sys/bsdtty.h usability... no | |
checking sys/bsdtty.h presence... no | |
checking for sys/bsdtty.h... no | |
checking sys/event.h usability... no | |
checking sys/event.h presence... no | |
checking for sys/event.h... no | |
checking sys/file.h usability... yes | |
checking sys/file.h presence... yes | |
checking for sys/file.h... yes | |
checking sys/ioctl.h usability... yes | |
checking sys/ioctl.h presence... yes | |
checking for sys/ioctl.h... yes | |
checking sys/kern_control.h usability... no | |
checking sys/kern_control.h presence... no | |
checking for sys/kern_control.h... no | |
checking sys/loadavg.h usability... no | |
checking sys/loadavg.h presence... no | |
checking for sys/loadavg.h... no | |
checking sys/lock.h usability... no | |
checking sys/lock.h presence... no | |
checking for sys/lock.h... no | |
checking sys/mkdev.h usability... no | |
checking sys/mkdev.h presence... no | |
checking for sys/mkdev.h... no | |
checking sys/modem.h usability... no | |
checking sys/modem.h presence... no | |
checking for sys/modem.h... no | |
checking sys/param.h usability... yes | |
checking sys/param.h presence... yes | |
checking for sys/param.h... yes | |
checking sys/random.h usability... yes | |
checking sys/random.h presence... yes | |
checking for sys/random.h... yes | |
checking sys/select.h usability... yes | |
checking sys/select.h presence... yes | |
checking for sys/select.h... yes | |
checking sys/sendfile.h usability... yes | |
checking sys/sendfile.h presence... yes | |
checking for sys/sendfile.h... yes | |
checking sys/socket.h usability... yes | |
checking sys/socket.h presence... yes | |
checking for sys/socket.h... yes | |
checking sys/statvfs.h usability... yes | |
checking sys/statvfs.h presence... yes | |
checking for sys/statvfs.h... yes | |
checking for sys/stat.h... (cached) yes | |
checking sys/syscall.h usability... yes | |
checking sys/syscall.h presence... yes | |
checking for sys/syscall.h... yes | |
checking sys/sys_domain.h usability... no | |
checking sys/sys_domain.h presence... no | |
checking for sys/sys_domain.h... no | |
checking sys/termio.h usability... no | |
checking sys/termio.h presence... no | |
checking for sys/termio.h... no | |
checking sys/time.h usability... yes | |
checking sys/time.h presence... yes | |
checking for sys/time.h... yes | |
checking sys/times.h usability... yes | |
checking sys/times.h presence... yes | |
checking for sys/times.h... yes | |
checking for sys/types.h... (cached) yes | |
checking sys/uio.h usability... yes | |
checking sys/uio.h presence... yes | |
checking for sys/uio.h... yes | |
checking sys/un.h usability... yes | |
checking sys/un.h presence... yes | |
checking for sys/un.h... yes | |
checking sys/utsname.h usability... yes | |
checking sys/utsname.h presence... yes | |
checking for sys/utsname.h... yes | |
checking sys/wait.h usability... yes | |
checking sys/wait.h presence... yes | |
checking for sys/wait.h... yes | |
checking pty.h usability... yes | |
checking pty.h presence... yes | |
checking for pty.h... yes | |
checking libutil.h usability... no | |
checking libutil.h presence... no | |
checking for libutil.h... no | |
checking sys/resource.h usability... yes | |
checking sys/resource.h presence... yes | |
checking for sys/resource.h... yes | |
checking netpacket/packet.h usability... yes | |
checking netpacket/packet.h presence... yes | |
checking for netpacket/packet.h... yes | |
checking sysexits.h usability... yes | |
checking sysexits.h presence... yes | |
checking for sysexits.h... yes | |
checking bluetooth.h usability... no | |
checking bluetooth.h presence... no | |
checking for bluetooth.h... no | |
checking linux/tipc.h usability... yes | |
checking linux/tipc.h presence... yes | |
checking for linux/tipc.h... yes | |
checking linux/random.h usability... yes | |
checking linux/random.h presence... yes | |
checking for linux/random.h... yes | |
checking spawn.h usability... yes | |
checking spawn.h presence... yes | |
checking for spawn.h... yes | |
checking util.h usability... no | |
checking util.h presence... no | |
checking for util.h... no | |
checking alloca.h usability... yes | |
checking alloca.h presence... yes | |
checking for alloca.h... yes | |
checking endian.h usability... yes | |
checking endian.h presence... yes | |
checking for endian.h... yes | |
checking sys/endian.h usability... no | |
checking sys/endian.h presence... no | |
checking for sys/endian.h... no | |
checking sys/sysmacros.h usability... yes | |
checking sys/sysmacros.h presence... yes | |
checking for sys/sysmacros.h... yes | |
checking for dirent.h that defines DIR... yes | |
checking for library containing opendir... none required | |
checking whether sys/types.h defines makedev... yes | |
checking bluetooth/bluetooth.h usability... no | |
checking bluetooth/bluetooth.h presence... no | |
checking for bluetooth/bluetooth.h... no | |
checking for net/if.h... yes | |
checking for linux/netlink.h... yes | |
checking for linux/vm_sockets.h... yes | |
checking for linux/can.h... yes | |
checking for linux/can/raw.h... yes | |
checking for linux/can/bcm.h... yes | |
checking for clock_t in time.h... yes | |
checking for makedev... yes | |
checking for le64toh... yes | |
checking for mode_t... yes | |
checking for off_t... yes | |
checking for pid_t... yes | |
checking for size_t... yes | |
checking for uid_t in sys/types.h... yes | |
checking for ssize_t... yes | |
checking for __uint128_t... yes | |
checking size of int... 4 | |
checking size of long... 8 | |
checking size of long long... 8 | |
checking size of void *... 8 | |
checking size of short... 2 | |
checking size of float... 4 | |
checking size of double... 8 | |
checking size of fpos_t... 16 | |
checking size of size_t... 8 | |
checking size of pid_t... 4 | |
checking size of uintptr_t... 8 | |
checking for long double support... yes | |
checking size of long double... 16 | |
checking size of _Bool... 1 | |
checking size of off_t... 8 | |
checking whether to enable large file support... no | |
checking size of time_t... 8 | |
checking for pthread_t... yes | |
checking size of pthread_t... 8 | |
checking size of pthread_key_t... 4 | |
checking whether pthread_key_t is compatible with int... yes | |
checking for --enable-framework... no | |
checking for dyld... no | |
checking the extension of shared libraries... .so | |
checking LDSHARED... $(CC) -shared | |
checking CCSHARED... -fPIC | |
checking LINKFORSHARED... -Xlinker -export-dynamic | |
checking CFLAGSFORSHARED... $(CCSHARED) | |
checking SHLIBS... $(LIBS) | |
checking for sendfile in -lsendfile... no | |
checking for dlopen in -ldl... yes | |
checking for shl_load in -ldld... no | |
checking uuid/uuid.h usability... yes | |
checking uuid/uuid.h presence... yes | |
checking for uuid/uuid.h... yes | |
checking uuid.h usability... yes | |
checking uuid.h presence... yes | |
checking for uuid.h... yes | |
checking for uuid_generate_time_safe... yes | |
checking for uuid_create... no | |
checking for uuid_enc_be... no | |
checking for library containing sem_init... -lpthread | |
checking for textdomain in -lintl... no | |
checking aligned memory access is required... yes | |
checking for --with-hash-algorithm... default | |
checking for --with-address-sanitizer... no | |
checking for --with-memory-sanitizer... no | |
checking for --with-undefined-behavior-sanitizer... no | |
checking for t_open in -lnsl... no | |
checking for socket in -lsocket... no | |
checking for --with-libs... no | |
checking for aarch64-rpi3-linux-gnu-pkg-config... no | |
checking for pkg-config... /usr/bin/pkg-config | |
configure: WARNING: using cross tools not prefixed with host triplet | |
checking pkg-config is at least version 0.9.0... yes | |
checking for --with-system-expat... no | |
checking for --with-system-ffi... yes | |
checking for --with-system-libmpdec... no | |
checking for --enable-loadable-sqlite-extensions... yes | |
checking for --with-tcltk-includes... default | |
checking for --with-tcltk-libs... default | |
checking for --with-dbmliborder... bdb:gdbm | |
checking for _POSIX_THREADS in unistd.h... yes | |
checking for pthread_create in -lpthread... yes | |
checking for usconfig in -lmpc... no | |
checking if PTHREAD_SCOPE_SYSTEM is supported... no | |
checking for pthread_sigmask... yes | |
checking for pthread_getcpuclockid... yes | |
checking if --enable-ipv6 is specified... yes | |
checking ipv6 stack type... linux-glibc | |
checking for CAN_RAW_FD_FRAMES... yes | |
checking for --with-doc-strings... yes | |
checking for --with-pymalloc... yes | |
checking for --with-c-locale-coercion... yes | |
checking for --with-valgrind... no | |
checking for --with-dtrace... no | |
checking for dlopen... yes | |
checking DYNLOADFILE... dynload_shlib.o | |
checking MACHDEP_OBJS... none | |
checking for alarm... yes | |
checking for accept4... yes | |
checking for setitimer... yes | |
checking for getitimer... yes | |
checking for bind_textdomain_codeset... yes | |
checking for chown... yes | |
checking for clock... yes | |
checking for confstr... yes | |
checking for ctermid... yes | |
checking for dup3... yes | |
checking for execv... yes | |
checking for faccessat... yes | |
checking for fchmod... yes | |
checking for fchmodat... yes | |
checking for fchown... yes | |
checking for fchownat... yes | |
checking for fexecve... yes | |
checking for fdopendir... yes | |
checking for fork... yes | |
checking for fpathconf... yes | |
checking for fstatat... yes | |
checking for ftime... yes | |
checking for ftruncate... yes | |
checking for futimesat... yes | |
checking for futimens... yes | |
checking for futimes... yes | |
checking for gai_strerror... yes | |
checking for getentropy... yes | |
checking for getgrouplist... yes | |
checking for getgroups... yes | |
checking for getlogin... yes | |
checking for getloadavg... yes | |
checking for getpeername... yes | |
checking for getpgid... yes | |
checking for getpid... yes | |
checking for getpriority... yes | |
checking for getresuid... yes | |
checking for getresgid... yes | |
checking for getpwent... yes | |
checking for getspnam... yes | |
checking for getspent... yes | |
checking for getsid... yes | |
checking for getwd... yes | |
checking for if_nameindex... yes | |
checking for initgroups... yes | |
checking for kill... yes | |
checking for killpg... yes | |
checking for lchown... yes | |
checking for lockf... yes | |
checking for linkat... yes | |
checking for lstat... yes | |
checking for lutimes... yes | |
checking for mmap... yes | |
checking for memrchr... yes | |
checking for mbrtowc... yes | |
checking for mkdirat... yes | |
checking for mkfifo... yes | |
checking for mkfifoat... yes | |
checking for mknod... yes | |
checking for mknodat... yes | |
checking for mktime... yes | |
checking for mremap... yes | |
checking for nice... yes | |
checking for openat... yes | |
checking for pathconf... yes | |
checking for pause... yes | |
checking for pipe2... yes | |
checking for plock... no | |
checking for poll... yes | |
checking for posix_fallocate... yes | |
checking for posix_fadvise... yes | |
checking for posix_spawn... yes | |
checking for pread... yes | |
checking for preadv... yes | |
checking for preadv2... yes | |
checking for pthread_init... no | |
checking for pthread_kill... yes | |
checking for putenv... yes | |
checking for pwrite... yes | |
checking for pwritev... yes | |
checking for pwritev2... yes | |
checking for readlink... yes | |
checking for readlinkat... yes | |
checking for readv... yes | |
checking for realpath... yes | |
checking for renameat... yes | |
checking for sem_open... yes | |
checking for sem_timedwait... yes | |
checking for sem_getvalue... yes | |
checking for sem_unlink... yes | |
checking for sendfile... yes | |
checking for setegid... yes | |
checking for seteuid... yes | |
checking for setgid... yes | |
checking for sethostname... yes | |
checking for setlocale... yes | |
checking for setregid... yes | |
checking for setreuid... yes | |
checking for setresuid... yes | |
checking for setresgid... yes | |
checking for setsid... yes | |
checking for setpgid... yes | |
checking for setpgrp... yes | |
checking for setpriority... yes | |
checking for setuid... yes | |
checking for setvbuf... yes | |
checking for sched_get_priority_max... yes | |
checking for sched_setaffinity... yes | |
checking for sched_setscheduler... yes | |
checking for sched_setparam... yes | |
checking for sched_rr_get_interval... yes | |
checking for sigaction... yes | |
checking for sigaltstack... yes | |
checking for siginterrupt... yes | |
checking for sigpending... yes | |
checking for sigrelse... yes | |
checking for sigtimedwait... yes | |
checking for sigwait... yes | |
checking for sigwaitinfo... yes | |
checking for snprintf... yes | |
checking for strftime... yes | |
checking for strlcpy... no | |
checking for symlinkat... yes | |
checking for sync... yes | |
checking for sysconf... yes | |
checking for tcgetpgrp... yes | |
checking for tcsetpgrp... yes | |
checking for tempnam... yes | |
checking for timegm... yes | |
checking for times... yes | |
checking for tmpfile... yes | |
checking for tmpnam... yes | |
checking for tmpnam_r... yes | |
checking for truncate... yes | |
checking for uname... yes | |
checking for unlinkat... yes | |
checking for unsetenv... yes | |
checking for utimensat... yes | |
checking for utimes... yes | |
checking for waitid... yes | |
checking for waitpid... yes | |
checking for wait3... yes | |
checking for wait4... yes | |
checking for wcscoll... yes | |
checking for wcsftime... yes | |
checking for wcsxfrm... yes | |
checking for wmemcmp... yes | |
checking for writev... yes | |
checking for _getpty... no | |
checking whether dirfd is declared... yes | |
checking for chroot... yes | |
checking for link... yes | |
checking for symlink... yes | |
checking for fchdir... yes | |
checking for fsync... yes | |
checking for fdatasync... yes | |
checking for epoll... yes | |
checking for epoll_create1... yes | |
checking for kqueue... no | |
checking for prlimit... yes | |
checking for ctermid_r... no | |
checking for flock declaration... yes | |
checking for flock... yes | |
checking for getpagesize... yes | |
checking for broken unsetenv... no | |
checking for true... true | |
checking for inet_aton in -lc... yes | |
checking for chflags... cross | |
checking for chflags... no | |
checking for lchflags... cross | |
checking for lchflags... no | |
checking for inflateCopy in -lz... yes | |
checking for hstrerror... yes | |
checking for inet_aton... yes | |
checking for inet_pton... yes | |
checking for setgroups... yes | |
checking for openpty... no | |
checking for openpty in -lutil... yes | |
checking for forkpty... yes | |
checking for fseek64... no | |
checking for fseeko... yes | |
checking for fstatvfs... yes | |
checking for ftell64... no | |
checking for ftello... yes | |
checking for statvfs... yes | |
checking for dup2... yes | |
checking for strdup... yes | |
checking for getpgrp... yes | |
checking for setpgrp... (cached) yes | |
checking for gettimeofday... yes | |
checking for library containing crypt... -lcrypt | |
checking for library containing crypt_r... none required | |
checking for crypt_r... yes | |
checking for clock_gettime... yes | |
checking for clock_getres... yes | |
checking for clock_settime... yes | |
checking for major... yes | |
checking for getaddrinfo... yes | |
checking getaddrinfo bug... no -- configured with --(en|dis)able-ipv6 | |
checking for getnameinfo... yes | |
checking whether time.h and sys/time.h may both be included... yes | |
checking whether struct tm is in sys/time.h or time.h... time.h | |
checking for struct tm.tm_zone... yes | |
checking for struct stat.st_rdev... yes | |
checking for struct stat.st_blksize... yes | |
checking for struct stat.st_flags... no | |
checking for struct stat.st_gen... no | |
checking for struct stat.st_birthtime... no | |
checking for struct stat.st_blocks... yes | |
checking for struct passwd.pw_gecos... yes | |
checking for struct passwd.pw_passwd... yes | |
checking for siginfo_t.si_band... yes | |
checking for time.h that defines altzone... no | |
checking whether sys/select.h and sys/time.h may both be included... yes | |
checking for addrinfo... yes | |
checking for sockaddr_storage... yes | |
checking for sockaddr_alg... yes | |
checking whether char is unsigned... yes | |
checking for an ANSI C-conforming const... yes | |
checking for working signed char... yes | |
checking for prototypes... yes | |
checking for variable length prototypes and stdarg.h... yes | |
checking for socketpair... yes | |
checking if sockaddr has sa_len member... no | |
checking for gethostbyname_r... yes | |
checking gethostbyname_r with 6 args... yes | |
checking for __fpu_control... yes | |
checking for --with-libm=STRING... default LIBM="-lm" | |
checking for --with-libc=STRING... default LIBC="" | |
checking for x64 gcc inline assembler... no | |
checking whether C doubles are little-endian IEEE 754 binary64... no | |
checking whether C doubles are big-endian IEEE 754 binary64... no | |
checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no | |
checking whether we can use gcc inline assembler to get and set x87 control word... no | |
checking whether we can use gcc inline assembler to get and set mc68881 fpcr... no | |
checking for x87-style double rounding... no | |
checking for acosh... yes | |
checking for asinh... yes | |
checking for atanh... yes | |
checking for copysign... yes | |
checking for erf... yes | |
checking for erfc... yes | |
checking for expm1... yes | |
checking for finite... yes | |
checking for gamma... yes | |
checking for hypot... yes | |
checking for lgamma... yes | |
checking for log1p... yes | |
checking for log2... yes | |
checking for round... yes | |
checking for tgamma... yes | |
checking whether isinf is declared... yes | |
checking whether isnan is declared... yes | |
checking whether isfinite is declared... yes | |
checking whether tanh preserves the sign of zero... no | |
checking whether log1p drops the sign of negative zero... no | |
checking whether POSIX semaphores are enabled... yes | |
checking for broken sem_getvalue... yes | |
checking whether RTLD_LAZY is declared... yes | |
checking whether RTLD_NOW is declared... yes | |
checking whether RTLD_GLOBAL is declared... yes | |
checking whether RTLD_LOCAL is declared... yes | |
checking whether RTLD_NODELETE is declared... yes | |
checking whether RTLD_NOLOAD is declared... yes | |
checking whether RTLD_DEEPBIND is declared... yes | |
checking whether RTLD_MEMBER is declared... no | |
checking digit size for Python's longs... no value specified | |
checking wchar.h usability... yes | |
checking wchar.h presence... yes | |
checking for wchar.h... yes | |
checking size of wchar_t... 4 | |
checking for UCS-4 tcl... no | |
checking whether wchar_t is signed... yes | |
checking whether wchar_t is usable... no | |
checking whether byte ordering is bigendian... no | |
checking ABIFLAGS... m | |
checking SOABI... cpython-37m-aarch64-linux-gnu | |
checking LDVERSION... $(VERSION)$(ABIFLAGS) | |
checking whether right shift extends the sign bit... yes | |
checking for getc_unlocked() and friends... yes | |
checking how to link readline libs... -lreadline -lncurses | |
checking for rl_pre_input_hook in -lreadline... yes | |
checking for rl_completion_display_matches_hook in -lreadline... yes | |
checking for rl_resize_terminal in -lreadline... yes | |
checking for rl_completion_matches in -lreadline... yes | |
checking for append_history in -lreadline... yes | |
checking for broken nice()... no | |
checking for broken poll()... no | |
checking for working tzset()... no | |
checking for tv_nsec in struct stat... yes | |
checking for tv_nsec2 in struct stat... no | |
checking curses.h usability... yes | |
checking curses.h presence... yes | |
checking for curses.h... yes | |
checking ncurses.h usability... yes | |
checking ncurses.h presence... yes | |
checking for ncurses.h... yes | |
checking for term.h... yes | |
checking whether mvwdelch is an expression... yes | |
checking whether WINDOW has _flags... yes | |
checking for is_pad... yes | |
checking for is_term_resized... yes | |
checking for resize_term... yes | |
checking for resizeterm... yes | |
checking for immedok... yes | |
checking for syncok... yes | |
checking for wchgat... yes | |
checking for filter... yes | |
checking for has_key... yes | |
checking for typeahead... yes | |
checking for use_env... yes | |
configure: checking for device files | |
checking for /dev/ptmx... (cached) yes | |
checking for /dev/ptc... (cached) no | |
checking for %zd printf() format support... cross -- assuming yes | |
checking for socklen_t... yes | |
checking for broken mbstowcs... no | |
checking for --with-computed-gotos... no value specified | |
checking whether aarch64-rpi3-linux-gnu-gcc supports computed gotos... no | |
checking for build directories... done | |
checking for -O2... yes | |
checking for glibc _FORTIFY_SOURCE/memmove bug... undefined | |
checking for stdatomic.h... yes | |
checking for GCC >= 4.7 __atomic builtins... yes | |
checking for ensurepip... install | |
checking if the dirent structure of a d_type field... yes | |
checking for the Linux getrandom() syscall... yes | |
checking for the getrandom() function... yes | |
checking for aarch64-rpi3-linux-gnu-pkg-config... /usr/bin/pkg-config | |
checking whether compiling and linking against OpenSSL works... yes | |
checking for X509_VERIFY_PARAM_set1_host in libssl... yes | |
checking for --with-ssl-default-suites... python | |
configure: creating ./config.status | |
config.status: creating Makefile.pre | |
config.status: creating Misc/python.pc | |
config.status: creating Misc/python-config.sh | |
config.status: creating Modules/ld_so_aix | |
config.status: creating pyconfig.h | |
creating Modules/Setup | |
creating Modules/Setup.local | |
creating Makefile | |
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by python configure 3.7, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ../configure --enable-ipv6 --enable-shared --with-lto --enable-optimizations --enable-loadable-sqlite-extensions --with-dbmliborder=bdb:gdbm --with-ensurepip=install --build=x86_64-linux-gnu --host=aarch64-rpi3-linux-gnu --prefix=/usr CFLAGS=--sysroot=/home/develop/RPi3-sysroot CPPFLAGS=--sysroot=/home/develop/RPi3-sysroot CXXFLAGS=--sysroot=/home/develop/RPi3-sysroot LDFLAGS=--sysroot=/home/develop/RPi3-sysroot CC=aarch64-rpi3-linux-gnu-gcc CXX=aarch64-rpi3-linux-gnu-g++ LD=aarch64-rpi3-linux-gnu-ld | |
## --------- ## | |
## Platform. ## | |
## --------- ## | |
hostname = 8b9e8bda90bb | |
uname -m = x86_64 | |
uname -r = 5.0.0-25-generic | |
uname -s = Linux | |
uname -v = #26~18.04.1-Ubuntu SMP Thu Aug 1 13:51:02 UTC 2019 | |
/usr/bin/uname -p = unknown | |
/bin/uname -X = unknown | |
/bin/arch = unknown | |
/usr/bin/arch -k = unknown | |
/usr/convex/getsysinfo = unknown | |
/usr/bin/hostinfo = unknown | |
/bin/machine = unknown | |
/usr/bin/oslevel = unknown | |
/bin/universe = unknown | |
PATH: /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin | |
PATH: /home/develop/.local/bin | |
PATH: /usr/local/sbin | |
PATH: /usr/local/bin | |
PATH: /usr/sbin | |
PATH: /usr/bin | |
PATH: /sbin | |
PATH: /bin | |
## ----------- ## | |
## Core tests. ## | |
## ----------- ## | |
configure:2596: loading site script ../config.site | |
| ac_cv_file__dev_ptmx=yes | |
| ac_cv_file__dev_ptc=no | |
configure:2806: checking build system type | |
configure:2820: result: x86_64-pc-linux-gnu | |
configure:2840: checking host system type | |
configure:2853: result: aarch64-rpi3-linux-gnu | |
configure:2883: checking for python3.7 | |
configure:2899: found /usr/local/bin/python3.7 | |
configure:2910: result: python3.7 | |
configure:2925: checking for python interpreter for cross build | |
configure:2938: result: python3.7 | |
configure:3004: checking for --enable-universalsdk | |
configure:3051: result: no | |
configure:3074: checking for --with-universal-archs | |
configure:3089: result: no | |
configure:3245: checking MACHDEP | |
configure:3451: checking for --without-gcc | |
configure:3474: result: no | |
configure:3477: checking for --with-icc | |
configure:3497: result: no | |
configure:3581: checking for aarch64-rpi3-linux-gnu-gcc | |
configure:3608: result: aarch64-rpi3-linux-gnu-gcc | |
configure:3877: checking for C compiler version | |
configure:3886: aarch64-rpi3-linux-gnu-gcc --version >&5 | |
aarch64-rpi3-linux-gnu-gcc (crosstool-NG 1.24.0) 9.1.0 | |
Copyright (C) 2019 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:3897: $? = 0 | |
configure:3886: aarch64-rpi3-linux-gnu-gcc -v >&5 | |
Using built-in specs. | |
COLLECT_GCC=aarch64-rpi3-linux-gnu-gcc | |
COLLECT_LTO_WRAPPER=/home/develop/x-tools/aarch64-rpi3-linux-gnu/libexec/gcc/aarch64-rpi3-linux-gnu/9.1.0/lto-wrapper | |
Target: aarch64-rpi3-linux-gnu | |
Configured with: /home/develop/RPi3/.build/aarch64-rpi3-linux-gnu/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-build_pc-linux-gnu --target=aarch64-rpi3-linux-gnu --prefix=/home/develop/x-tools/aarch64-rpi3-linux-gnu --with-sysroot=/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/sysroot --enable-languages=c,c++ --with-cpu=cortex-a53 --with-pkgversion='crosstool-NG 1.24.0' --enable-__cxa_atexit --disable-libmudflap --disable-libgomp --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libsanitizer --disable-libmpx --with-gmp=/home/develop/RPi3/.build/aarch64-rpi3-linux-gnu/buildtools --with-mpfr=/home/develop/RPi3/.build/aarch64-rpi3-linux-gnu/buildtools --with-mpc=/home/develop/RPi3/.build/aarch64-rpi3-linux-gnu/buildtools --with-isl=/home/develop/RPi3/.build/aarch64-rpi3-linux-gnu/buildtools --enable-lto --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-target-optspace --enable-plugin --enable-gold --disable-nls --disable-multilib --with-local-prefix=/home/develop/x-tools/aarch64-rpi3-linux-gnu/aarch64-rpi3-linux-gnu/sysroot --enable-long-long | |
Thread model: posix | |
gcc version 9.1.0 (crosstool-NG 1.24.0) | |
configure:3897: $? = 0 | |
configure:3886: aarch64-rpi3-linux-gnu-gcc -V >&5 | |
aarch64-rpi3-linux-gnu-gcc: error: unrecognized command line option '-V' | |
aarch64-rpi3-linux-gnu-gcc: fatal error: no input files | |
compilation terminated. | |
configure:3897: $? = 1 | |
configure:3886: aarch64-rpi3-linux-gnu-gcc -qversion >&5 | |
aarch64-rpi3-linux-gnu-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? | |
aarch64-rpi3-linux-gnu-gcc: fatal error: no input files | |
compilation terminated. | |
configure:3897: $? = 1 | |
configure:3917: checking whether the C compiler works | |
configure:3939: aarch64-rpi3-linux-gnu-gcc --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:3943: $? = 0 | |
configure:3991: result: yes | |
configure:3994: checking for C compiler default output file name | |
configure:3996: result: a.out | |
configure:4002: checking for suffix of executables | |
configure:4009: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:4013: $? = 0 | |
configure:4035: result: | |
configure:4057: checking whether we are cross compiling | |
configure:4095: result: yes | |
configure:4100: checking for suffix of object files | |
configure:4122: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:4126: $? = 0 | |
configure:4147: result: o | |
configure:4151: checking whether we are using the GNU C compiler | |
configure:4170: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:4170: $? = 0 | |
configure:4179: result: yes | |
configure:4188: checking whether aarch64-rpi3-linux-gnu-gcc accepts -g | |
configure:4208: aarch64-rpi3-linux-gnu-gcc -c -g --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:4208: $? = 0 | |
configure:4249: result: yes | |
configure:4266: checking for aarch64-rpi3-linux-gnu-gcc option to accept ISO C89 | |
configure:4329: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:4329: $? = 0 | |
configure:4342: result: none needed | |
configure:4367: checking how to run the C preprocessor | |
configure:4398: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:4398: $? = 0 | |
configure:4412: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory | |
11 | #include <ac_nonexistent.h> | |
| ^~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:4412: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| /* end confdefs.h. */ | |
| #include <ac_nonexistent.h> | |
configure:4437: result: aarch64-rpi3-linux-gnu-gcc -E | |
configure:4457: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:4457: $? = 0 | |
configure:4471: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory | |
11 | #include <ac_nonexistent.h> | |
| ^~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:4471: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| /* end confdefs.h. */ | |
| #include <ac_nonexistent.h> | |
configure:4499: checking for grep that handles long lines and -e | |
configure:4557: result: /bin/grep | |
configure:4562: checking for a sed that does not truncate output | |
configure:4626: result: /bin/sed | |
configure:4634: checking for --with-cxx-main=<compiler> | |
configure:4660: result: no | |
configure:5190: checking for the platform triplet based on compiler characteristics | |
configure:5338: result: aarch64-linux-gnu | |
configure:5359: checking for -Wl,--no-as-needed | |
configure:5375: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot -Wl,--no-as-needed conftest.c >&5 | |
configure:5375: $? = 0 | |
configure:5377: result: yes | |
configure:5392: checking for egrep | |
configure:5454: result: /bin/grep -E | |
configure:5459: checking for ANSI C header files | |
configure:5479: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5479: $? = 0 | |
configure:5563: result: yes | |
configure:5576: checking for sys/types.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for sys/stat.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for stdlib.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for string.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for memory.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for strings.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for inttypes.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for stdint.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5576: checking for unistd.h | |
configure:5576: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5576: $? = 0 | |
configure:5576: result: yes | |
configure:5589: checking minix/config.h usability | |
configure:5589: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:54:10: fatal error: minix/config.h: No such file or directory | |
54 | #include <minix/config.h> | |
| ^~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:5589: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <minix/config.h> | |
configure:5589: result: no | |
configure:5589: checking minix/config.h presence | |
configure:5589: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:21:10: fatal error: minix/config.h: No such file or directory | |
21 | #include <minix/config.h> | |
| ^~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:5589: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 | |
| /* end confdefs.h. */ | |
| #include <minix/config.h> | |
configure:5589: result: no | |
configure:5589: checking for minix/config.h | |
configure:5589: result: no | |
configure:5610: checking whether it is safe to define __EXTENSIONS__ | |
configure:5628: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:5628: $? = 0 | |
configure:5635: result: yes | |
configure:5650: checking for the Android API level | |
configure:5685: result: not Android | |
configure:5699: checking for --with-suffix | |
configure:5712: result: | |
configure:5718: checking for case-insensitive build directory | |
configure:5730: result: no | |
configure:5744: checking LIBRARY | |
configure:5750: result: libpython$(VERSION)$(ABIFLAGS).a | |
configure:5792: checking LINKCC | |
configure:5811: result: $(PURIFY) $(MAINCC) | |
configure:5820: checking for GNU ld | |
configure:5832: result: yes | |
configure:5835: checking for --enable-shared | |
configure:5852: result: yes | |
configure:5855: checking for --enable-profiling | |
configure:5880: result: no | |
configure:5888: checking LDLIBRARY | |
configure:5974: result: libpython$(LDVERSION).so | |
configure:5983: checking for aarch64-rpi3-linux-gnu-ar | |
configure:5999: found /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-ar | |
configure:6010: result: aarch64-rpi3-linux-gnu-ar | |
configure:6091: checking for aarch64-rpi3-linux-gnu-readelf | |
configure:6107: found /home/develop/x-tools/aarch64-rpi3-linux-gnu/bin/aarch64-rpi3-linux-gnu-readelf | |
configure:6118: result: aarch64-rpi3-linux-gnu-readelf | |
configure:6218: checking for a BSD-compatible install | |
configure:6286: result: /usr/bin/install -c | |
configure:6297: checking for a thread-safe mkdir -p | |
configure:6336: result: /bin/mkdir -p | |
configure:6354: checking for --with-pydebug | |
configure:6373: result: no | |
configure:6381: checking for --with-assertions | |
configure:6401: result: no | |
configure:6409: checking for --enable-optimizations | |
configure:6417: result: yes | |
configure:6464: checking for --with-lto | |
configure:6473: result: yes | |
configure:6687: checking for -llvm-profdata | |
configure:6720: result: no | |
configure:6937: checking for -Wextra | |
configure:6957: aarch64-rpi3-linux-gnu-gcc -Wextra -Werror -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:6957: $? = 0 | |
configure:6970: result: yes | |
configure:6982: checking whether aarch64-rpi3-linux-gnu-gcc accepts and needs -fno-strict-aliasing | |
configure:7003: aarch64-rpi3-linux-gnu-gcc -fno-strict-aliasing -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7003: $? = 0 | |
configure:7020: aarch64-rpi3-linux-gnu-gcc -fstrict-aliasing -c --sysroot=/home/develop/RPi3-sysroot -Werror -Wstrict-aliasing --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7020: $? = 0 | |
configure:7041: result: no | |
configure:7055: checking if we can turn off aarch64-rpi3-linux-gnu-gcc unused result warning | |
configure:7076: aarch64-rpi3-linux-gnu-gcc -Wunused-result -Werror -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7076: $? = 0 | |
configure:7090: result: yes | |
configure:7101: checking if we can turn off aarch64-rpi3-linux-gnu-gcc unused parameter warning | |
configure:7121: aarch64-rpi3-linux-gnu-gcc -Wunused-parameter -Werror -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7121: $? = 0 | |
configure:7134: result: yes | |
configure:7142: checking if we can turn off aarch64-rpi3-linux-gnu-gcc missing field initializers warning | |
configure:7162: aarch64-rpi3-linux-gnu-gcc -Wmissing-field-initializers -Werror -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7162: $? = 0 | |
configure:7175: result: yes | |
configure:7183: checking if we can turn off aarch64-rpi3-linux-gnu-gcc invalid function cast warning | |
configure:7203: aarch64-rpi3-linux-gnu-gcc -Wcast-function-type -Werror -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7203: $? = 0 | |
configure:7216: result: yes | |
configure:7224: checking if we can turn on aarch64-rpi3-linux-gnu-gcc mixed sign comparison warning | |
configure:7245: aarch64-rpi3-linux-gnu-gcc -Wsign-compare -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7245: $? = 0 | |
configure:7259: result: yes | |
configure:7267: checking if we can turn on aarch64-rpi3-linux-gnu-gcc unreachable code warning | |
configure:7288: aarch64-rpi3-linux-gnu-gcc -Wunreachable-code -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7288: $? = 0 | |
configure:7318: result: no | |
configure:7321: checking if we can turn on aarch64-rpi3-linux-gnu-gcc strict-prototypes warning | |
configure:7341: aarch64-rpi3-linux-gnu-gcc -Werror -Wstrict-prototypes -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:30:1: error: function declaration isn't a prototype [-Werror=strict-prototypes] | |
30 | main () | |
| ^~~~ | |
cc1: all warnings being treated as errors | |
configure:7341: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| /* end confdefs.h. */ | |
| | |
| | |
| int | |
| main () | |
| { | |
| | |
| ; | |
| return 0; | |
| } | |
| | |
configure:7354: result: no | |
configure:7362: checking if we can make implicit function declaration an error in aarch64-rpi3-linux-gnu-gcc | |
configure:7382: aarch64-rpi3-linux-gnu-gcc -Werror=implicit-function-declaration -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7382: $? = 0 | |
configure:7395: result: yes | |
configure:7586: checking whether pthreads are available without options | |
configure:7627: result: no | |
configure:7640: checking whether aarch64-rpi3-linux-gnu-gcc accepts -Kpthread | |
configure:7679: result: no | |
configure:7690: checking whether aarch64-rpi3-linux-gnu-gcc accepts -Kthread | |
configure:7729: result: no | |
configure:7740: checking whether aarch64-rpi3-linux-gnu-gcc accepts -pthread | |
configure:7779: result: no | |
configure:7788: checking whether aarch64-rpi3-linux-gnu-g++ also accepts flags for thread support | |
configure:7819: result: no | |
configure:7826: checking for ANSI C header files | |
configure:7930: result: yes | |
configure:7954: checking asm/types.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking asm/types.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for asm/types.h | |
configure:7954: result: yes | |
configure:7954: checking crypt.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking crypt.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for crypt.h | |
configure:7954: result: yes | |
configure:7954: checking conio.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:63:10: fatal error: conio.h: No such file or directory | |
63 | #include <conio.h> | |
| ^~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <conio.h> | |
configure:7954: result: no | |
configure:7954: checking conio.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:30:10: fatal error: conio.h: No such file or directory | |
30 | #include <conio.h> | |
| ^~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| /* end confdefs.h. */ | |
| #include <conio.h> | |
configure:7954: result: no | |
configure:7954: checking for conio.h | |
configure:7954: result: no | |
configure:7954: checking direct.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:63:10: fatal error: direct.h: No such file or directory | |
63 | #include <direct.h> | |
| ^~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <direct.h> | |
configure:7954: result: no | |
configure:7954: checking direct.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:30:10: fatal error: direct.h: No such file or directory | |
30 | #include <direct.h> | |
| ^~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| /* end confdefs.h. */ | |
| #include <direct.h> | |
configure:7954: result: no | |
configure:7954: checking for direct.h | |
configure:7954: result: no | |
configure:7954: checking dlfcn.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking dlfcn.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for dlfcn.h | |
configure:7954: result: yes | |
configure:7954: checking errno.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking errno.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for errno.h | |
configure:7954: result: yes | |
configure:7954: checking fcntl.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking fcntl.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for fcntl.h | |
configure:7954: result: yes | |
configure:7954: checking grp.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking grp.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for grp.h | |
configure:7954: result: yes | |
configure:7954: checking ieeefp.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:67:10: fatal error: ieeefp.h: No such file or directory | |
67 | #include <ieeefp.h> | |
| ^~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <ieeefp.h> | |
configure:7954: result: no | |
configure:7954: checking ieeefp.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:34:10: fatal error: ieeefp.h: No such file or directory | |
34 | #include <ieeefp.h> | |
| ^~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| /* end confdefs.h. */ | |
| #include <ieeefp.h> | |
configure:7954: result: no | |
configure:7954: checking for ieeefp.h | |
configure:7954: result: no | |
configure:7954: checking io.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:67:10: fatal error: io.h: No such file or directory | |
67 | #include <io.h> | |
| ^~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <io.h> | |
configure:7954: result: no | |
configure:7954: checking io.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:34:10: fatal error: io.h: No such file or directory | |
34 | #include <io.h> | |
| ^~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| /* end confdefs.h. */ | |
| #include <io.h> | |
configure:7954: result: no | |
configure:7954: checking for io.h | |
configure:7954: result: no | |
configure:7954: checking langinfo.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking langinfo.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for langinfo.h | |
configure:7954: result: yes | |
configure:7954: checking libintl.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking libintl.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for libintl.h | |
configure:7954: result: yes | |
configure:7954: checking process.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:69:10: fatal error: process.h: No such file or directory | |
69 | #include <process.h> | |
| ^~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <process.h> | |
configure:7954: result: no | |
configure:7954: checking process.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:36:10: fatal error: process.h: No such file or directory | |
36 | #include <process.h> | |
| ^~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <process.h> | |
configure:7954: result: no | |
configure:7954: checking for process.h | |
configure:7954: result: no | |
configure:7954: checking pthread.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking pthread.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for pthread.h | |
configure:7954: result: yes | |
configure:7954: checking sched.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sched.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sched.h | |
configure:7954: result: yes | |
configure:7954: checking shadow.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking shadow.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for shadow.h | |
configure:7954: result: yes | |
configure:7954: checking signal.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking signal.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for signal.h | |
configure:7954: result: yes | |
configure:7954: checking stropts.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking stropts.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for stropts.h | |
configure:7954: result: yes | |
configure:7954: checking termios.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking termios.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for termios.h | |
configure:7954: result: yes | |
configure:7954: checking for unistd.h | |
configure:7954: result: yes | |
configure:7954: checking utime.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking utime.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for utime.h | |
configure:7954: result: yes | |
configure:7954: checking poll.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking poll.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for poll.h | |
configure:7954: result: yes | |
configure:7954: checking sys/devpoll.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:78:10: fatal error: sys/devpoll.h: No such file or directory | |
78 | #include <sys/devpoll.h> | |
| ^~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/devpoll.h> | |
configure:7954: result: no | |
configure:7954: checking sys/devpoll.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:45:10: fatal error: sys/devpoll.h: No such file or directory | |
45 | #include <sys/devpoll.h> | |
| ^~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/devpoll.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/devpoll.h | |
configure:7954: result: no | |
configure:7954: checking sys/epoll.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/epoll.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/epoll.h | |
configure:7954: result: yes | |
configure:7954: checking sys/poll.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/poll.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/poll.h | |
configure:7954: result: yes | |
configure:7954: checking sys/audioio.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:80:10: fatal error: sys/audioio.h: No such file or directory | |
80 | #include <sys/audioio.h> | |
| ^~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/audioio.h> | |
configure:7954: result: no | |
configure:7954: checking sys/audioio.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:47:10: fatal error: sys/audioio.h: No such file or directory | |
47 | #include <sys/audioio.h> | |
| ^~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/audioio.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/audioio.h | |
configure:7954: result: no | |
configure:7954: checking sys/xattr.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/xattr.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/xattr.h | |
configure:7954: result: yes | |
configure:7954: checking sys/bsdtty.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:81:10: fatal error: sys/bsdtty.h: No such file or directory | |
81 | #include <sys/bsdtty.h> | |
| ^~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/bsdtty.h> | |
configure:7954: result: no | |
configure:7954: checking sys/bsdtty.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:48:10: fatal error: sys/bsdtty.h: No such file or directory | |
48 | #include <sys/bsdtty.h> | |
| ^~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/bsdtty.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/bsdtty.h | |
configure:7954: result: no | |
configure:7954: checking sys/event.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:81:10: fatal error: sys/event.h: No such file or directory | |
81 | #include <sys/event.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/event.h> | |
configure:7954: result: no | |
configure:7954: checking sys/event.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:48:10: fatal error: sys/event.h: No such file or directory | |
48 | #include <sys/event.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/event.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/event.h | |
configure:7954: result: no | |
configure:7954: checking sys/file.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/file.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/file.h | |
configure:7954: result: yes | |
configure:7954: checking sys/ioctl.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/ioctl.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/ioctl.h | |
configure:7954: result: yes | |
configure:7954: checking sys/kern_control.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:83:10: fatal error: sys/kern_control.h: No such file or directory | |
83 | #include <sys/kern_control.h> | |
| ^~~~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/kern_control.h> | |
configure:7954: result: no | |
configure:7954: checking sys/kern_control.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:50:10: fatal error: sys/kern_control.h: No such file or directory | |
50 | #include <sys/kern_control.h> | |
| ^~~~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/kern_control.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/kern_control.h | |
configure:7954: result: no | |
configure:7954: checking sys/loadavg.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:83:10: fatal error: sys/loadavg.h: No such file or directory | |
83 | #include <sys/loadavg.h> | |
| ^~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/loadavg.h> | |
configure:7954: result: no | |
configure:7954: checking sys/loadavg.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:50:10: fatal error: sys/loadavg.h: No such file or directory | |
50 | #include <sys/loadavg.h> | |
| ^~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/loadavg.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/loadavg.h | |
configure:7954: result: no | |
configure:7954: checking sys/lock.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:83:10: fatal error: sys/lock.h: No such file or directory | |
83 | #include <sys/lock.h> | |
| ^~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/lock.h> | |
configure:7954: result: no | |
configure:7954: checking sys/lock.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:50:10: fatal error: sys/lock.h: No such file or directory | |
50 | #include <sys/lock.h> | |
| ^~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/lock.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/lock.h | |
configure:7954: result: no | |
configure:7954: checking sys/mkdev.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:83:10: fatal error: sys/mkdev.h: No such file or directory | |
83 | #include <sys/mkdev.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/mkdev.h> | |
configure:7954: result: no | |
configure:7954: checking sys/mkdev.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:50:10: fatal error: sys/mkdev.h: No such file or directory | |
50 | #include <sys/mkdev.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/mkdev.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/mkdev.h | |
configure:7954: result: no | |
configure:7954: checking sys/modem.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:83:10: fatal error: sys/modem.h: No such file or directory | |
83 | #include <sys/modem.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/modem.h> | |
configure:7954: result: no | |
configure:7954: checking sys/modem.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:50:10: fatal error: sys/modem.h: No such file or directory | |
50 | #include <sys/modem.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/modem.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/modem.h | |
configure:7954: result: no | |
configure:7954: checking sys/param.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/param.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/param.h | |
configure:7954: result: yes | |
configure:7954: checking sys/random.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/random.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/random.h | |
configure:7954: result: yes | |
configure:7954: checking sys/select.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/select.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/select.h | |
configure:7954: result: yes | |
configure:7954: checking sys/sendfile.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/sendfile.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/sendfile.h | |
configure:7954: result: yes | |
configure:7954: checking sys/socket.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/socket.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/socket.h | |
configure:7954: result: yes | |
configure:7954: checking sys/statvfs.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/statvfs.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/statvfs.h | |
configure:7954: result: yes | |
configure:7954: checking for sys/stat.h | |
configure:7954: result: yes | |
configure:7954: checking sys/syscall.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/syscall.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/syscall.h | |
configure:7954: result: yes | |
configure:7954: checking sys/sys_domain.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:91:10: fatal error: sys/sys_domain.h: No such file or directory | |
91 | #include <sys/sys_domain.h> | |
| ^~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/sys_domain.h> | |
configure:7954: result: no | |
configure:7954: checking sys/sys_domain.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:58:10: fatal error: sys/sys_domain.h: No such file or directory | |
58 | #include <sys/sys_domain.h> | |
| ^~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/sys_domain.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/sys_domain.h | |
configure:7954: result: no | |
configure:7954: checking sys/termio.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:91:10: fatal error: sys/termio.h: No such file or directory | |
91 | #include <sys/termio.h> | |
| ^~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/termio.h> | |
configure:7954: result: no | |
configure:7954: checking sys/termio.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:58:10: fatal error: sys/termio.h: No such file or directory | |
58 | #include <sys/termio.h> | |
| ^~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/termio.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/termio.h | |
configure:7954: result: no | |
configure:7954: checking sys/time.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/time.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/time.h | |
configure:7954: result: yes | |
configure:7954: checking sys/times.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/times.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/times.h | |
configure:7954: result: yes | |
configure:7954: checking for sys/types.h | |
configure:7954: result: yes | |
configure:7954: checking sys/uio.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/uio.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/uio.h | |
configure:7954: result: yes | |
configure:7954: checking sys/un.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/un.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/un.h | |
configure:7954: result: yes | |
configure:7954: checking sys/utsname.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/utsname.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/utsname.h | |
configure:7954: result: yes | |
configure:7954: checking sys/wait.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/wait.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/wait.h | |
configure:7954: result: yes | |
configure:7954: checking pty.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking pty.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for pty.h | |
configure:7954: result: yes | |
configure:7954: checking libutil.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:99:10: fatal error: libutil.h: No such file or directory | |
99 | #include <libutil.h> | |
| ^~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <libutil.h> | |
configure:7954: result: no | |
configure:7954: checking libutil.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:66:10: fatal error: libutil.h: No such file or directory | |
66 | #include <libutil.h> | |
| ^~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| /* end confdefs.h. */ | |
| #include <libutil.h> | |
configure:7954: result: no | |
configure:7954: checking for libutil.h | |
configure:7954: result: no | |
configure:7954: checking sys/resource.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/resource.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/resource.h | |
configure:7954: result: yes | |
configure:7954: checking netpacket/packet.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking netpacket/packet.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for netpacket/packet.h | |
configure:7954: result: yes | |
configure:7954: checking sysexits.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sysexits.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sysexits.h | |
configure:7954: result: yes | |
configure:7954: checking bluetooth.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:102:10: fatal error: bluetooth.h: No such file or directory | |
102 | #include <bluetooth.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <bluetooth.h> | |
configure:7954: result: no | |
configure:7954: checking bluetooth.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:69:10: fatal error: bluetooth.h: No such file or directory | |
69 | #include <bluetooth.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| /* end confdefs.h. */ | |
| #include <bluetooth.h> | |
configure:7954: result: no | |
configure:7954: checking for bluetooth.h | |
configure:7954: result: no | |
configure:7954: checking linux/tipc.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking linux/tipc.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for linux/tipc.h | |
configure:7954: result: yes | |
configure:7954: checking linux/random.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking linux/random.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for linux/random.h | |
configure:7954: result: yes | |
configure:7954: checking spawn.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking spawn.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for spawn.h | |
configure:7954: result: yes | |
configure:7954: checking util.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:105:10: fatal error: util.h: No such file or directory | |
105 | #include <util.h> | |
| ^~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <util.h> | |
configure:7954: result: no | |
configure:7954: checking util.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:72:10: fatal error: util.h: No such file or directory | |
72 | #include <util.h> | |
| ^~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| /* end confdefs.h. */ | |
| #include <util.h> | |
configure:7954: result: no | |
configure:7954: checking for util.h | |
configure:7954: result: no | |
configure:7954: checking alloca.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking alloca.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for alloca.h | |
configure:7954: result: yes | |
configure:7954: checking endian.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking endian.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for endian.h | |
configure:7954: result: yes | |
configure:7954: checking sys/endian.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:107:10: fatal error: sys/endian.h: No such file or directory | |
107 | #include <sys/endian.h> | |
| ^~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <sys/endian.h> | |
configure:7954: result: no | |
configure:7954: checking sys/endian.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:74:10: fatal error: sys/endian.h: No such file or directory | |
74 | #include <sys/endian.h> | |
| ^~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:7954: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| /* end confdefs.h. */ | |
| #include <sys/endian.h> | |
configure:7954: result: no | |
configure:7954: checking for sys/endian.h | |
configure:7954: result: no | |
configure:7954: checking sys/sysmacros.h usability | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking sys/sysmacros.h presence | |
configure:7954: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:7954: $? = 0 | |
configure:7954: result: yes | |
configure:7954: checking for sys/sysmacros.h | |
configure:7954: result: yes | |
configure:7967: checking for dirent.h that defines DIR | |
configure:7986: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:7986: $? = 0 | |
configure:7994: result: yes | |
configure:8007: checking for library containing opendir | |
configure:8038: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8038: $? = 0 | |
configure:8055: result: none required | |
configure:8122: checking whether sys/types.h defines makedev | |
configure:8138: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:80:13: warning: In the GNU C Library, "makedev" is defined | |
by <sys/sysmacros.h>. For historical compatibility, it is | |
currently defined by <sys/types.h> as well, but we plan to | |
remove this soon. To use "makedev", include <sys/sysmacros.h> | |
directly. If you did not intend to use a system-defined macro | |
"makedev", you should undefine it after including <sys/types.h>. | |
80 | return makedev(0, 0); | |
| ^~~~~~~~~ | |
configure:8138: $? = 0 | |
configure:8147: result: yes | |
configure:8179: checking bluetooth/bluetooth.h usability | |
configure:8179: aarch64-rpi3-linux-gnu-gcc -c -std=c99 --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:109:10: fatal error: bluetooth/bluetooth.h: No such file or directory | |
109 | #include <bluetooth/bluetooth.h> | |
| ^~~~~~~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:8179: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| #include <bluetooth/bluetooth.h> | |
configure:8179: result: no | |
configure:8179: checking bluetooth/bluetooth.h presence | |
configure:8179: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
conftest.c:76:10: fatal error: bluetooth/bluetooth.h: No such file or directory | |
76 | #include <bluetooth/bluetooth.h> | |
| ^~~~~~~~~~~~~~~~~~~~~~~ | |
compilation terminated. | |
configure:8179: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| /* end confdefs.h. */ | |
| #include <bluetooth/bluetooth.h> | |
configure:8179: result: no | |
configure:8179: checking for bluetooth/bluetooth.h | |
configure:8179: result: no | |
configure:8194: checking for net/if.h | |
configure:8194: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8194: $? = 0 | |
configure:8194: result: yes | |
configure:8221: checking for linux/netlink.h | |
configure:8221: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8221: $? = 0 | |
configure:8221: result: yes | |
configure:8242: checking for linux/vm_sockets.h | |
configure:8242: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8242: $? = 0 | |
configure:8242: result: yes | |
configure:8262: checking for linux/can.h | |
configure:8262: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8262: $? = 0 | |
configure:8262: result: yes | |
configure:8262: checking for linux/can/raw.h | |
configure:8262: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8262: $? = 0 | |
configure:8262: result: yes | |
configure:8262: checking for linux/can/bcm.h | |
configure:8262: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8262: $? = 0 | |
configure:8262: result: yes | |
configure:8280: checking for clock_t in time.h | |
configure:8299: result: yes | |
configure:8302: checking for makedev | |
configure:8325: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:95:13: warning: In the GNU C Library, "makedev" is defined | |
by <sys/sysmacros.h>. For historical compatibility, it is | |
currently defined by <sys/types.h> as well, but we plan to | |
remove this soon. To use "makedev", include <sys/sysmacros.h> | |
directly. If you did not intend to use a system-defined macro | |
"makedev", you should undefine it after including <sys/types.h>. | |
95 | makedev(0, 0) | |
| ^~~ | |
configure:8325: $? = 0 | |
configure:8332: result: yes | |
configure:8341: checking for le64toh | |
configure:8362: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8362: $? = 0 | |
configure:8369: result: yes | |
configure:8409: checking for mode_t | |
configure:8409: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8409: $? = 0 | |
configure:8409: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:125:21: error: expected expression before ')' token | |
125 | if (sizeof ((mode_t))) | |
| ^ | |
configure:8409: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((mode_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:8409: result: yes | |
configure:8420: checking for off_t | |
configure:8420: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8420: $? = 0 | |
configure:8420: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:125:20: error: expected expression before ')' token | |
125 | if (sizeof ((off_t))) | |
| ^ | |
configure:8420: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((off_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:8420: result: yes | |
configure:8431: checking for pid_t | |
configure:8431: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8431: $? = 0 | |
configure:8431: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:125:20: error: expected expression before ')' token | |
125 | if (sizeof ((pid_t))) | |
| ^ | |
configure:8431: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((pid_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:8431: result: yes | |
configure:8447: checking for size_t | |
configure:8447: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8447: $? = 0 | |
configure:8447: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:126:21: error: expected expression before ')' token | |
126 | if (sizeof ((size_t))) | |
| ^ | |
configure:8447: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((size_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:8447: result: yes | |
configure:8458: checking for uid_t in sys/types.h | |
configure:8477: result: yes | |
configure:8489: checking for ssize_t | |
configure:8489: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8489: $? = 0 | |
configure:8489: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:126:22: error: expected expression before ')' token | |
126 | if (sizeof ((ssize_t))) | |
| ^ | |
configure:8489: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((ssize_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:8489: result: yes | |
configure:8496: checking for __uint128_t | |
configure:8496: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8496: $? = 0 | |
configure:8496: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:127:26: error: expected expression before ')' token | |
127 | if (sizeof ((__uint128_t))) | |
| ^ | |
configure:8496: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| if (sizeof ((__uint128_t))) | |
| return 0; | |
| ; | |
| return 0; | |
| } | |
configure:8496: result: yes | |
configure:8510: checking size of int | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8515: $? = 0 | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:128:12: error: size of array 'test_array' is negative | |
128 | static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8515: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:128:12: error: size of array 'test_array' is negative | |
128 | static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8515: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:128:12: error: size of array 'test_array' is negative | |
128 | static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8515: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8515: $? = 0 | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8515: $? = 0 | |
configure:8515: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8515: $? = 0 | |
configure:8529: result: 4 | |
configure:8543: checking size of long | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8548: $? = 0 | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:129:12: error: size of array 'test_array' is negative | |
129 | static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8548: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:129:12: error: size of array 'test_array' is negative | |
129 | static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8548: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:129:12: error: size of array 'test_array' is negative | |
129 | static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8548: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:129:12: error: size of array 'test_array' is negative | |
129 | static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8548: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8548: $? = 0 | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8548: $? = 0 | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8548: $? = 0 | |
configure:8548: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8548: $? = 0 | |
configure:8562: result: 8 | |
configure:8576: checking size of long long | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8581: $? = 0 | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:130:12: error: size of array 'test_array' is negative | |
130 | static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8581: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:130:12: error: size of array 'test_array' is negative | |
130 | static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8581: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:130:12: error: size of array 'test_array' is negative | |
130 | static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8581: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:130:12: error: size of array 'test_array' is negative | |
130 | static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8581: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long long))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8581: $? = 0 | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8581: $? = 0 | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8581: $? = 0 | |
configure:8581: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8581: $? = 0 | |
configure:8595: result: 8 | |
configure:8609: checking size of void * | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8614: $? = 0 | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:131:12: error: size of array 'test_array' is negative | |
131 | static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8614: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:131:12: error: size of array 'test_array' is negative | |
131 | static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8614: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:131:12: error: size of array 'test_array' is negative | |
131 | static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8614: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:131:12: error: size of array 'test_array' is negative | |
131 | static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8614: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (void *))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8614: $? = 0 | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8614: $? = 0 | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8614: $? = 0 | |
configure:8614: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8614: $? = 0 | |
configure:8628: result: 8 | |
configure:8642: checking size of short | |
configure:8647: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8647: $? = 0 | |
configure:8647: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:132:12: error: size of array 'test_array' is negative | |
132 | static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8647: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8647: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:132:12: error: size of array 'test_array' is negative | |
132 | static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8647: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8647: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8647: $? = 0 | |
configure:8647: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8647: $? = 0 | |
configure:8661: result: 2 | |
configure:8675: checking size of float | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8680: $? = 0 | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:133:12: error: size of array 'test_array' is negative | |
133 | static int test_array [1 - 2 * !(((long int) (sizeof (float))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8680: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (float))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:133:12: error: size of array 'test_array' is negative | |
133 | static int test_array [1 - 2 * !(((long int) (sizeof (float))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8680: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (float))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:133:12: error: size of array 'test_array' is negative | |
133 | static int test_array [1 - 2 * !(((long int) (sizeof (float))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8680: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (float))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8680: $? = 0 | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8680: $? = 0 | |
configure:8680: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8680: $? = 0 | |
configure:8694: result: 4 | |
configure:8708: checking size of double | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8713: $? = 0 | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:134:12: error: size of array 'test_array' is negative | |
134 | static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8713: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:134:12: error: size of array 'test_array' is negative | |
134 | static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8713: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:134:12: error: size of array 'test_array' is negative | |
134 | static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8713: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:134:12: error: size of array 'test_array' is negative | |
134 | static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8713: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (double))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8713: $? = 0 | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8713: $? = 0 | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8713: $? = 0 | |
configure:8713: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8713: $? = 0 | |
configure:8727: result: 8 | |
configure:8741: checking size of fpos_t | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8746: $? = 0 | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:135:12: error: size of array 'test_array' is negative | |
135 | static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8746: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:135:12: error: size of array 'test_array' is negative | |
135 | static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8746: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:135:12: error: size of array 'test_array' is negative | |
135 | static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8746: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:135:12: error: size of array 'test_array' is negative | |
135 | static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8746: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:135:12: error: size of array 'test_array' is negative | |
135 | static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 15)]; | |
| ^~~~~~~~~~ | |
configure:8746: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (fpos_t))) <= 15)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8746: $? = 0 | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8746: $? = 0 | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8746: $? = 0 | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8746: $? = 0 | |
configure:8746: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8746: $? = 0 | |
configure:8760: result: 16 | |
configure:8774: checking size of size_t | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8779: $? = 0 | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:136:12: error: size of array 'test_array' is negative | |
136 | static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8779: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:136:12: error: size of array 'test_array' is negative | |
136 | static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8779: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:136:12: error: size of array 'test_array' is negative | |
136 | static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8779: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:136:12: error: size of array 'test_array' is negative | |
136 | static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8779: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8779: $? = 0 | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8779: $? = 0 | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8779: $? = 0 | |
configure:8779: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8779: $? = 0 | |
configure:8793: result: 8 | |
configure:8807: checking size of pid_t | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8812: $? = 0 | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:137:12: error: size of array 'test_array' is negative | |
137 | static int test_array [1 - 2 * !(((long int) (sizeof (pid_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8812: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pid_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:137:12: error: size of array 'test_array' is negative | |
137 | static int test_array [1 - 2 * !(((long int) (sizeof (pid_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8812: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pid_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:137:12: error: size of array 'test_array' is negative | |
137 | static int test_array [1 - 2 * !(((long int) (sizeof (pid_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8812: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pid_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8812: $? = 0 | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8812: $? = 0 | |
configure:8812: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8812: $? = 0 | |
configure:8826: result: 4 | |
configure:8840: checking size of uintptr_t | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8845: $? = 0 | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:138:12: error: size of array 'test_array' is negative | |
138 | static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8845: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:138:12: error: size of array 'test_array' is negative | |
138 | static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8845: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:138:12: error: size of array 'test_array' is negative | |
138 | static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8845: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:138:12: error: size of array 'test_array' is negative | |
138 | static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8845: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (uintptr_t))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8845: $? = 0 | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8845: $? = 0 | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8845: $? = 0 | |
configure:8845: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8845: $? = 0 | |
configure:8859: result: 8 | |
configure:8870: checking for long double support | |
configure:8884: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8884: $? = 0 | |
configure:8893: result: yes | |
configure:8900: checking size of long double | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8905: $? = 0 | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:140:12: error: size of array 'test_array' is negative | |
140 | static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8905: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:140:12: error: size of array 'test_array' is negative | |
140 | static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8905: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:140:12: error: size of array 'test_array' is negative | |
140 | static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8905: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:140:12: error: size of array 'test_array' is negative | |
140 | static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8905: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:140:12: error: size of array 'test_array' is negative | |
140 | static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 15)]; | |
| ^~~~~~~~~~ | |
configure:8905: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (long double))) <= 15)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8905: $? = 0 | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8905: $? = 0 | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8905: $? = 0 | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8905: $? = 0 | |
configure:8905: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8905: $? = 0 | |
configure:8919: result: 16 | |
configure:8935: checking size of _Bool | |
configure:8940: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8940: $? = 0 | |
configure:8940: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:141:12: error: size of array 'test_array' is negative | |
141 | static int test_array [1 - 2 * !(((long int) (sizeof (_Bool))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8940: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| /* end confdefs.h. */ | |
| #include <stdio.h> | |
| #ifdef HAVE_SYS_TYPES_H | |
| # include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_SYS_STAT_H | |
| # include <sys/stat.h> | |
| #endif | |
| #ifdef STDC_HEADERS | |
| # include <stdlib.h> | |
| # include <stddef.h> | |
| #else | |
| # ifdef HAVE_STDLIB_H | |
| # include <stdlib.h> | |
| # endif | |
| #endif | |
| #ifdef HAVE_STRING_H | |
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
| # include <memory.h> | |
| # endif | |
| # include <string.h> | |
| #endif | |
| #ifdef HAVE_STRINGS_H | |
| # include <strings.h> | |
| #endif | |
| #ifdef HAVE_INTTYPES_H | |
| # include <inttypes.h> | |
| #endif | |
| #ifdef HAVE_STDINT_H | |
| # include <stdint.h> | |
| #endif | |
| #ifdef HAVE_UNISTD_H | |
| # include <unistd.h> | |
| #endif | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (_Bool))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8940: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8940: $? = 0 | |
configure:8954: result: 1 | |
configure:8969: checking size of off_t | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8974: $? = 0 | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:115:12: error: size of array 'test_array' is negative | |
115 | static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:8974: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:115:12: error: size of array 'test_array' is negative | |
115 | static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:8974: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:115:12: error: size of array 'test_array' is negative | |
115 | static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:8974: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:115:12: error: size of array 'test_array' is negative | |
115 | static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:8974: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (off_t))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8974: $? = 0 | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8974: $? = 0 | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8974: $? = 0 | |
configure:8974: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:8974: $? = 0 | |
configure:8993: result: 8 | |
configure:9004: checking whether to enable large file support | |
configure:9014: result: no | |
configure:9022: checking size of time_t | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9027: $? = 0 | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:119:12: error: size of array 'test_array' is negative | |
119 | static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:9027: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_TIME_H | |
| #include <time.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:119:12: error: size of array 'test_array' is negative | |
119 | static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:9027: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_TIME_H | |
| #include <time.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:119:12: error: size of array 'test_array' is negative | |
119 | static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:9027: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_TIME_H | |
| #include <time.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:119:12: error: size of array 'test_array' is negative | |
119 | static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:9027: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_SYS_TYPES_H | |
| #include <sys/types.h> | |
| #endif | |
| #ifdef HAVE_TIME_H | |
| #include <time.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (time_t))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9027: $? = 0 | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9027: $? = 0 | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9027: $? = 0 | |
configure:9027: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9027: $? = 0 | |
configure:9049: result: 8 | |
configure:9070: checking for pthread_t | |
configure:9086: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9086: $? = 0 | |
configure:9090: result: yes | |
configure:9097: checking size of pthread_t | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9102: $? = 0 | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:117:12: error: size of array 'test_array' is negative | |
117 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:9102: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_PTHREAD_H | |
| #include <pthread.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:117:12: error: size of array 'test_array' is negative | |
117 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:9102: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_PTHREAD_H | |
| #include <pthread.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:117:12: error: size of array 'test_array' is negative | |
117 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:9102: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_PTHREAD_H | |
| #include <pthread.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:117:12: error: size of array 'test_array' is negative | |
117 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 7)]; | |
| ^~~~~~~~~~ | |
configure:9102: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| /* end confdefs.h. */ | |
| | |
| #ifdef HAVE_PTHREAD_H | |
| #include <pthread.h> | |
| #endif | |
| | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_t))) <= 7)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9102: $? = 0 | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9102: $? = 0 | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9102: $? = 0 | |
configure:9102: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9102: $? = 0 | |
configure:9121: result: 8 | |
configure:9139: checking size of pthread_key_t | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9144: $? = 0 | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:114:12: error: size of array 'test_array' is negative | |
114 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_key_t))) <= 0)]; | |
| ^~~~~~~~~~ | |
configure:9144: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| /* end confdefs.h. */ | |
| #include <pthread.h> | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_key_t))) <= 0)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:114:12: error: size of array 'test_array' is negative | |
114 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_key_t))) <= 1)]; | |
| ^~~~~~~~~~ | |
configure:9144: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| /* end confdefs.h. */ | |
| #include <pthread.h> | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_key_t))) <= 1)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:114:12: error: size of array 'test_array' is negative | |
114 | static int test_array [1 - 2 * !(((long int) (sizeof (pthread_key_t))) <= 3)]; | |
| ^~~~~~~~~~ | |
configure:9144: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| /* end confdefs.h. */ | |
| #include <pthread.h> | |
| | |
| int | |
| main () | |
| { | |
| static int test_array [1 - 2 * !(((long int) (sizeof (pthread_key_t))) <= 3)]; | |
| test_array [0] = 0; | |
| return test_array [0]; | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9144: $? = 0 | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9144: $? = 0 | |
configure:9144: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9144: $? = 0 | |
configure:9159: result: 4 | |
configure:9169: checking whether pthread_key_t is compatible with int | |
configure:9183: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9183: $? = 0 | |
configure:9190: result: yes | |
configure:9291: checking for --enable-framework | |
configure:9308: result: no | |
configure:9312: checking for dyld | |
configure:9323: result: no | |
configure:9338: checking the extension of shared libraries | |
configure:9352: result: .so | |
configure:9359: checking LDSHARED | |
configure:9490: result: $(CC) -shared | |
configure:9496: checking CCSHARED | |
configure:9526: result: -fPIC | |
configure:9530: checking LINKFORSHARED | |
configure:9584: result: -Xlinker -export-dynamic | |
configure:9589: checking CFLAGSFORSHARED | |
configure:9602: result: $(CCSHARED) | |
configure:9614: checking SHLIBS | |
configure:9620: result: $(LIBS) | |
configure:9625: checking for sendfile in -lsendfile | |
configure:9650: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lsendfile >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: cannot find -lsendfile | |
collect2: error: ld returned 1 exit status | |
configure:9650: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char sendfile (); | |
| int | |
| main () | |
| { | |
| return sendfile (); | |
| ; | |
| return 0; | |
| } | |
configure:9659: result: no | |
configure:9670: checking for dlopen in -ldl | |
configure:9695: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -ldl >&5 | |
configure:9695: $? = 0 | |
configure:9704: result: yes | |
configure:9715: checking for shl_load in -ldld | |
configure:9740: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -ldld -ldl >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: cannot find -ldld | |
collect2: error: ld returned 1 exit status | |
configure:9740: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char shl_load (); | |
| int | |
| main () | |
| { | |
| return shl_load (); | |
| ; | |
| return 0; | |
| } | |
configure:9749: result: no | |
configure:9765: checking uuid/uuid.h usability | |
configure:9765: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9765: $? = 0 | |
configure:9765: result: yes | |
configure:9765: checking uuid/uuid.h presence | |
configure:9765: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:9765: $? = 0 | |
configure:9765: result: yes | |
configure:9765: checking for uuid/uuid.h | |
configure:9765: result: yes | |
configure:9765: checking uuid.h usability | |
configure:9765: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9765: $? = 0 | |
configure:9765: result: yes | |
configure:9765: checking uuid.h presence | |
configure:9765: aarch64-rpi3-linux-gnu-gcc -E --sysroot=/home/develop/RPi3-sysroot conftest.c | |
configure:9765: $? = 0 | |
configure:9765: result: yes | |
configure:9765: checking for uuid.h | |
configure:9765: result: yes | |
configure:9776: checking for uuid_generate_time_safe | |
configure:9793: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:9793: $? = 0 | |
configure:9797: result: yes | |
configure:9808: checking for uuid_create | |
configure:9825: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:121:11: error: 'uuid_create' undeclared (first use in this function); did you mean 'uuid_clear'? | |
121 | void *x = uuid_create | |
| ^~~~~~~~~~~ | |
| uuid_clear | |
conftest.c:121:11: note: each undeclared identifier is reported only once for each function it appears in | |
configure:9825: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| /* end confdefs.h. */ | |
| #include <uuid.h> | |
| int | |
| main () | |
| { | |
| | |
| #ifndef uuid_create | |
| void *x = uuid_create | |
| #endif | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9832: result: no | |
configure:9840: checking for uuid_enc_be | |
configure:9857: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:121:11: error: 'uuid_enc_be' undeclared (first use in this function) | |
121 | void *x = uuid_enc_be | |
| ^~~~~~~~~~~ | |
conftest.c:121:11: note: each undeclared identifier is reported only once for each function it appears in | |
configure:9857: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| /* end confdefs.h. */ | |
| #include <uuid.h> | |
| int | |
| main () | |
| { | |
| | |
| #ifndef uuid_enc_be | |
| void *x = uuid_enc_be | |
| #endif | |
| | |
| ; | |
| return 0; | |
| } | |
configure:9864: result: no | |
configure:9873: checking for library containing sem_init | |
configure:9904: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -ldl >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccZAwPn9.o: in function `main': | |
conftest.c:(.text+0x8): undefined reference to `sem_init' | |
collect2: error: ld returned 1 exit status | |
configure:9904: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char sem_init (); | |
| int | |
| main () | |
| { | |
| return sem_init (); | |
| ; | |
| return 0; | |
| } | |
configure:9904: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl >&5 | |
configure:9904: $? = 0 | |
configure:9921: result: -lpthread | |
configure:9931: checking for textdomain in -lintl | |
configure:9956: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lintl -lpthread -ldl >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: cannot find -lintl | |
collect2: error: ld returned 1 exit status | |
configure:9956: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char textdomain (); | |
| int | |
| main () | |
| { | |
| return textdomain (); | |
| ; | |
| return 0; | |
| } | |
configure:9965: result: no | |
configure:10012: checking aligned memory access is required | |
configure:10048: result: yes | |
configure:10059: checking for --with-hash-algorithm | |
configure:10082: result: default | |
configure:10087: checking for --with-address-sanitizer | |
configure:10101: result: no | |
configure:10106: checking for --with-memory-sanitizer | |
configure:10120: result: no | |
configure:10125: checking for --with-undefined-behavior-sanitizer | |
configure:10137: result: no | |
configure:10143: checking for t_open in -lnsl | |
configure:10168: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lnsl -lpthread -ldl >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: cannot find -lnsl | |
collect2: error: ld returned 1 exit status | |
configure:10168: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char t_open (); | |
| int | |
| main () | |
| { | |
| return t_open (); | |
| ; | |
| return 0; | |
| } | |
configure:10177: result: no | |
configure:10183: checking for socket in -lsocket | |
configure:10208: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lsocket -lpthread -ldl -lpthread -ldl >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: cannot find -lsocket | |
collect2: error: ld returned 1 exit status | |
configure:10208: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char socket (); | |
| int | |
| main () | |
| { | |
| return socket (); | |
| ; | |
| return 0; | |
| } | |
configure:10217: result: no | |
configure:10224: checking for --with-libs | |
configure:10235: result: no | |
configure:10251: checking for aarch64-rpi3-linux-gnu-pkg-config | |
configure:10284: result: no | |
configure:10294: checking for pkg-config | |
configure:10312: found /usr/bin/pkg-config | |
configure:10324: result: /usr/bin/pkg-config | |
configure:10336: WARNING: using cross tools not prefixed with host triplet | |
configure:10349: checking pkg-config is at least version 0.9.0 | |
configure:10352: result: yes | |
configure:10362: checking for --with-system-expat | |
configure:10373: result: no | |
configure:10377: checking for --with-system-ffi | |
configure:10401: result: yes | |
configure:10419: checking for --with-system-libmpdec | |
configure:10430: result: no | |
configure:10434: checking for --enable-loadable-sqlite-extensions | |
configure:10444: result: yes | |
configure:10450: checking for --with-tcltk-includes | |
configure:10460: result: default | |
configure:10462: checking for --with-tcltk-libs | |
configure:10472: result: default | |
configure:10488: checking for --with-dbmliborder | |
configure:10507: result: bdb:gdbm | |
configure:10551: checking for _POSIX_THREADS in unistd.h | |
configure:10570: result: yes | |
configure:10580: checking for pthread_create in -lpthread | |
configure:10598: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
conftest.c: In function 'start_routine': | |
conftest.c:121:36: warning: implicit declaration of function 'exit' [-Wimplicit-function-declaration] | |
121 | void * start_routine (void *arg) { exit (0); } | |
| ^~~~ | |
conftest.c:121:36: warning: incompatible implicit declaration of built-in function 'exit' | |
conftest.c:120:1: note: include '<stdlib.h>' or provide a declaration of 'exit' | |
119 | #include <pthread.h> | |
120 | | |
configure:10598: $? = 0 | |
configure:10600: result: yes | |
configure:10803: checking for usconfig in -lmpc | |
configure:10828: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lmpc -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: cannot find -lmpc | |
collect2: error: ld returned 1 exit status | |
configure:10828: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| /* end confdefs.h. */ | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char usconfig (); | |
| int | |
| main () | |
| { | |
| return usconfig (); | |
| ; | |
| return 0; | |
| } | |
configure:10837: result: no | |
configure:10871: checking if PTHREAD_SCOPE_SYSTEM is supported | |
configure:10908: result: no | |
configure:10917: checking for pthread_sigmask | |
configure:10917: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:10917: $? = 0 | |
configure:10917: result: yes | |
configure:10934: checking for pthread_getcpuclockid | |
configure:10934: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:10934: $? = 0 | |
configure:10934: result: yes | |
configure:10948: checking if --enable-ipv6 is specified | |
configure:10958: result: yes | |
configure:11042: checking ipv6 stack type | |
configure:11175: result: linux-glibc | |
configure:11195: checking for CAN_RAW_FD_FRAMES | |
configure:11209: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11209: $? = 0 | |
configure:11214: result: yes | |
configure:11226: checking for --with-doc-strings | |
configure:11244: result: yes | |
configure:11248: checking for --with-pymalloc | |
configure:11268: result: yes | |
configure:11272: checking for --with-c-locale-coercion | |
configure:11291: result: yes | |
configure:11295: checking for --with-valgrind | |
configure:11305: result: no | |
configure:11323: checking for --with-dtrace | |
configure:11333: result: no | |
configure:11426: checking for dlopen | |
configure:11426: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11426: $? = 0 | |
configure:11426: result: yes | |
configure:11439: checking DYNLOADFILE | |
configure:11461: result: dynload_shlib.o | |
configure:11473: checking MACHDEP_OBJS | |
configure:11482: result: none | |
configure:11514: checking for alarm | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for accept4 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setitimer | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getitimer | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for bind_textdomain_codeset | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for chown | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for clock | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for confstr | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for ctermid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for dup3 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for execv | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
conftest.c:159:6: warning: conflicting types for built-in function 'execv'; expected 'int(const char *, char * const*)' [-Wbuiltin-declaration-mismatch] | |
159 | char execv (); | |
| ^~~~~ | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for faccessat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fchmod | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fchmodat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fchown | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fchownat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fexecve | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fdopendir | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fork | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
conftest.c:167:6: warning: conflicting types for built-in function 'fork'; expected 'int(void)' [-Wbuiltin-declaration-mismatch] | |
167 | char fork (); | |
| ^~~~ | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fpathconf | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for fstatat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for ftime | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for ftruncate | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for futimesat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for futimens | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for futimes | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for gai_strerror | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getentropy | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getgrouplist | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getgroups | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getlogin | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getloadavg | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getpeername | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getpgid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getpid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getpriority | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getresuid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getresgid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getpwent | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getspnam | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getspent | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getsid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for getwd | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccwMfvO1.o: in function `main': | |
conftest.c:(.text+0x8): warning: the `getwd' function is dangerous and should not be used. | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for if_nameindex | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for initgroups | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for kill | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for killpg | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for lchown | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for lockf | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for linkat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for lstat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for lutimes | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mmap | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for memrchr | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mbrtowc | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mkdirat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mkfifo | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mkfifoat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mknod | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mknodat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mktime | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for mremap | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for nice | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for openat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pathconf | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pause | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pipe2 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for plock | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccRil8Wm.o: in function `main': | |
conftest.c:(.text+0x8): undefined reference to `plock' | |
collect2: error: ld returned 1 exit status | |
configure:11514: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| /* end confdefs.h. */ | |
| /* Define plock to an innocuous variant, in case <limits.h> declares plock. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define plock innocuous_plock | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char plock (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef plock | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char plock (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_plock || defined __stub___plock | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return plock (); | |
| ; | |
| return 0; | |
| } | |
configure:11514: result: no | |
configure:11514: checking for poll | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for posix_fallocate | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for posix_fadvise | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for posix_spawn | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pread | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for preadv | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for preadv2 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pthread_init | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccJg6XHV.o: in function `main': | |
conftest.c:(.text+0x8): undefined reference to `pthread_init' | |
collect2: error: ld returned 1 exit status | |
configure:11514: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| #define HAVE_POLL 1 | |
| #define HAVE_POSIX_FALLOCATE 1 | |
| #define HAVE_POSIX_FADVISE 1 | |
| #define HAVE_POSIX_SPAWN 1 | |
| #define HAVE_PREAD 1 | |
| #define HAVE_PREADV 1 | |
| #define HAVE_PREADV2 1 | |
| /* end confdefs.h. */ | |
| /* Define pthread_init to an innocuous variant, in case <limits.h> declares pthread_init. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define pthread_init innocuous_pthread_init | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char pthread_init (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef pthread_init | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char pthread_init (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_pthread_init || defined __stub___pthread_init | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return pthread_init (); | |
| ; | |
| return 0; | |
| } | |
configure:11514: result: no | |
configure:11514: checking for pthread_kill | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for putenv | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pwrite | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pwritev | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for pwritev2 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for readlink | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for readlinkat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for readv | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for realpath | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for renameat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sem_open | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sem_timedwait | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sem_getvalue | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sem_unlink | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sendfile | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setegid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for seteuid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setgid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sethostname | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setlocale | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setregid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setreuid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setresuid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setresgid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setsid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setpgid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setpgrp | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setpriority | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setuid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for setvbuf | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sched_get_priority_max | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sched_setaffinity | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sched_setscheduler | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sched_setparam | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sched_rr_get_interval | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigaction | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigaltstack | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for siginterrupt | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigpending | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigrelse | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigtimedwait | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigwait | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sigwaitinfo | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for snprintf | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
conftest.c:266:6: warning: conflicting types for built-in function 'snprintf'; expected 'int(char *, long unsigned int, const char *, ...)' [-Wbuiltin-declaration-mismatch] | |
266 | char snprintf (); | |
| ^~~~~~~~ | |
conftest.c:254:1: note: 'snprintf' is declared in header '<stdio.h>' | |
253 | # include <limits.h> | |
254 | #else | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for strftime | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
conftest.c:267:6: warning: conflicting types for built-in function 'strftime'; expected 'long unsigned int(char *, long unsigned int, const char *, const void *)' [-Wbuiltin-declaration-mismatch] | |
267 | char strftime (); | |
| ^~~~~~~~ | |
conftest.c:255:1: note: 'strftime' is declared in header '<time.h>' | |
254 | # include <limits.h> | |
255 | #else | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for strlcpy | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccIjkGBG.o: in function `main': | |
conftest.c:(.text+0x8): undefined reference to `strlcpy' | |
collect2: error: ld returned 1 exit status | |
configure:11514: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| #define HAVE_POLL 1 | |
| #define HAVE_POSIX_FALLOCATE 1 | |
| #define HAVE_POSIX_FADVISE 1 | |
| #define HAVE_POSIX_SPAWN 1 | |
| #define HAVE_PREAD 1 | |
| #define HAVE_PREADV 1 | |
| #define HAVE_PREADV2 1 | |
| #define HAVE_PTHREAD_KILL 1 | |
| #define HAVE_PUTENV 1 | |
| #define HAVE_PWRITE 1 | |
| #define HAVE_PWRITEV 1 | |
| #define HAVE_PWRITEV2 1 | |
| #define HAVE_READLINK 1 | |
| #define HAVE_READLINKAT 1 | |
| #define HAVE_READV 1 | |
| #define HAVE_REALPATH 1 | |
| #define HAVE_RENAMEAT 1 | |
| #define HAVE_SEM_OPEN 1 | |
| #define HAVE_SEM_TIMEDWAIT 1 | |
| #define HAVE_SEM_GETVALUE 1 | |
| #define HAVE_SEM_UNLINK 1 | |
| #define HAVE_SENDFILE 1 | |
| #define HAVE_SETEGID 1 | |
| #define HAVE_SETEUID 1 | |
| #define HAVE_SETGID 1 | |
| #define HAVE_SETHOSTNAME 1 | |
| #define HAVE_SETLOCALE 1 | |
| #define HAVE_SETREGID 1 | |
| #define HAVE_SETREUID 1 | |
| #define HAVE_SETRESUID 1 | |
| #define HAVE_SETRESGID 1 | |
| #define HAVE_SETSID 1 | |
| #define HAVE_SETPGID 1 | |
| #define HAVE_SETPGRP 1 | |
| #define HAVE_SETPRIORITY 1 | |
| #define HAVE_SETUID 1 | |
| #define HAVE_SETVBUF 1 | |
| #define HAVE_SCHED_GET_PRIORITY_MAX 1 | |
| #define HAVE_SCHED_SETAFFINITY 1 | |
| #define HAVE_SCHED_SETSCHEDULER 1 | |
| #define HAVE_SCHED_SETPARAM 1 | |
| #define HAVE_SCHED_RR_GET_INTERVAL 1 | |
| #define HAVE_SIGACTION 1 | |
| #define HAVE_SIGALTSTACK 1 | |
| #define HAVE_SIGINTERRUPT 1 | |
| #define HAVE_SIGPENDING 1 | |
| #define HAVE_SIGRELSE 1 | |
| #define HAVE_SIGTIMEDWAIT 1 | |
| #define HAVE_SIGWAIT 1 | |
| #define HAVE_SIGWAITINFO 1 | |
| #define HAVE_SNPRINTF 1 | |
| #define HAVE_STRFTIME 1 | |
| /* end confdefs.h. */ | |
| /* Define strlcpy to an innocuous variant, in case <limits.h> declares strlcpy. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define strlcpy innocuous_strlcpy | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char strlcpy (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef strlcpy | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char strlcpy (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub_strlcpy || defined __stub___strlcpy | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return strlcpy (); | |
| ; | |
| return 0; | |
| } | |
configure:11514: result: no | |
configure:11514: checking for symlinkat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sync | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for sysconf | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for tcgetpgrp | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for tcsetpgrp | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for tempnam | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccSr3MP4.o: in function `main': | |
conftest.c:(.text+0x8): warning: the use of `tempnam' is dangerous, better use `mkstemp' | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for timegm | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for times | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for tmpfile | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for tmpnam | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/ccG7s31j.o: in function `main': | |
conftest.c:(.text+0x8): warning: the use of `tmpnam' is dangerous, better use `mkstemp' | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for tmpnam_r | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/cc3NwkZh.o: in function `main': | |
conftest.c:(.text+0x8): warning: the use of `tmpnam_r' is dangerous, better use `mkstemp' | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for truncate | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for uname | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for unlinkat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for unsetenv | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for utimensat | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for utimes | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for waitid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for waitpid | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for wait3 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for wait4 | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for wcscoll | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for wcsftime | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for wcsxfrm | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for wmemcmp | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for writev | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11514: $? = 0 | |
configure:11514: result: yes | |
configure:11514: checking for _getpty | |
configure:11514: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
/home/develop/x-tools/aarch64-rpi3-linux-gnu/lib/gcc/aarch64-rpi3-linux-gnu/9.1.0/../../../../aarch64-rpi3-linux-gnu/bin/ld.bfd: /tmp/cc53BlKp.o: in function `main': | |
conftest.c:(.text+0x8): undefined reference to `_getpty' | |
collect2: error: ld returned 1 exit status | |
configure:11514: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| #define HAVE_POLL 1 | |
| #define HAVE_POSIX_FALLOCATE 1 | |
| #define HAVE_POSIX_FADVISE 1 | |
| #define HAVE_POSIX_SPAWN 1 | |
| #define HAVE_PREAD 1 | |
| #define HAVE_PREADV 1 | |
| #define HAVE_PREADV2 1 | |
| #define HAVE_PTHREAD_KILL 1 | |
| #define HAVE_PUTENV 1 | |
| #define HAVE_PWRITE 1 | |
| #define HAVE_PWRITEV 1 | |
| #define HAVE_PWRITEV2 1 | |
| #define HAVE_READLINK 1 | |
| #define HAVE_READLINKAT 1 | |
| #define HAVE_READV 1 | |
| #define HAVE_REALPATH 1 | |
| #define HAVE_RENAMEAT 1 | |
| #define HAVE_SEM_OPEN 1 | |
| #define HAVE_SEM_TIMEDWAIT 1 | |
| #define HAVE_SEM_GETVALUE 1 | |
| #define HAVE_SEM_UNLINK 1 | |
| #define HAVE_SENDFILE 1 | |
| #define HAVE_SETEGID 1 | |
| #define HAVE_SETEUID 1 | |
| #define HAVE_SETGID 1 | |
| #define HAVE_SETHOSTNAME 1 | |
| #define HAVE_SETLOCALE 1 | |
| #define HAVE_SETREGID 1 | |
| #define HAVE_SETREUID 1 | |
| #define HAVE_SETRESUID 1 | |
| #define HAVE_SETRESGID 1 | |
| #define HAVE_SETSID 1 | |
| #define HAVE_SETPGID 1 | |
| #define HAVE_SETPGRP 1 | |
| #define HAVE_SETPRIORITY 1 | |
| #define HAVE_SETUID 1 | |
| #define HAVE_SETVBUF 1 | |
| #define HAVE_SCHED_GET_PRIORITY_MAX 1 | |
| #define HAVE_SCHED_SETAFFINITY 1 | |
| #define HAVE_SCHED_SETSCHEDULER 1 | |
| #define HAVE_SCHED_SETPARAM 1 | |
| #define HAVE_SCHED_RR_GET_INTERVAL 1 | |
| #define HAVE_SIGACTION 1 | |
| #define HAVE_SIGALTSTACK 1 | |
| #define HAVE_SIGINTERRUPT 1 | |
| #define HAVE_SIGPENDING 1 | |
| #define HAVE_SIGRELSE 1 | |
| #define HAVE_SIGTIMEDWAIT 1 | |
| #define HAVE_SIGWAIT 1 | |
| #define HAVE_SIGWAITINFO 1 | |
| #define HAVE_SNPRINTF 1 | |
| #define HAVE_STRFTIME 1 | |
| #define HAVE_SYMLINKAT 1 | |
| #define HAVE_SYNC 1 | |
| #define HAVE_SYSCONF 1 | |
| #define HAVE_TCGETPGRP 1 | |
| #define HAVE_TCSETPGRP 1 | |
| #define HAVE_TEMPNAM 1 | |
| #define HAVE_TIMEGM 1 | |
| #define HAVE_TIMES 1 | |
| #define HAVE_TMPFILE 1 | |
| #define HAVE_TMPNAM 1 | |
| #define HAVE_TMPNAM_R 1 | |
| #define HAVE_TRUNCATE 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_UNLINKAT 1 | |
| #define HAVE_UNSETENV 1 | |
| #define HAVE_UTIMENSAT 1 | |
| #define HAVE_UTIMES 1 | |
| #define HAVE_WAITID 1 | |
| #define HAVE_WAITPID 1 | |
| #define HAVE_WAIT3 1 | |
| #define HAVE_WAIT4 1 | |
| #define HAVE_WCSCOLL 1 | |
| #define HAVE_WCSFTIME 1 | |
| #define HAVE_WCSXFRM 1 | |
| #define HAVE_WMEMCMP 1 | |
| #define HAVE_WRITEV 1 | |
| /* end confdefs.h. */ | |
| /* Define _getpty to an innocuous variant, in case <limits.h> declares _getpty. | |
| For example, HP-UX 11i <limits.h> declares gettimeofday. */ | |
| #define _getpty innocuous__getpty | |
| | |
| /* System header to define __stub macros and hopefully few prototypes, | |
| which can conflict with char _getpty (); below. | |
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | |
| <limits.h> exists even on freestanding compilers. */ | |
| | |
| #ifdef __STDC__ | |
| # include <limits.h> | |
| #else | |
| # include <assert.h> | |
| #endif | |
| | |
| #undef _getpty | |
| | |
| /* Override any GCC internal prototype to avoid an error. | |
| Use char because int might match the return type of a GCC | |
| builtin and then its argument prototype would still apply. */ | |
| #ifdef __cplusplus | |
| extern "C" | |
| #endif | |
| char _getpty (); | |
| /* The GNU C library defines this for functions which it implements | |
| to always fail with ENOSYS. Some functions are actually named | |
| something starting with __ and the normal name is an alias. */ | |
| #if defined __stub__getpty || defined __stub____getpty | |
| choke me | |
| #endif | |
| | |
| int | |
| main () | |
| { | |
| return _getpty (); | |
| ; | |
| return 0; | |
| } | |
configure:11514: result: no | |
configure:11541: checking whether dirfd is declared | |
configure:11541: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11541: $? = 0 | |
configure:11541: result: yes | |
configure:11553: checking for chroot | |
configure:11566: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11566: $? = 0 | |
configure:11570: result: yes | |
configure:11578: checking for link | |
configure:11591: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11591: $? = 0 | |
configure:11595: result: yes | |
configure:11603: checking for symlink | |
configure:11616: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11616: $? = 0 | |
configure:11620: result: yes | |
configure:11628: checking for fchdir | |
configure:11641: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11641: $? = 0 | |
configure:11645: result: yes | |
configure:11653: checking for fsync | |
configure:11666: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11666: $? = 0 | |
configure:11670: result: yes | |
configure:11678: checking for fdatasync | |
configure:11691: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11691: $? = 0 | |
configure:11695: result: yes | |
configure:11703: checking for epoll | |
configure:11716: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11716: $? = 0 | |
configure:11720: result: yes | |
configure:11728: checking for epoll_create1 | |
configure:11741: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11741: $? = 0 | |
configure:11745: result: yes | |
configure:11753: checking for kqueue | |
configure:11769: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c:282:10: fatal error: sys/event.h: No such file or directory | |
282 | #include <sys/event.h> | |
| ^~~~~~~~~~~~~ | |
compilation terminated. | |
configure:11769: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| #define HAVE_POLL 1 | |
| #define HAVE_POSIX_FALLOCATE 1 | |
| #define HAVE_POSIX_FADVISE 1 | |
| #define HAVE_POSIX_SPAWN 1 | |
| #define HAVE_PREAD 1 | |
| #define HAVE_PREADV 1 | |
| #define HAVE_PREADV2 1 | |
| #define HAVE_PTHREAD_KILL 1 | |
| #define HAVE_PUTENV 1 | |
| #define HAVE_PWRITE 1 | |
| #define HAVE_PWRITEV 1 | |
| #define HAVE_PWRITEV2 1 | |
| #define HAVE_READLINK 1 | |
| #define HAVE_READLINKAT 1 | |
| #define HAVE_READV 1 | |
| #define HAVE_REALPATH 1 | |
| #define HAVE_RENAMEAT 1 | |
| #define HAVE_SEM_OPEN 1 | |
| #define HAVE_SEM_TIMEDWAIT 1 | |
| #define HAVE_SEM_GETVALUE 1 | |
| #define HAVE_SEM_UNLINK 1 | |
| #define HAVE_SENDFILE 1 | |
| #define HAVE_SETEGID 1 | |
| #define HAVE_SETEUID 1 | |
| #define HAVE_SETGID 1 | |
| #define HAVE_SETHOSTNAME 1 | |
| #define HAVE_SETLOCALE 1 | |
| #define HAVE_SETREGID 1 | |
| #define HAVE_SETREUID 1 | |
| #define HAVE_SETRESUID 1 | |
| #define HAVE_SETRESGID 1 | |
| #define HAVE_SETSID 1 | |
| #define HAVE_SETPGID 1 | |
| #define HAVE_SETPGRP 1 | |
| #define HAVE_SETPRIORITY 1 | |
| #define HAVE_SETUID 1 | |
| #define HAVE_SETVBUF 1 | |
| #define HAVE_SCHED_GET_PRIORITY_MAX 1 | |
| #define HAVE_SCHED_SETAFFINITY 1 | |
| #define HAVE_SCHED_SETSCHEDULER 1 | |
| #define HAVE_SCHED_SETPARAM 1 | |
| #define HAVE_SCHED_RR_GET_INTERVAL 1 | |
| #define HAVE_SIGACTION 1 | |
| #define HAVE_SIGALTSTACK 1 | |
| #define HAVE_SIGINTERRUPT 1 | |
| #define HAVE_SIGPENDING 1 | |
| #define HAVE_SIGRELSE 1 | |
| #define HAVE_SIGTIMEDWAIT 1 | |
| #define HAVE_SIGWAIT 1 | |
| #define HAVE_SIGWAITINFO 1 | |
| #define HAVE_SNPRINTF 1 | |
| #define HAVE_STRFTIME 1 | |
| #define HAVE_SYMLINKAT 1 | |
| #define HAVE_SYNC 1 | |
| #define HAVE_SYSCONF 1 | |
| #define HAVE_TCGETPGRP 1 | |
| #define HAVE_TCSETPGRP 1 | |
| #define HAVE_TEMPNAM 1 | |
| #define HAVE_TIMEGM 1 | |
| #define HAVE_TIMES 1 | |
| #define HAVE_TMPFILE 1 | |
| #define HAVE_TMPNAM 1 | |
| #define HAVE_TMPNAM_R 1 | |
| #define HAVE_TRUNCATE 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_UNLINKAT 1 | |
| #define HAVE_UNSETENV 1 | |
| #define HAVE_UTIMENSAT 1 | |
| #define HAVE_UTIMES 1 | |
| #define HAVE_WAITID 1 | |
| #define HAVE_WAITPID 1 | |
| #define HAVE_WAIT3 1 | |
| #define HAVE_WAIT4 1 | |
| #define HAVE_WCSCOLL 1 | |
| #define HAVE_WCSFTIME 1 | |
| #define HAVE_WCSXFRM 1 | |
| #define HAVE_WMEMCMP 1 | |
| #define HAVE_WRITEV 1 | |
| #define HAVE_DIRFD 1 | |
| #define HAVE_CHROOT 1 | |
| #define HAVE_LINK 1 | |
| #define HAVE_SYMLINK 1 | |
| #define HAVE_FCHDIR 1 | |
| #define HAVE_FSYNC 1 | |
| #define HAVE_FDATASYNC 1 | |
| #define HAVE_EPOLL 1 | |
| #define HAVE_EPOLL_CREATE1 1 | |
| /* end confdefs.h. */ | |
| | |
| #include <sys/types.h> | |
| #include <sys/event.h> | |
| | |
| int | |
| main () | |
| { | |
| int x=kqueue() | |
| ; | |
| return 0; | |
| } | |
configure:11776: result: no | |
configure:11781: checking for prlimit | |
configure:11797: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11797: $? = 0 | |
configure:11801: result: yes | |
configure:11816: checking for ctermid_r | |
configure:11831: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
conftest.c: In function 'main': | |
conftest.c:287:11: error: 'ctermid_r' undeclared (first use in this function); did you mean 'ctermid'? | |
287 | void* p = ctermid_r | |
| ^~~~~~~~~ | |
| ctermid | |
conftest.c:287:11: note: each undeclared identifier is reported only once for each function it appears in | |
configure:11831: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| #define HAVE_POLL 1 | |
| #define HAVE_POSIX_FALLOCATE 1 | |
| #define HAVE_POSIX_FADVISE 1 | |
| #define HAVE_POSIX_SPAWN 1 | |
| #define HAVE_PREAD 1 | |
| #define HAVE_PREADV 1 | |
| #define HAVE_PREADV2 1 | |
| #define HAVE_PTHREAD_KILL 1 | |
| #define HAVE_PUTENV 1 | |
| #define HAVE_PWRITE 1 | |
| #define HAVE_PWRITEV 1 | |
| #define HAVE_PWRITEV2 1 | |
| #define HAVE_READLINK 1 | |
| #define HAVE_READLINKAT 1 | |
| #define HAVE_READV 1 | |
| #define HAVE_REALPATH 1 | |
| #define HAVE_RENAMEAT 1 | |
| #define HAVE_SEM_OPEN 1 | |
| #define HAVE_SEM_TIMEDWAIT 1 | |
| #define HAVE_SEM_GETVALUE 1 | |
| #define HAVE_SEM_UNLINK 1 | |
| #define HAVE_SENDFILE 1 | |
| #define HAVE_SETEGID 1 | |
| #define HAVE_SETEUID 1 | |
| #define HAVE_SETGID 1 | |
| #define HAVE_SETHOSTNAME 1 | |
| #define HAVE_SETLOCALE 1 | |
| #define HAVE_SETREGID 1 | |
| #define HAVE_SETREUID 1 | |
| #define HAVE_SETRESUID 1 | |
| #define HAVE_SETRESGID 1 | |
| #define HAVE_SETSID 1 | |
| #define HAVE_SETPGID 1 | |
| #define HAVE_SETPGRP 1 | |
| #define HAVE_SETPRIORITY 1 | |
| #define HAVE_SETUID 1 | |
| #define HAVE_SETVBUF 1 | |
| #define HAVE_SCHED_GET_PRIORITY_MAX 1 | |
| #define HAVE_SCHED_SETAFFINITY 1 | |
| #define HAVE_SCHED_SETSCHEDULER 1 | |
| #define HAVE_SCHED_SETPARAM 1 | |
| #define HAVE_SCHED_RR_GET_INTERVAL 1 | |
| #define HAVE_SIGACTION 1 | |
| #define HAVE_SIGALTSTACK 1 | |
| #define HAVE_SIGINTERRUPT 1 | |
| #define HAVE_SIGPENDING 1 | |
| #define HAVE_SIGRELSE 1 | |
| #define HAVE_SIGTIMEDWAIT 1 | |
| #define HAVE_SIGWAIT 1 | |
| #define HAVE_SIGWAITINFO 1 | |
| #define HAVE_SNPRINTF 1 | |
| #define HAVE_STRFTIME 1 | |
| #define HAVE_SYMLINKAT 1 | |
| #define HAVE_SYNC 1 | |
| #define HAVE_SYSCONF 1 | |
| #define HAVE_TCGETPGRP 1 | |
| #define HAVE_TCSETPGRP 1 | |
| #define HAVE_TEMPNAM 1 | |
| #define HAVE_TIMEGM 1 | |
| #define HAVE_TIMES 1 | |
| #define HAVE_TMPFILE 1 | |
| #define HAVE_TMPNAM 1 | |
| #define HAVE_TMPNAM_R 1 | |
| #define HAVE_TRUNCATE 1 | |
| #define HAVE_UNAME 1 | |
| #define HAVE_UNLINKAT 1 | |
| #define HAVE_UNSETENV 1 | |
| #define HAVE_UTIMENSAT 1 | |
| #define HAVE_UTIMES 1 | |
| #define HAVE_WAITID 1 | |
| #define HAVE_WAITPID 1 | |
| #define HAVE_WAIT3 1 | |
| #define HAVE_WAIT4 1 | |
| #define HAVE_WCSCOLL 1 | |
| #define HAVE_WCSFTIME 1 | |
| #define HAVE_WCSXFRM 1 | |
| #define HAVE_WMEMCMP 1 | |
| #define HAVE_WRITEV 1 | |
| #define HAVE_DIRFD 1 | |
| #define HAVE_CHROOT 1 | |
| #define HAVE_LINK 1 | |
| #define HAVE_SYMLINK 1 | |
| #define HAVE_FCHDIR 1 | |
| #define HAVE_FSYNC 1 | |
| #define HAVE_FDATASYNC 1 | |
| #define HAVE_EPOLL 1 | |
| #define HAVE_EPOLL_CREATE1 1 | |
| #define HAVE_PRLIMIT 1 | |
| /* end confdefs.h. */ | |
| | |
| #include <stdio.h> | |
| | |
| int | |
| main () | |
| { | |
| void* p = ctermid_r | |
| ; | |
| return 0; | |
| } | |
configure:11838: result: no | |
configure:11844: checking for flock declaration | |
configure:11861: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11861: $? = 0 | |
configure:11870: result: yes | |
configure:11875: checking for flock | |
configure:11875: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
configure:11875: $? = 0 | |
configure:11875: result: yes | |
configure:11933: checking for getpagesize | |
configure:11948: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11948: $? = 0 | |
configure:11952: result: yes | |
configure:11961: checking for broken unsetenv | |
configure:11976: aarch64-rpi3-linux-gnu-gcc -c --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c >&5 | |
configure:11976: $? = 0 | |
configure:11977: result: no | |
configure:11993: checking for true | |
configure:12009: found /bin/true | |
configure:12020: result: true | |
configure:12033: checking for inet_aton in -lc | |
configure:12058: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lc -lpthread -ldl -lpthread >&5 | |
configure:12058: $? = 0 | |
configure:12067: result: yes | |
configure:12123: checking for chflags | |
configure:12155: result: cross | |
configure:12158: checking for chflags | |
configure:12158: aarch64-rpi3-linux-gnu-gcc -o conftest --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot --sysroot=/home/develop/RPi3-sysroot conftest.c -lpthread -ldl -lpthread >&5 | |
conftest.c:311:1: error: unknown type name 'choke' | |
311 | choke me | |
| ^~~~~ | |
conftest.c:311:9: error: expected ';' before 'int' | |
311 | choke me | |
| ^ | |
| ; | |
...... | |
314 | int | |
| ~~~ | |
configure:12158: $? = 1 | |
configure: failed program was: | |
| /* confdefs.h */ | |
| #define _GNU_SOURCE 1 | |
| #define _NETBSD_SOURCE 1 | |
| #define __BSD_VISIBLE 1 | |
| #define _DARWIN_C_SOURCE 1 | |
| #define _PYTHONFRAMEWORK "" | |
| #define _XOPEN_SOURCE 700 | |
| #define _XOPEN_SOURCE_EXTENDED 1 | |
| #define _POSIX_C_SOURCE 200809L | |
| #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 __EXTENSIONS__ 1 | |
| #define _ALL_SOURCE 1 | |
| #define _GNU_SOURCE 1 | |
| #define _POSIX_PTHREAD_SEMANTICS 1 | |
| #define _TANDEM_SOURCE 1 | |
| #define Py_ENABLE_SHARED 1 | |
| #define STDC_HEADERS 1 | |
| #define HAVE_ASM_TYPES_H 1 | |
| #define HAVE_CRYPT_H 1 | |
| #define HAVE_DLFCN_H 1 | |
| #define HAVE_ERRNO_H 1 | |
| #define HAVE_FCNTL_H 1 | |
| #define HAVE_GRP_H 1 | |
| #define HAVE_LANGINFO_H 1 | |
| #define HAVE_LIBINTL_H 1 | |
| #define HAVE_PTHREAD_H 1 | |
| #define HAVE_SCHED_H 1 | |
| #define HAVE_SHADOW_H 1 | |
| #define HAVE_SIGNAL_H 1 | |
| #define HAVE_STROPTS_H 1 | |
| #define HAVE_TERMIOS_H 1 | |
| #define HAVE_UNISTD_H 1 | |
| #define HAVE_UTIME_H 1 | |
| #define HAVE_POLL_H 1 | |
| #define HAVE_SYS_EPOLL_H 1 | |
| #define HAVE_SYS_POLL_H 1 | |
| #define HAVE_SYS_XATTR_H 1 | |
| #define HAVE_SYS_FILE_H 1 | |
| #define HAVE_SYS_IOCTL_H 1 | |
| #define HAVE_SYS_PARAM_H 1 | |
| #define HAVE_SYS_RANDOM_H 1 | |
| #define HAVE_SYS_SELECT_H 1 | |
| #define HAVE_SYS_SENDFILE_H 1 | |
| #define HAVE_SYS_SOCKET_H 1 | |
| #define HAVE_SYS_STATVFS_H 1 | |
| #define HAVE_SYS_STAT_H 1 | |
| #define HAVE_SYS_SYSCALL_H 1 | |
| #define HAVE_SYS_TIME_H 1 | |
| #define HAVE_SYS_TIMES_H 1 | |
| #define HAVE_SYS_TYPES_H 1 | |
| #define HAVE_SYS_UIO_H 1 | |
| #define HAVE_SYS_UN_H 1 | |
| #define HAVE_SYS_UTSNAME_H 1 | |
| #define HAVE_SYS_WAIT_H 1 | |
| #define HAVE_PTY_H 1 | |
| #define HAVE_SYS_RESOURCE_H 1 | |
| #define HAVE_NETPACKET_PACKET_H 1 | |
| #define HAVE_SYSEXITS_H 1 | |
| #define HAVE_LINUX_TIPC_H 1 | |
| #define HAVE_LINUX_RANDOM_H 1 | |
| #define HAVE_SPAWN_H 1 | |
| #define HAVE_ALLOCA_H 1 | |
| #define HAVE_ENDIAN_H 1 | |
| #define HAVE_SYS_SYSMACROS_H 1 | |
| #define HAVE_DIRENT_H 1 | |
| #define HAVE_NET_IF_H 1 | |
| #define HAVE_LINUX_NETLINK_H 1 | |
| #define HAVE_LINUX_VM_SOCKETS_H 1 | |
| #define HAVE_LINUX_CAN_H 1 | |
| #define HAVE_LINUX_CAN_RAW_H 1 | |
| #define HAVE_LINUX_CAN_BCM_H 1 | |
| #define HAVE_MAKEDEV 1 | |
| #define HAVE_HTOLE64 1 | |
| #define _LARGEFILE_SOURCE 1 | |
| #define _FILE_OFFSET_BITS 64 | |
| #if defined(SCO_DS) | |
| #undef _OFF_T | |
| #endif | |
| #define RETSIGTYPE void | |
| #define HAVE_SSIZE_T 1 | |
| #define HAVE_GCC_UINT128_T 1 | |
| #define SIZEOF_INT 4 | |
| #define SIZEOF_LONG 8 | |
| #define SIZEOF_LONG_LONG 8 | |
| #define SIZEOF_VOID_P 8 | |
| #define SIZEOF_SHORT 2 | |
| #define SIZEOF_FLOAT 4 | |
| #define SIZEOF_DOUBLE 8 | |
| #define SIZEOF_FPOS_T 16 | |
| #define SIZEOF_SIZE_T 8 | |
| #define SIZEOF_PID_T 4 | |
| #define SIZEOF_UINTPTR_T 8 | |
| #define HAVE_LONG_DOUBLE 1 | |
| #define SIZEOF_LONG_DOUBLE 16 | |
| #define SIZEOF__BOOL 1 | |
| #define SIZEOF_OFF_T 8 | |
| #define SIZEOF_TIME_T 8 | |
| #define SIZEOF_PTHREAD_T 8 | |
| #define SIZEOF_PTHREAD_KEY_T 4 | |
| #define PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT 1 | |
| #define HAVE_LIBDL 1 | |
| #define HAVE_UUID_UUID_H 1 | |
| #define HAVE_UUID_H 1 | |
| #define HAVE_UUID_GENERATE_TIME_SAFE 1 | |
| #define HAVE_ALIGNED_REQUIRED 1 | |
| #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_SIGMASK 1 | |
| #define HAVE_PTHREAD_GETCPUCLOCKID 1 | |
| #define ENABLE_IPV6 1 | |
| #define HAVE_LINUX_CAN_RAW_FD_FRAMES 1 | |
| #define WITH_DOC_STRINGS 1 | |
| #define WITH_PYMALLOC 1 | |
| #define PY_COERCE_C_LOCALE 1 | |
| #define HAVE_DLOPEN 1 | |
| #define HAVE_DYNAMIC_LOADING 1 | |
| #define HAVE_ALARM 1 | |
| #define HAVE_ACCEPT4 1 | |
| #define HAVE_SETITIMER 1 | |
| #define HAVE_GETITIMER 1 | |
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1 | |
| #define HAVE_CHOWN 1 | |
| #define HAVE_CLOCK 1 | |
| #define HAVE_CONFSTR 1 | |
| #define HAVE_CTERMID 1 | |
| #define HAVE_DUP3 1 | |
| #define HAVE_EXECV 1 | |
| #define HAVE_FACCESSAT 1 | |
| #define HAVE_FCHMOD 1 | |
| #define HAVE_FCHMODAT 1 | |
| #define HAVE_FCHOWN 1 | |
| #define HAVE_FCHOWNAT 1 | |
| #define HAVE_FEXECVE 1 | |
| #define HAVE_FDOPENDIR 1 | |
| #define HAVE_FORK 1 | |
| #define HAVE_FPATHCONF 1 | |
| #define HAVE_FSTATAT 1 | |
| #define HAVE_FTIME 1 | |
| #define HAVE_FTRUNCATE 1 | |
| #define HAVE_FUTIMESAT 1 | |
| #define HAVE_FUTIMENS 1 | |
| #define HAVE_FUTIMES 1 | |
| #define HAVE_GAI_STRERROR 1 | |
| #define HAVE_GETENTROPY 1 | |
| #define HAVE_GETGROUPLIST 1 | |
| #define HAVE_GETGROUPS 1 | |
| #define HAVE_GETLOGIN 1 | |
| #define HAVE_GETLOADAVG 1 | |
| #define HAVE_GETPEERNAME 1 | |
| #define HAVE_GETPGID 1 | |
| #define HAVE_GETPID 1 | |
| #define HAVE_GETPRIORITY 1 | |
| #define HAVE_GETRESUID 1 | |
| #define HAVE_GETRESGID 1 | |
| #define HAVE_GETPWENT 1 | |
| #define HAVE_GETSPNAM 1 | |
| #define HAVE_GETSPENT 1 | |
| #define HAVE_GETSID 1 | |
| #define HAVE_GETWD 1 | |
| #define HAVE_IF_NAMEINDEX 1 | |
| #define HAVE_INITGROUPS 1 | |
| #define HAVE_KILL 1 | |
| #define HAVE_KILLPG 1 | |
| #define HAVE_LCHOWN 1 | |
| #define HAVE_LOCKF 1 | |
| #define HAVE_LINKAT 1 | |
| #define HAVE_LSTAT 1 | |
| #define HAVE_LUTIMES 1 | |
| #define HAVE_MMAP 1 | |
| #define HAVE_MEMRCHR 1 | |
| #define HAVE_MBRTOWC 1 | |
| #define HAVE_MKDIRAT 1 | |
| #define HAVE_MKFIFO 1 | |
| #define HAVE_MKFIFOAT 1 | |
| #define HAVE_MKNOD 1 | |
| #define HAVE_MKNODAT 1 | |
| #define HAVE_MKTIME 1 | |
| #define HAVE_MREMAP 1 | |
| #define HAVE_NICE 1 | |
| #define HAVE_OPENAT 1 | |
| #define HAVE_PATHCONF 1 | |
| #define HAVE_PAUSE 1 | |
| #define HAVE_PIPE2 1 | |
| #define HAVE_POLL 1 | |
| #define HAVE_POSIX_FALLOCATE 1 | |
| #define HAVE_POSIX_FADVISE 1 | |
| #define HAVE_POSIX_SPAWN 1 | |
| #define HAVE_PREAD 1 | |
| #define HAVE_PREADV 1 | |
| #define HAVE_PREADV2 1 | |
| #define HAVE_PTHREAD_KILL 1 | |
| #define HAVE_PUTENV 1 | |
| #define HAVE_PWRITE 1 | |
| #define HAVE_PWRITEV 1 | |
| #define HAVE_PWRITEV2 1 | |
| #define HAVE_READLINK 1 | |
| #define HAVE_READLINKAT 1 | |
| #define HAVE_READV 1 | |
| #define HAVE_REALPATH 1 | |
| #define HAVE_RENAMEAT 1 | |
| #define HAVE_SEM_OPEN 1 | |
| #define HAVE_SEM_TIMEDWAIT 1 | |
| #define HAVE_SEM_GETVALUE 1 | |
| #define HAVE_SEM_UNLINK 1 | |
| #define HAVE_SENDFILE 1 | |
| #define HAVE_SETEGID 1 | |
| #define HAVE_SETEUID 1 | |
| #define HAVE_SETGID 1 | |
| #define HAVE_SETHOSTNAME 1 | |
| #define HAVE_SETLOCALE 1 | |
| #define HAVE_SETREGID 1 | |
| #define HAVE_SETREUID 1 | |
| #define HAVE_SETRESUID 1 | |
| #define HAVE_SETRESGID 1 | |
| #define HAVE_SETSID 1 | |
| #define HAVE_SETPGID 1 | |
| #define HAVE_SETPGRP 1 | |
| #define HAVE_SETPRIORITY 1 | |
| #define HAVE_SETUID 1 | |
| #define HAVE_SETVBUF 1 | |
| #define HAVE_SCHED_GET_PRIORITY_MAX 1 | |
| #define HAVE_SCHED_SETAFFINITY 1 | |
| #define HAVE_SCHED_SETSCHEDULER 1 | |
| #define HAVE_SCHED_SETPARAM 1 | |
| #define HAVE_SCHED_RR_GET_INTERVAL 1 | |
| #define HAVE_SIGACTION 1 | |
| #define HAVE_SIGALTSTACK 1 | |
| #define HAVE_SIGINTERRUPT 1 | |
| #define HAVE_SIGPENDING 1 | |
| #define HAVE_SIGRELSE 1 | |
| #define HAVE_SIGTIMEDWAIT 1 | |
| #define HAVE_SIGWAIT 1 | |
| #define HAVE_SIGWAITINFO 1 | |
| #define HAVE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment