mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 19:35:54 +00:00
build: Go back to dropping __eprintf reference when building with Clang, see
comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121146 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6aa4943599
commit
dc3b906173
@ -44,8 +44,13 @@ static void *DoSearch(const char* symbolName) {
|
|||||||
EXPLICIT_SYMBOL(__umoddi3);
|
EXPLICIT_SYMBOL(__umoddi3);
|
||||||
|
|
||||||
// __eprintf is sometimes used for assert() handling on x86.
|
// __eprintf is sometimes used for assert() handling on x86.
|
||||||
|
//
|
||||||
|
// FIXME: Currently disabled when using Clang, as we don't always have our
|
||||||
|
// runtime support libraries available.
|
||||||
|
#ifndef __clang__
|
||||||
#ifdef __i386__
|
#ifdef __i386__
|
||||||
EXPLICIT_SYMBOL(__eprintf);
|
EXPLICIT_SYMBOL(__eprintf);
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user