forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
27 additions
and
157 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git bazel/glog.bzl bazel/glog.bzl | ||
index 4c11f12..2510ecc 100644 | ||
--- bazel/glog.bzl | ||
+++ bazel/glog.bzl | ||
@@ -17,7 +17,6 @@ def glog_library(namespace = "google", with_gflags = 1, **kwargs): | ||
"-DGLOG_BAZEL_BUILD", | ||
"-DHAVE_STDINT_H", | ||
"-DHAVE_STRING_H", | ||
- "-DHAVE_UNWIND_H", | ||
] + (["-DHAVE_LIB_GFLAGS"] if with_gflags else []) | ||
|
||
linux_or_darwin_copts = [ | ||
@@ -37,6 +36,8 @@ def glog_library(namespace = "google", with_gflags = 1, **kwargs): | ||
"-DHAVE_SYS_TIME_H", | ||
# Enable dumping stacktrace upon sigaction. | ||
"-DHAVE_SIGACTION", | ||
+ "-DHAVE_EXECINFO_H", | ||
+ "-DHAVE_SYMBOLIZE", | ||
# For logging.cc. | ||
"-DHAVE_PREAD", | ||
"-DHAVE___ATTRIBUTE__", | ||
-- |