-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src/symbolize.cc: fix build without dlfcn.h
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
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
10498b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ffontaine This commit breaks Bazel on macOS: https://buildkite.com/bazel/google-logging/builds/715
10498b4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not familiar with this platform but I'll do my best to fix it. I saw that you have two build systems: cmake and autotools. If macOS uses autotools then it could explain the issue as the HAVE_DLFCN_H check is only present in the CMakeLists.txt so I can fix this first issue.
However if macOS also uses cmake, there is probably another issue. I can always remove the
&& defined(HAVE_DLFCN_H)
from the macOS branch.