Module Name: src Committed By: rin Date: Wed Dec 16 01:35:39 UTC 2020
Modified Files: src/doc: HACKS Log Message: -O0 hack was reintroduced to jemalloc/rtree.c for GCC9 on alpha. To generate a diff of this commit: cvs rdiff -u -r1.215 -r1.216 src/doc/HACKS Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/doc/HACKS diff -u src/doc/HACKS:1.215 src/doc/HACKS:1.216 --- src/doc/HACKS:1.215 Wed Dec 2 14:20:19 2020 +++ src/doc/HACKS Wed Dec 16 01:35:39 2020 @@ -1,4 +1,4 @@ -# $NetBSD: HACKS,v 1.215 2020/12/02 14:20:19 wiz Exp $ +# $NetBSD: HACKS,v 1.216 2020/12/16 01:35:39 rin Exp $ # # This file is intended to document workarounds for currently unsolved # (mostly) compiler bugs. @@ -953,11 +953,11 @@ kcah port alpha hack GCC 7.4/8.3/9.3: userland binaries crash randomly (port-alpha/54307) cdate Fri Nov 1 20:43:35 UTC 2019 -mdate Wed Oct 7 16:00:00 JST 2020 +mdate Wed Dec 16 01:21:32 UTC 2020 who rin file src/external/bsd/jemalloc/lib/Makefile.inc: 1.11 -descr GCC miscompiles rtree.c (for 7.4 and 8.3) and tcache.c (for 7.4, 8.3, - and 9.3) with optimization levels -O[12]. Compile these files with -O0, +descr GCC miscompiles rtree.c and tcache.c (for 7.4, 8.3, and 9.3) with + optimization levels -O[12]. Compile these files with -O0, alternatively, compile whole jemalloc with -DJEMALLOC_DEBUG. kcah