mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
45 lines
1.2 KiB
Diff
45 lines
1.2 KiB
Diff
This patch makes building the shared library possible.
|
|
|
|
Copyright 2007 Yann E. MORIN <yann.morin.1998@anciens.enib.fr>
|
|
Licensed to you as dmalloc-5.5.2 is.
|
|
|
|
diff -dur dmalloc-5.5.2.orig/Makefile.in dmalloc-5.5.2/Makefile.in
|
|
--- dmalloc-5.5.2.orig/Makefile.in 2007-05-14 19:26:14.000000000 +0200
|
|
+++ dmalloc-5.5.2/Makefile.in 2007-05-18 15:54:04.000000000 +0200
|
|
@@ -257,7 +257,7 @@
|
|
# via: http://256.com/gray/email.html
|
|
$(LIB_SL) : $(LIBRARY)
|
|
rm -f $@ $@.t
|
|
- @shlinkargs@ $(LIBRARY) $(OBJS) $(NORMAL_OBJS)
|
|
+ @shlinkargs@ $(LIBRARY)
|
|
mv $@.t $@
|
|
|
|
$(LIBRARY) : $(OBJS) $(NORMAL_OBJS)
|
|
@@ -270,7 +270,7 @@
|
|
|
|
$(LIB_TH_SL) : $(LIB_TH)
|
|
rm -f $@ $@.t
|
|
- @shlinkargs@ $(LIB_TH) $(OBJS) $(THREAD_OBJS)
|
|
+ @shlinkargs@ $(LIB_TH)
|
|
mv $@.t $@
|
|
|
|
$(LIB_CXX) : $(OBJS) $(NORMAL_OBJS) $(CXX_OBJS)
|
|
@@ -279,7 +279,7 @@
|
|
|
|
$(LIB_CXX_SL) : $(LIB_CXX)
|
|
rm -f $@ $@.t
|
|
- @shlinkargs@ $(LIB_CXX) $(OBJS) $(NORMAL_OBJS) $(CXX_OBJS)
|
|
+ @shlinkargs@ $(LIB_CXX)
|
|
mv $@.t $@
|
|
|
|
$(LIB_TH_CXX) : $(OBJS) $(THREAD_OBJS) $(CXX_OBJS)
|
|
@@ -288,7 +288,7 @@
|
|
|
|
$(LIB_TH_CXX_SL) : $(LIB_TH_CXX)
|
|
rm -f $@ $@.t
|
|
- @shlinkargs@ $(LIB_TH_CXX) $(OBJS) $(THREAD_OBJS) $(CXX_OBJS)
|
|
+ @shlinkargs@ $(LIB_TH_CXX)
|
|
mv $@.t $@
|
|
|
|
threadssl : $(LIB_TH_SL)
|