svn commit: samba r12667 - in trunk/source: .

vlendec at samba.org vlendec at samba.org
Sun Jan 1 20:05:18 GMT 2006


Author: vlendec
Date: 2006-01-01 20:05:15 +0000 (Sun, 01 Jan 2006)
New Revision: 12667

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12667

Log:
This is necessary for me to make precompiled headers actually speed up
things. pch needs to be compiled with exactly the same flags as the binary
proper is.

Lars, please check.

Thanks,

Volker

Modified:
   trunk/source/Makefile.in


Changeset:
Modified: trunk/source/Makefile.in
===================================================================
--- trunk/source/Makefile.in	2006-01-01 20:03:25 UTC (rev 12666)
+++ trunk/source/Makefile.in	2006-01-01 20:05:15 UTC (rev 12667)
@@ -835,7 +835,7 @@
 # of gcc-3.4 and run 'make pch' before you do the main build. 
 pch:
 	rm -f $(srcdir)/include/includes.h.gch
-	$(CC) -I. -I$(srcdir) $(FLAGS) -c $(srcdir)/include/includes.h -o $(srcdir)/include/includes.h.gch
+	$(CC) -I. -I$(srcdir) $(FLAGS) @PIE_CFLAGS@ -c $(srcdir)/include/includes.h -o $(srcdir)/include/includes.h.gch
 
 ##
 ## Targets for 'make test'



More information about the samba-cvs mailing list