[uClibc-cvs] CVS uClibc/ldso/ldso

CVS User andersen andersen at codepoet.org
Wed Dec 22 18:51:29 UTC 2004


Update of /var/cvs/uClibc/ldso/ldso
In directory nail:/tmp/cvs-serv20031/ldso/ldso

Modified Files:
	Makefile 
Log Message:
Patch from Peter S. Mazinger to consistantly use "ASFLAGS"
as the flags for all calls to 'as'


--- /var/cvs/uClibc/ldso/ldso/Makefile	2004/12/11 12:28:51	1.66
+++ /var/cvs/uClibc/ldso/ldso/Makefile	2004/12/22 18:51:28	1.67
@@ -22,6 +22,8 @@
 LDSO_FULLNAME=ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
 
 SSPFLAGS=$(call check_gcc,-fno-stack-protector,)
+# reset to initial (disabling predefined CFLAGS)
+ASFLAGS=
 
 XXFLAGS=$(XWARNINGS) $(SSPFLAGS)
 ifeq ($(DODEBUG),y)
@@ -77,7 +79,7 @@
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 
 $(AOBJS): %.o : %.S
-	$(CC) $(XXFLAGS) -I../libdl -c $< -o $@
+	$(CC) $(XXFLAGS) $(ASFLAGS) -I../libdl -c $< -o $@
 	$(STRIPTOOL) -x -R .note -R .comment $*.o
 
 ldso.o: $(CSRC)



More information about the uClibc-cvs mailing list