[Bug c++/70401] [c++1z on mingw]compile variadic template failed

2018-02-18 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70401 --- Comment #6 from jyong at gcc dot gnu.org --- I don't think this is mingw specific, I get the same error on Linux with gcc-7.3. g++ -std=c++1z variadic.cpp -o aa variadic.cpp: In instantiation of ‘std::ostream& operator<&l

[Bug bootstrap/69506] [6 Regression] check-in 232454 seems to cause problems with cygwin builds

2017-05-02 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69506 --- Comment #9 from jyong at gcc dot gnu.org --- Author: jyong Date: Tue May 2 15:04:39 2017 New Revision: 247502 URL: https://gcc.gnu.org/viewcvs?rev=247502&root=gcc&view=rev Log: 2017-05-02 Hugo Beauzée-Luyssen PR libstdc

[Bug target/80881] [7/8 Regression] null pointer access in libgomp.h

2017-11-27 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80881 --- Comment #5 from jyong at gcc dot gnu.org --- Can you post the full backtrace? Meanwhile, I'll setup gcc with --enable-tls and give this a try.

[Bug target/80881] [7/8 Regression] null pointer access in libgomp.h

2017-11-28 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80881 --- Comment #6 from jyong at gcc dot gnu.org --- Crash seems to be coming from the mingw-w64 runtime tls handler.

[Bug target/80881] [7/8 Regression] null pointer access in libgomp.h

2017-11-30 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80881 jyong at gcc dot gnu.org changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed

[Bug c++/77277] -fdiagnostics-color=always disabled on _WIN32

2017-12-02 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77277 jyong at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED CC

[Bug target/66488] segfault on sizeof(long) < sizeof(void*) and large GCC memory usage

2016-08-17 Thread jyong at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66488 --- Comment #13 from jyong at gcc dot gnu.org --- Author: jyong Date: Wed Aug 17 09:34:52 2016 New Revision: 239525 URL: https://gcc.gnu.org/viewcvs?rev=239525&root=gcc&view=rev Log: 016-08-17 Stanislaw Halik PR targ

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-17 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #40 from jyong at gcc dot gnu.org --- Personally I'm fine with gcc configure warning of a potentially broken binutils dwarf5 handing when targeting mingw/cygwin with binutils 2.35.1 or earlier. How do you even parse binutils ver

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-18 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #43 from jyong at gcc dot gnu.org --- Is it as simple as running the following? ${target}-objdump -j .debug_loclists -h a.exe | grep -q 0001 A return code 0 means potentially broken linker script is used.

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-23 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #46 from jyong at gcc dot gnu.org --- Is there a machine parsable output from objdump? I'm not sure if using gawk would be OK. Such a test also won't work in build != host conditions. I'm considering just having a no

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-23 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #48 from jyong at gcc dot gnu.org --- Now that's an interesting trick I never thought of. There's LLVM based mingw, but I have never used nor do I know if it is relevant here. Gold is ELF only as far as I know, so it woul

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-23 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #50 from jyong at gcc dot gnu.org --- I'll try testing it out over the next few days, thanks for the patch.

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-23 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 jyong at gcc dot gnu.org changed: What|Removed |Added Attachment #50459|0 |1 is obsolete

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-23 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #52 from jyong at gcc dot gnu.org --- Oops I need retest with optimizations enabled to see the debug sections emitted. On the other hand, the new adjusted patch detects the binutils bug fine, tested with new and old binutils.

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-24 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #56 from jyong at gcc dot gnu.org --- OK, I've tested the patch from attachment 50461, seems to work fine: gcc uses dwarf 4 by default if it does find a broken linker, but allows the user to specify -gdwarf-5 if they want, resu

[Bug bootstrap/98860] [11 Regression] bootstrap failure on MinGW-w64 windows 10

2021-03-31 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98860 --- Comment #60 from jyong at gcc dot gnu.org --- Thanks all for debugging and finding a solution.

[Bug c/99872] New: [11 Regression] optimizations sometimes lead to missing asm prefixes

2021-04-01 Thread jyong at gcc dot gnu.org via Gcc-bugs
Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: jyong at gcc dot gnu.org Target Milestone: --- Host: x86_64-pc-linux-gnu Target: x86_64-w64-mingw32 Build: x86_64-pc-linux-gnu Created

[Bug c/99872] [11 Regression] optimizations sometimes lead to missing asm prefixes

2021-04-06 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99872 --- Comment #2 from jyong at gcc dot gnu.org --- No, its the internal compiler symbols like LC5 and _LC6 generated by GCC ignoring the underscore prefix setting for the target, causing GAS to emit them as external undefined symbols. LD fails to

[Bug target/99872] [11 Regression] optimizations sometimes lead to missing asm prefixes

2021-04-06 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99872 --- Comment #5 from jyong at gcc dot gnu.org --- I'll test out the patch soon.

[Bug target/99872] [11 Regression] optimizations sometimes lead to missing asm prefixes

2021-04-06 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99872 --- Comment #6 from jyong at gcc dot gnu.org --- I can confirm the symbols are correctly generated regardless of -fno-leading-underscore or not, the internal symbols are no longer emitted as undefined after assembly. GCC can also finish building

[Bug target/99234] [10/11 regression] wrong result for 1.0/3.0 with -O2 -fno-omit-frame-pointer -frounding-math

2021-02-25 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99234 jyong at gcc dot gnu.org changed: What|Removed |Added CC||ktietz70 at googlemail dot com

[Bug debug/100383] cfi sections directive detection fails with binutils 2.36

2021-05-03 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100383 jyong at gcc dot gnu.org changed: What|Removed |Added Last reconfirmed||2021-05-03

[Bug libgcc/62109] __gthr_i486_lock_cmp_xchg missing clobber

2022-01-15 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62109 jyong at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution

[Bug bootstrap/55886] gcc/configure.ac problems lead to GCC 4.7.2 not building for x86_64-pc-mingw64

2021-08-18 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55886 jyong at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution

[Bug testsuite/108192] g++.dg/cet-notrack-1.C searching for wrong function on mingw

2024-02-17 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108192 jyong at gcc dot gnu.org changed: What|Removed |Added CC||jyong at gcc dot gnu.org

[Bug libgcc/113850] condition variables timed wait does a lot of spurious wakeups on Win32 threading implementation

2024-02-19 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113850 jyong at gcc dot gnu.org changed: What|Removed |Added Status|NEW |RESOLVED Resolution

[Bug libgcc/113337] Uncaught rethrown exceptions don't invoke std::terminate if SEH-based unwinding is used

2024-02-19 Thread jyong at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113337 jyong at gcc dot gnu.org changed: What|Removed |Added Resolution|--- |FIXED CC