This file contains hidden or 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
| find: ‘/home/arpallet/rpmbuild/BUILDROOT/gcc-7.3.0-119.x86_64/usr/lib64/haswell/avx512_1’: No such file or directory | |
| + find /home/arpallet/rpmbuild/BUILDROOT/gcc-7.3.0-119.x86_64/usr/lib64/haswell -name '*.so*' | |
| + xargs -n1 -r /usr/bin/clr-python-avx2 | |
| find: ‘/home/arpallet/rpmbuild/BUILDROOT/gcc-7.3.0-119.x86_64/usr/lib64/haswell’: No such file or directory | |
| + /usr/lib/rpm/clr/brp-java-repack-jars | |
| Processing files: gcc-7.3.0-119.x86_64 | |
| error: File not found by glob: /home/arpallet/rpmbuild/BUILDROOT/gcc-7.3.0-119.x86_64/usr/lib64/gcc/x86_64-generic-linux/7.3.0/libcaf_* | |
| error: File not found: /home/arpallet/rpmbuild/BUILDROOT/gcc-7.3.0-119.x86_64/usr/share/gcc-7.3.0 | |
This file contains hidden or 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
| /home/arpallet/rpmbuild/BUILD/gcc-build/./prev-gcc/xg++ -B/home/arpallet/rpmbuild/BUILD/gcc-build/./prev-gcc/ -B/usr/x86_64-generic-linux/bin/ -nostdinc++ -B/home/arpallet/rpmbuild/BUILD/gcc-build/prev-x86_64-generic-linux/libstdc++-v3/src/.libs -B/home/arpallet/rpmbuild/BUILD/gcc-build/prev-x86_64-generic-linux/libstdc++-v3/libsupc++/.libs -I/home/arpallet/rpmbuild/BUILD/gcc-build/prev-x86_64-generic-linux/libstdc++-v3/include/x86_64-generic-linux -I/home/arpallet/rpmbuild/BUILD/gcc-build/prev-x86_64-generic-linux/libstdc++-v3/include -I/home/arpallet/rpmbuild/BUILD/gcc-8.2.0/libstdc++-v3/libsupc++ -L/home/arpallet/rpmbuild/BUILD/gcc-build/prev-x86_64-generic-linux/libstdc++-v3/src/.libs -L/home/arpallet/rpmbuild/BUILD/gcc-build/prev-x86_64-generic-linux/libstdc++-v3/libsupc++/.libs -fno-PIE -c -DIN_GCC_FRONTEND -g -O2 -fprofile-use -DIN_GCC -fno-exceptions -fno-rtti -fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings -Wcast-qual -Wmissing-format-attribute -Woverloaded-virtual -pedan |
This file contains hidden or 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
| arpallet@clr-scl ~/Downloads/poc/mix $ sudo -E mixer build all | |
| Warning: Using Format=25 from mixer.state for this build. | |
| Running command in container: "mixer build all" | |
| docker: invalid reference format. | |
| See 'docker run --help'. | |
| ERROR: Failed to run command in container: failed to execute docker run -i --network=host --rm --workdir /home/arpallet/Downloads/poc/mix --entrypoint mixer -v /home/arpallet/Downloads/poc/mix:/home/arpallet/Downloads/poc/mix :25 build all --native: exit status 125 |
This file contains hidden or 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
| Configure line : ../configure --enable-languages=c --prefix=/opt/gcc --libexecdir=/opt/gcc/lib --libdir=/opt/gcc/lib | |
| $ make -j8 -O | |
| [ -f stage_final ] || echo stage3 > stage_final | |
| make[3]: Entering directory '/home/arpallet/Downloads/gcc-7.3.0/build' | |
| rm -f stage_current | |
| make[3]: Leaving directory '/home/arpallet/Downloads/gcc-7.3.0/build' | |
| make all-recursive | |
| make[3]: Nothing to be done for 'all'. |
This file contains hidden or 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
| configure line : ../configure --enable-languages=c --prefix=/opt --enable-multilib | |
| CFLAGS="-nostdinc -isystem /usr/lib64/gcc_x86_64-generic-linux/7.3.0/include | |
| -isystem /usr/lib64/gcc/x86_64-generic-linux/7.3.0/include-fixed/ -isystem /usr/include" | |
| CXXFLAGS="-nostdinc -isystem /usr/lib64/gcc/x86_64-generic-linux/7.3.0/include | |
| -isystem /usr/lib64/gcc/x86_64-generic-linux/7.3.0/include-fixed/ -isystem /usr/include" | |
| $ make -j8 -O | |
| [ -f stage_final ] || echo stage3 > stage_final | |
| make[2]: Entering directory '/home/arpallet/Downloads/gcc-7.3.0/build' | |
| mkdir -p -- build-x86_64-pc-linux-gnu/libcpp | |
| Configuring in build-x86_64-pc-linux-gnu/libcpp |
This file contains hidden or 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
| ssize_t Transport_node::write(const uint8_t topic_ID, char buffer[], size_t length) | |
| { | |
| if (!fds_OK()) { | |
| return -1; | |
| } | |
| static struct Header header = { | |
| .marker = {'>', '>', '>'}, | |
| .topic_ID = 0u, | |
| .seq = 0u, |
This file contains hidden or 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
| #include <iostream> | |
| #include <fstream> | |
| #include <thread> | |
| #include <chrono> | |
| #include <cstdint> | |
| #include <future> | |
| #include <grpc/grpc.h> | |
| #include <grpc++/server.h> | |
| #include <grpc++/server_builder.h> |
This file contains hidden or 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
| template <class BaseClass> | |
| class WithAsyncMethod_Land : public BaseClass { | |
| private: | |
| void BaseClassMustBeDerivedFromService(const Service *service) {} | |
| public: | |
| WithAsyncMethod_Land() { | |
| ::grpc::Service::MarkMethodAsync(2); | |
| } | |
| ~WithAsyncMethod_Land() override { | |
| BaseClassMustBeDerivedFromService(this); |
This file contains hidden or 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
| DESCRIPTION = "Python HTTP Server" | |
| LICENSE = "GPLv2" | |
| LICENSE_PATH = "${S}" | |
| LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | |
| inherit systemd | |
| FILESEXTRAPATHS_prepend := "${THISDIR}/files:" | |
| SRC_URI += "file://aero-http-server.py \ |
This file contains hidden or 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
| ERROR: intel-aero-image-1.0-r0 do_rootfs: Could not invoke dnf. Command '/home/arpallet/src/intel_aero_ww29/build/tmp/work/intel_aero-poky-linux/intel-aero-image/1.0-r0/recipe-sysroot-native/usr/bin/dnf -y -c /home/arpallet/src/intel_aero_ww29/build/tmp/work/intel_aero-poky-linux/intel-aero-image/1.0-r0/rootfs/etc/dnf/dnf.conf --setopt=reposdir=/home/arpallet/src/intel_aero_ww29/build/tmp/work/intel_aero-poky-linux/intel-aero-image/1.0-r0/rootfs/etc/yum.repos.d --repofrompath=oe-repo,/home/arpallet/src/intel_aero_ww29/build/tmp/work/intel_aero-poky-linux/intel-aero-image/1.0-r0/oe-rootfs-repo --installroot=/home/arpallet/src/intel_aero_ww29/build/tmp/work/intel_aero-poky-linux/intel-aero-image/1.0-r0/rootfs --setopt=logdir=/home/arpallet/src/intel_aero_ww29/build/tmp/work/intel_aero-poky-linux/intel-aero-image/1.0-r0/temp -x busybox-syslog,nfs-utils,at,tcp-wrappers,ed,wireless-tools,libacpi,libnss-mdns --nogpgcheck install locale-base-en-us locale-base-en-gb rpm ardupilot-fw dnf intel-aero-repo run-postinsts |