mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
9a84e6bfb5
optimizations. The motivation to make a separate pgcc port is, to provide two versions, an official release, which is missing the leading edge of developement and an interesting current version, which fixes some things and might breake (or not) others. Fact is, that one is able to compile and run a complete FreeBSD-current kernel without trouble and so closes 2 PR's. >Number: 1221 >Category: bino and possibly >Number: 1222 >Category: ports (should be tested by the submitter.
21 lines
686 B
Plaintext
21 lines
686 B
Plaintext
--- Makefile.in.orig Wed Dec 18 00:15:45 1996
|
|
+++ Makefile.in Wed Dec 18 00:24:31 1996
|
|
@@ -53,7 +53,7 @@
|
|
# TCFLAGS is used for compilations with the GCC just built.
|
|
XCFLAGS =
|
|
TCFLAGS =
|
|
-CFLAGS = -g
|
|
+CFLAGS = -pipe -O2
|
|
BOOT_CFLAGS = -O $(CFLAGS)
|
|
# These exists to be overridden by the x-* and t-* files, respectively.
|
|
X_CFLAGS =
|
|
@@ -460,7 +460,7 @@
|
|
# Both . and srcdir are used, in that order,
|
|
# so that tm.h and config.h will be found in the compilation
|
|
# subdirectory rather than in the source directory.
|
|
-INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
|
|
+INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config -I$(srcdir)/cp/inc
|
|
|
|
# Always use -I$(srcdir)/config when compiling.
|
|
.c.o:
|