[llvm-commits] CVS: llvm/lib/System/ltdl.c
Chris Lattner
lattner at cs.uiuc.edu
Sun Feb 13 15:37:24 PST 2005
Changes in directory llvm/lib/System:
ltdl.c updated: 1.2 -> 1.3
---
Log message:
Fix the llvm bootstrap
---
Diffs of the changes: (+2 -2)
ltdl.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/lib/System/ltdl.c
diff -u llvm/lib/System/ltdl.c:1.2 llvm/lib/System/ltdl.c:1.3
--- llvm/lib/System/ltdl.c:1.2 Mon Nov 29 06:04:27 2004
+++ llvm/lib/System/ltdl.c Sun Feb 13 17:37:09 2005
@@ -1165,7 +1165,7 @@
/* --- 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 @@
#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__
More information about the llvm-commits
mailing list