mirror of
https://github.com/RPCSX/llvm.git
synced 2025-03-01 09:26:22 +00:00
Fix the apple build issue caused by r288956
Should be checking if HAVE_CRASHREPORTERCLIENT_H is defined not relying on it having a value. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288963 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1b5c4be5f4
commit
746d96524f
@ -79,7 +79,7 @@ static void PrintCurStackTrace(raw_ostream &OS) {
|
||||
}
|
||||
|
||||
// Integrate with crash reporter libraries.
|
||||
#if defined (__APPLE__) && HAVE_CRASHREPORTERCLIENT_H
|
||||
#if defined (__APPLE__) && defined(HAVE_CRASHREPORTERCLIENT_H)
|
||||
// If any clients of llvm try to link to libCrashReporterClient.a themselves,
|
||||
// only one crash info struct will be used.
|
||||
extern "C" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user