summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1994-10-25 19:34:57 +0000
committerbde <bde@FreeBSD.org>1994-10-25 19:34:57 +0000
commit10fb081e1d1065cc28c083ae3a1a2dcc6c83c001 (patch)
tree001d640e67d42d8d1be1ef4ab825db19bbf44423
parent04ad970a9377ad22ec9e01bbf5d5b586812d73e9 (diff)
downloadFreeBSD-src-10fb081e1d1065cc28c083ae3a1a2dcc6c83c001.zip
FreeBSD-src-10fb081e1d1065cc28c083ae3a1a2dcc6c83c001.tar.gz
Never strip the kernel.
Recommend -Wimplicit in CWARNFLAGS next. There are still a few hundred potential arg mismatches because no function declaration is in scope. Don't duplicate option `-I.'. Remove null editing of the assembler source for all profiled objects. The required magic has been done since prehistoric times by an asm("mcount") declaration. Simplify the clean rule. Don't try to be clever about timestamps involving genassym. genassym's timestamp usually got ahead of assym.s's timestamp, so `make' almost always had to run genassym and compare *assym.s to decide that nothing needed to be done. The cost is reassembling a few files whenever genassym is rebuilt. Assembling is almost as fast as comparing. Always go through genassym.o to build genassym. This would have avoided numerous bugs involving mkdep -p. Now it just stops genassym from depending on the name of the temporary object file. Use ${CFLAGS} for building genassym. Mainly ${CWARNFLAGS} were missing.
-rw-r--r--sys/conf/Makefile.i38656
-rw-r--r--sys/conf/Makefile.powerpc56
-rw-r--r--sys/i386/conf/Makefile.i38656
3 files changed, 48 insertions, 120 deletions
diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386
index 7497403..53d49a2 100644
--- a/sys/conf/Makefile.i386
+++ b/sys/conf/Makefile.i386
@@ -1,6 +1,6 @@
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
-# $Id: Makefile.i386,v 1.46 1994/10/18 19:45:46 wollman Exp $
+# $Id: Makefile.i386,v 1.47 1994/10/21 01:10:54 wollman Exp $
#
# Makefile for FreeBSD
#
@@ -25,15 +25,6 @@ LD?= /usr/bin/ld
CC?= cc
CPP?= cpp
DBSYM?= /usr/sbin/dbsym
-.if defined(DEBUG)
-.if defined(NOSTRIP)
-STRIP= echo '(skipping) strip'
-.else
-STRIP= cp $@ $@.sym; strip
-.endif
-.else
-STRIP= strip
-.endif
.if exists(./@/.)
S= ./@
@@ -43,10 +34,9 @@ S= ../..
I386= ${S}/i386
CWARNFLAGS?=-W -Wreturn-type -Wcomment -Wredundant-decls
-
#
-# The following flag is next up for working on:
-# -Wnested-externs
+# The following flags are next up for working on:
+# -Wimplicit -Wnested-externs
#
# When working on removing warnings from code, the `-Werror' flag should be
# of material assistance.
@@ -62,9 +52,10 @@ NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} $<
NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
# XXX errors leak out of all the pipes. Should use cc *.S.
# XXX LOCORE means "don't declare C stuff" not "for locore.s".
-NORMAL_S= ${CPP} -I. -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
+NORMAL_S= ${CPP} -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $<
DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
+PROFILE_C= ${CC} -c ${CFLAGS} ${PARAM} $<
SFILES= ${I386}/i386/exception.s ${I386}/i386/microtime.s \
${I386}/i386/support.s ${I386}/i386/swtch.s ${I386}/apm/apm_setup.s
@@ -75,16 +66,7 @@ SYSTEM_DEP=Makefile symbols.sort ${SYSTEM_OBJS} libkern.a
SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
SYSTEM_LD= @${LD} -Bstatic -Z -T ${LOAD_ADDRESS} -o $@ -X ${SYSTEM_OBJS} vers.o libkern.a
SYSTEM_LD_TAIL= @echo rearranging symbols; symorder symbols.sort $@; \
- ${DBSYM} -fT ${LOAD_ADDRESS} $@; ${STRIP} -x $@; size $@; chmod 755 $@
-
-# (XXX) ok, this is weird. but we've got a working ed, and a broken ex, and
-# the script is identical for either... -- cgd
-#
-GPROF.EX= /usr/src/lib/csu.i386/gprof.ex
-PROFILE_C= ${CC} -S -c ${CFLAGS} $< ; \
- ed - $*.s < ${GPROF.EX} ; \
- ${AS} -o $@ $*.s ; \
- rm -f $*.s
+ ${DBSYM} -fT ${LOAD_ADDRESS} $@; size $@; chmod 755 $@
%OBJS
@@ -115,11 +97,10 @@ ${LIBKERN}:
@(cd $S/libkern; make)
clean:
- rm -f eddep *kernel tags *.o locore.i [a-uw-z]*.s \
- errs linterrs makelinks genassym ,assym.s stamp-assym
+ rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym
#lint: /tmp param.c
-# @lint -hbxn -I. -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
+# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
# ${I386}/i386/Locore.c ${CFILES} ioconf.c param.c | \
# grep -v 'struct/union .* never defined' | \
# grep -v 'possible pointer alignment problem'
@@ -149,27 +130,22 @@ trap.o cons.o: Makefile
./assym.s: assym.s
assym.s: genassym
- ./genassym >,assym.s
- if cmp -s assym.s ,assym.s; then \
- rm -f ,assym.s; \
- else \
- rm -f assym.s; \
- mv ,assym.s assym.s; \
- fi
+ ./genassym >assym.s
# Some of the defines that genassym outputs may well depend on the
# value of kernel options.
-genassym: Makefile
- ${CC} ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c -static -o genassym
+genassym.o: ${I386}/i386/genassym.c Makefile
+ ${CC} -c ${CFLAGS} ${PARAM} ${I386}/i386/genassym.c
+
+genassym: genassym.o
+ ${CC} -static ${CFLAGS} ${PARAM} genassym.o -o $@
# XXX this assumes that the options for NORMAL_C* and DRIVER_C* are identical.
depend: assym.s param.c vnode_if.h
mkdep ${COPTS} ${CFILES} ${SYSTEM_CFILES}
- mkdep -a -p ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c
+ mkdep -a ${COPTS} ${PARAM} ${I386}/i386/genassym.c
MKDEP_CPP=${CPP} ; export MKDEP_CPP ; \
- mkdep -a -I. -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES}
+ mkdep -a -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES}
links:
egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc
index 7497403..53d49a2 100644
--- a/sys/conf/Makefile.powerpc
+++ b/sys/conf/Makefile.powerpc
@@ -1,6 +1,6 @@
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
-# $Id: Makefile.i386,v 1.46 1994/10/18 19:45:46 wollman Exp $
+# $Id: Makefile.i386,v 1.47 1994/10/21 01:10:54 wollman Exp $
#
# Makefile for FreeBSD
#
@@ -25,15 +25,6 @@ LD?= /usr/bin/ld
CC?= cc
CPP?= cpp
DBSYM?= /usr/sbin/dbsym
-.if defined(DEBUG)
-.if defined(NOSTRIP)
-STRIP= echo '(skipping) strip'
-.else
-STRIP= cp $@ $@.sym; strip
-.endif
-.else
-STRIP= strip
-.endif
.if exists(./@/.)
S= ./@
@@ -43,10 +34,9 @@ S= ../..
I386= ${S}/i386
CWARNFLAGS?=-W -Wreturn-type -Wcomment -Wredundant-decls
-
#
-# The following flag is next up for working on:
-# -Wnested-externs
+# The following flags are next up for working on:
+# -Wimplicit -Wnested-externs
#
# When working on removing warnings from code, the `-Werror' flag should be
# of material assistance.
@@ -62,9 +52,10 @@ NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} $<
NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
# XXX errors leak out of all the pipes. Should use cc *.S.
# XXX LOCORE means "don't declare C stuff" not "for locore.s".
-NORMAL_S= ${CPP} -I. -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
+NORMAL_S= ${CPP} -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $<
DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
+PROFILE_C= ${CC} -c ${CFLAGS} ${PARAM} $<
SFILES= ${I386}/i386/exception.s ${I386}/i386/microtime.s \
${I386}/i386/support.s ${I386}/i386/swtch.s ${I386}/apm/apm_setup.s
@@ -75,16 +66,7 @@ SYSTEM_DEP=Makefile symbols.sort ${SYSTEM_OBJS} libkern.a
SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
SYSTEM_LD= @${LD} -Bstatic -Z -T ${LOAD_ADDRESS} -o $@ -X ${SYSTEM_OBJS} vers.o libkern.a
SYSTEM_LD_TAIL= @echo rearranging symbols; symorder symbols.sort $@; \
- ${DBSYM} -fT ${LOAD_ADDRESS} $@; ${STRIP} -x $@; size $@; chmod 755 $@
-
-# (XXX) ok, this is weird. but we've got a working ed, and a broken ex, and
-# the script is identical for either... -- cgd
-#
-GPROF.EX= /usr/src/lib/csu.i386/gprof.ex
-PROFILE_C= ${CC} -S -c ${CFLAGS} $< ; \
- ed - $*.s < ${GPROF.EX} ; \
- ${AS} -o $@ $*.s ; \
- rm -f $*.s
+ ${DBSYM} -fT ${LOAD_ADDRESS} $@; size $@; chmod 755 $@
%OBJS
@@ -115,11 +97,10 @@ ${LIBKERN}:
@(cd $S/libkern; make)
clean:
- rm -f eddep *kernel tags *.o locore.i [a-uw-z]*.s \
- errs linterrs makelinks genassym ,assym.s stamp-assym
+ rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym
#lint: /tmp param.c
-# @lint -hbxn -I. -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
+# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
# ${I386}/i386/Locore.c ${CFILES} ioconf.c param.c | \
# grep -v 'struct/union .* never defined' | \
# grep -v 'possible pointer alignment problem'
@@ -149,27 +130,22 @@ trap.o cons.o: Makefile
./assym.s: assym.s
assym.s: genassym
- ./genassym >,assym.s
- if cmp -s assym.s ,assym.s; then \
- rm -f ,assym.s; \
- else \
- rm -f assym.s; \
- mv ,assym.s assym.s; \
- fi
+ ./genassym >assym.s
# Some of the defines that genassym outputs may well depend on the
# value of kernel options.
-genassym: Makefile
- ${CC} ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c -static -o genassym
+genassym.o: ${I386}/i386/genassym.c Makefile
+ ${CC} -c ${CFLAGS} ${PARAM} ${I386}/i386/genassym.c
+
+genassym: genassym.o
+ ${CC} -static ${CFLAGS} ${PARAM} genassym.o -o $@
# XXX this assumes that the options for NORMAL_C* and DRIVER_C* are identical.
depend: assym.s param.c vnode_if.h
mkdep ${COPTS} ${CFILES} ${SYSTEM_CFILES}
- mkdep -a -p ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c
+ mkdep -a ${COPTS} ${PARAM} ${I386}/i386/genassym.c
MKDEP_CPP=${CPP} ; export MKDEP_CPP ; \
- mkdep -a -I. -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES}
+ mkdep -a -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES}
links:
egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
diff --git a/sys/i386/conf/Makefile.i386 b/sys/i386/conf/Makefile.i386
index 7497403..53d49a2 100644
--- a/sys/i386/conf/Makefile.i386
+++ b/sys/i386/conf/Makefile.i386
@@ -1,6 +1,6 @@
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
-# $Id: Makefile.i386,v 1.46 1994/10/18 19:45:46 wollman Exp $
+# $Id: Makefile.i386,v 1.47 1994/10/21 01:10:54 wollman Exp $
#
# Makefile for FreeBSD
#
@@ -25,15 +25,6 @@ LD?= /usr/bin/ld
CC?= cc
CPP?= cpp
DBSYM?= /usr/sbin/dbsym
-.if defined(DEBUG)
-.if defined(NOSTRIP)
-STRIP= echo '(skipping) strip'
-.else
-STRIP= cp $@ $@.sym; strip
-.endif
-.else
-STRIP= strip
-.endif
.if exists(./@/.)
S= ./@
@@ -43,10 +34,9 @@ S= ../..
I386= ${S}/i386
CWARNFLAGS?=-W -Wreturn-type -Wcomment -Wredundant-decls
-
#
-# The following flag is next up for working on:
-# -Wnested-externs
+# The following flags are next up for working on:
+# -Wimplicit -Wnested-externs
#
# When working on removing warnings from code, the `-Werror' flag should be
# of material assistance.
@@ -62,9 +52,10 @@ NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} $<
NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
# XXX errors leak out of all the pipes. Should use cc *.S.
# XXX LOCORE means "don't declare C stuff" not "for locore.s".
-NORMAL_S= ${CPP} -I. -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
+NORMAL_S= ${CPP} -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $<
DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
+PROFILE_C= ${CC} -c ${CFLAGS} ${PARAM} $<
SFILES= ${I386}/i386/exception.s ${I386}/i386/microtime.s \
${I386}/i386/support.s ${I386}/i386/swtch.s ${I386}/apm/apm_setup.s
@@ -75,16 +66,7 @@ SYSTEM_DEP=Makefile symbols.sort ${SYSTEM_OBJS} libkern.a
SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
SYSTEM_LD= @${LD} -Bstatic -Z -T ${LOAD_ADDRESS} -o $@ -X ${SYSTEM_OBJS} vers.o libkern.a
SYSTEM_LD_TAIL= @echo rearranging symbols; symorder symbols.sort $@; \
- ${DBSYM} -fT ${LOAD_ADDRESS} $@; ${STRIP} -x $@; size $@; chmod 755 $@
-
-# (XXX) ok, this is weird. but we've got a working ed, and a broken ex, and
-# the script is identical for either... -- cgd
-#
-GPROF.EX= /usr/src/lib/csu.i386/gprof.ex
-PROFILE_C= ${CC} -S -c ${CFLAGS} $< ; \
- ed - $*.s < ${GPROF.EX} ; \
- ${AS} -o $@ $*.s ; \
- rm -f $*.s
+ ${DBSYM} -fT ${LOAD_ADDRESS} $@; size $@; chmod 755 $@
%OBJS
@@ -115,11 +97,10 @@ ${LIBKERN}:
@(cd $S/libkern; make)
clean:
- rm -f eddep *kernel tags *.o locore.i [a-uw-z]*.s \
- errs linterrs makelinks genassym ,assym.s stamp-assym
+ rm -f eddep kernel tags *.o *.s errs linterrs makelinks genassym
#lint: /tmp param.c
-# @lint -hbxn -I. -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
+# @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
# ${I386}/i386/Locore.c ${CFILES} ioconf.c param.c | \
# grep -v 'struct/union .* never defined' | \
# grep -v 'possible pointer alignment problem'
@@ -149,27 +130,22 @@ trap.o cons.o: Makefile
./assym.s: assym.s
assym.s: genassym
- ./genassym >,assym.s
- if cmp -s assym.s ,assym.s; then \
- rm -f ,assym.s; \
- else \
- rm -f assym.s; \
- mv ,assym.s assym.s; \
- fi
+ ./genassym >assym.s
# Some of the defines that genassym outputs may well depend on the
# value of kernel options.
-genassym: Makefile
- ${CC} ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c -static -o genassym
+genassym.o: ${I386}/i386/genassym.c Makefile
+ ${CC} -c ${CFLAGS} ${PARAM} ${I386}/i386/genassym.c
+
+genassym: genassym.o
+ ${CC} -static ${CFLAGS} ${PARAM} genassym.o -o $@
# XXX this assumes that the options for NORMAL_C* and DRIVER_C* are identical.
depend: assym.s param.c vnode_if.h
mkdep ${COPTS} ${CFILES} ${SYSTEM_CFILES}
- mkdep -a -p ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
- ${I386}/i386/genassym.c
+ mkdep -a ${COPTS} ${PARAM} ${I386}/i386/genassym.c
MKDEP_CPP=${CPP} ; export MKDEP_CPP ; \
- mkdep -a -I. -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES}
+ mkdep -a -DLOCORE ${COPTS} ${SFILES} ${SYSTEM_SFILES}
links:
egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
OpenPOWER on IntegriCloud