Internal change

PiperOrigin-RevId: 295579669
Change-Id: I2488a87a78cf76f0d4ddf73d115e443bd801e420
This commit is contained in:
Wiktor Garbacz 2020-02-17 06:54:21 -08:00 committed by Copybara-Service
parent 05280287e0
commit 5b1119aa6d

View File

@ -22,14 +22,14 @@
# Bazel adds -pie by default but -static is incompatible with it, so we use
# the features flag to force it off.
load("//sandboxed_api/bazel:build_defs.bzl", "sapi_platform_copts")
package(default_visibility = [
"//sandboxed_api/sandbox2:__subpackages__",
])
licenses(["notice"]) # Apache 2.0
load("//sandboxed_api/bazel:build_defs.bzl", "sapi_platform_copts")
STATIC_LINKOPTS = [
# Necessary for linking pthread statically into the binary. See the
# answer to https://stackoverflow.com/questions/35116327/ for context.