[compiler-rt] [tsan][RISCV] Add Go support for linux/riscv64 (PR #127295)
Meng Zhuo via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 01:14:46 PST 2025
================
@@ -373,6 +373,12 @@ void InitializePlatformEarly() {
Printf("FATAL: Found %zd - Supported 39 and 48\n", vmaSize);
Die();
}
+# else
+ if (vmaSize != 48) {
----------------
mengzhuo wrote:
Go will use up to 1TiB VM for race detector (https://github.com/golang/go/blob/master/src/runtime/malloc.go#L521-L528)
which is way bigger than SV39 maximum vm size (256GiB)
https://github.com/llvm/llvm-project/pull/127295
More information about the llvm-commits
mailing list