Created
July 4, 2020 11:28
-
-
Save DemonRx/4c03b0596d7861bffa1fda356ac0cb13 to your computer and use it in GitHub Desktop.
Build package GCC log 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
make[1]: Entering directory '/home/demon/dev/mxe' | |
uname -a | |
Linux Bionic18 5.0.0-48-generic #52~18.04.1-Ubuntu SMP Thu Apr 30 09:53:22 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux | |
git log --pretty=tformat:"%H - %s [%ar] [%d]" -1 | |
e6099cdb3e1252826d3667b69559549dcea1afa3 - s3-fetch-and-sync: fix for s3cmd update [8 days ago] [ (HEAD -> master, origin/master, origin/HEAD)] | |
lsb_release -a 2>/dev/null || sw_vers 2>/dev/null || true | |
Distributor ID: Ubuntu | |
Description: Ubuntu 18.04.4 LTS | |
Release: 18.04 | |
Codename: bionic | |
autoconf --version 2>/dev/null | head -1 | |
autoconf (GNU Autoconf) 2.69 | |
automake --version 2>/dev/null | head -1 | |
automake (GNU automake) 1.15.1 | |
gcc --version | |
gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 | |
Copyright (C) 2017 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. | |
g++ --version | |
g++ (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 | |
Copyright (C) 2017 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. | |
python --version | |
Python 2.7.17 | |
perl --version 2>&1 | head -3 | |
This is perl 5, version 26, subversion 1 (v5.26.1) built for x86_64-linux-gnu-thread-multi | |
(with 67 registered patches, see perl -V for more detail) | |
rm -rf '/tmp/tmp-gcc-i686-w64-mingw32.static' | |
mkdir -p '/tmp/tmp-gcc-i686-w64-mingw32.static' | |
mkdir -p '/tmp/tmp-gcc-i686-w64-mingw32.static/gcc-8.4.0' | |
mkdir -p '/tmp/tmp-gcc-i686-w64-mingw32.static/gcc-8.4.0.build_' | |
# disable wine with readonly directory | |
# see https://github.com/mxe/mxe/issues/841 | |
mkdir -p '/tmp/tmp-gcc-i686-w64-mingw32.static/readonly' | |
chmod 0555 '/tmp/tmp-gcc-i686-w64-mingw32.static/readonly' | |
cd '/tmp/tmp-gcc-i686-w64-mingw32.static' && tar xzf '/home/demon/dev/mxe/pkg/gcc-8.4.0.tar.gz' | |
cd '/tmp/tmp-gcc-i686-w64-mingw32.static/gcc-8.4.0' | |
(cd '/tmp/tmp-gcc-i686-w64-mingw32.static/gcc-8.4.0' && patch -p1 -u) < /home/demon/dev/mxe/src/gcc-1-fixes.patch | |
patching file gcc/config/i386/driver-i386.c | |
Hunk #1 succeeded at 26 (offset 2 lines). | |
patching file gcc/config.gcc | |
Hunk #1 succeeded at 1810 (offset 97 lines). | |
patching file gcc/config/i386/mingw32.h | |
Hunk #1 succeeded at 172 (offset 2 lines). | |
patching file libcpp/lex.c | |
Reversed (or previously applied) patch detected! Assume -R? [n] | |
Apply anyway? [n] | |
Skipping patch. | |
1 out of 1 hunk ignored -- saving rejects to file libcpp/lex.c.rej | |
patching file gcc/cfgexpand.c | |
Reversed (or previously applied) patch detected! Assume -R? [n] | |
Apply anyway? [n] | |
Skipping patch. | |
2 out of 2 hunks ignored -- saving rejects to file gcc/cfgexpand.c.rej | |
patching file gcc/cp/class.c | |
Hunk #1 FAILED at 5549. | |
Hunk #2 FAILED at 5557. | |
2 out of 2 hunks FAILED -- saving rejects to file gcc/cp/class.c.rej | |
patching file gcc/cp/constexpr.c | |
Hunk #1 FAILED at 219. | |
1 out of 1 hunk FAILED -- saving rejects to file gcc/cp/constexpr.c.rej | |
Makefile:827: recipe for target 'build-only-gcc_i686-w64-mingw32.static' failed | |
make[1]: *** [build-only-gcc_i686-w64-mingw32.static] Error 1 | |
make[1]: Leaving directory '/home/demon/dev/mxe' | |
real 0m16.122s | |
user 0m14.816s | |
sys 0m3.757s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment