-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8718034
commit febc629
Showing
26 changed files
with
275 additions
and
43 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
diff --git a/go/private/actions/stdlib.bzl b/go/private/actions/stdlib.bzl | ||
index 11a8278f..7346aecd 100644 | ||
index abacbc80..09b2c9bf 100644 | ||
--- a/go/private/actions/stdlib.bzl | ||
+++ b/go/private/actions/stdlib.bzl | ||
@@ -92,7 +92,8 @@ def _build_stdlib(go): | ||
ldflags = [ | ||
option | ||
for option in extldflags_from_cc_toolchain(go) | ||
- if option not in ("-lstdc++", "-lc++") | ||
+ if option not in ("-lstdc++", "-lc++", "-l:libstdc++.a", "-l:libc++.a", "-l:libc++abi.a") and | ||
+ not (option.startswith("-fsanitize") or option.startswith("-fno-sanitize")) | ||
] | ||
env.update({ | ||
"CGO_ENABLED": "1", | ||
@@ -100,7 +100,7 @@ def _build_env(go): | ||
ldflags = [ | ||
option | ||
for option in extldflags_from_cc_toolchain(go) | ||
- if option not in ("-lstdc++", "-lc++", "-static") and option not in COVERAGE_OPTIONS_DENYLIST | ||
+ if option not in ("-lstdc++", "-lc++", "-static", "-l:libstdc++.a", "-l:libc++.a", "-l:libc++abi.a") and option not in COVERAGE_OPTIONS_DENYLIST | ||
] | ||
env.update({ | ||
"CGO_ENABLED": "1", |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
DOCKER_IMAGE_TAG=202306170607 | ||
LINTER_IMAGE_DIGEST=f9826c782c047279ba348c51b04595680be68dd0d33d0d87a3fedb275626c0db | ||
DEV_IMAGE_DIGEST=b3508ad90d22f77d1a77cbc2d69a9e61846b6b6978cbef117bd9a2e18ce04248 | ||
DEV_IMAGE_WITH_EXTRAS_DIGEST=32f74b898f226df8c49042c8435ff9bcd3aed2cc9932f83893a81ae839738ccc | ||
DOCKER_IMAGE_TAG=202308141857 | ||
LINTER_IMAGE_DIGEST=ac78d64a06b7174e013f81b0fa5682eb4d580ea61dae5a67ac8b3d34863f115e | ||
DEV_IMAGE_DIGEST=0408c793b8954ca96e6712b574993845bcabfc2d6c28fd07ea409929da95cb0e | ||
DEV_IMAGE_WITH_EXTRAS_DIGEST=13c1b60494e08f7f8380d601646e7884c58e905901a29cc0a201d7b664a69079 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module px.dev/pixie | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
cloud.google.com/go v0.81.0 | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.