1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix the llvm bootstrap

llvm-svn: 20170
This commit is contained in:
Chris Lattner 2005-02-13 23:37:09 +00:00
parent c2aa286697
commit efacfe896c

View File

@ -1165,7 +1165,7 @@ static struct lt_user_dlloader sys_dl =
/* --- SHL_LOAD() INTERFACE LOADER --- */
#if HAVE_SHL_LOAD
#if HAVE_SHL_LOAD && !defined(__llvm__)
/* dynamic linking with shl_load (HP-UX) (comments from gmodule) */
@ -2214,7 +2214,7 @@ lt_dlinit ()
#if HAVE_LIBDL
errors += lt_dlloader_add (lt_dlloader_next (0), &sys_dl, "dlopen");
#endif
#if HAVE_SHL_LOAD
#if HAVE_SHL_LOAD && !defined(__llvm__)
errors += lt_dlloader_add (lt_dlloader_next (0), &sys_shl, "dlopen");
#endif
#ifdef __WINDOWS__