diff options
author | ru <ru@FreeBSD.org> | 2004-02-13 10:11:01 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-13 10:11:01 +0000 |
commit | bd38cbd92d701cbcb3aea7ca00674222a9e19f40 (patch) | |
tree | 946dbbaeb0013ac44dbf8f280e3cffa2016f97c3 /sys/modules/hatm | |
parent | a586f5606a0da2a4de47a2122bd3867f83a3dae0 (diff) | |
download | FreeBSD-src-bd38cbd92d701cbcb3aea7ca00674222a9e19f40.zip FreeBSD-src-bd38cbd92d701cbcb3aea7ca00674222a9e19f40.tar.gz |
Removed -g from CFLAGS. There is a better way to build debugging
versions of the modules, and unconditionally putting -g in CFLAGS
has negative impact on the size of the resulting .ko object, even
now that debugging symbols are always stripped.
Diffstat (limited to 'sys/modules/hatm')
-rw-r--r-- | sys/modules/hatm/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/modules/hatm/Makefile b/sys/modules/hatm/Makefile index 807740e..f455f81 100644 --- a/sys/modules/hatm/Makefile +++ b/sys/modules/hatm/Makefile @@ -9,8 +9,7 @@ SRCS= if_hatm.c if_hatm_intr.c if_hatm_ioctl.c if_hatm_tx.c if_hatm_rx.c \ device_if.h bus_if.h pci_if.h opt_inet.h opt_natm.h CFLAGS+= -DENABLE_BPF -# CFLAGS+= -DHATM_DEBUG -DINVARIANT_SUPPORT -DINVARIANTS -g -# LDFLAGS+= -g +# CFLAGS+= -DHATM_DEBUG -DINVARIANT_SUPPORT -DINVARIANTS opt_inet.h: echo "#define INET 1" > opt_inet.h |