]> Cypherpunks repositories - gostls13.git/commit
runtime/cgo: add -fno-stack-protector to CFLAGS
authorIan Lance Taylor <iant@golang.org>
Mon, 8 Aug 2022 02:21:15 +0000 (19:21 -0700)
committerGopher Robot <gobot@golang.org>
Mon, 8 Aug 2022 21:29:53 +0000 (21:29 +0000)
commit365ca6947287d2b8fd9ca49fef74a1297786e8b1
tree6956dec8e13e76c25d7643f7df668633e0e1cf0b
parent3315066f46d5dce3e4474bdcde0997d688c79436
runtime/cgo: add -fno-stack-protector to CFLAGS

Some compilers default to having -fstack-protector on, which breaks
when using internal linking because the linker doesn't know how to
find the support functions.

Fixes #52919
Fixes #54313

Change-Id: I6f51d5e906503f61fc768ad8e30c163bad135087
Reviewed-on: https://go-review.googlesource.com/c/go/+/421935
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
src/runtime/cgo/cgo.go