summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark M. Hoffman <mhoffman@lightlink.com>2006-12-29 21:07:24 +0000
committerMark M. Hoffman <mhoffman@lightlink.com>2006-12-29 21:07:24 +0000
commitb5ff067425f65c88edf85d1ab64b19688bebd551 (patch)
treee6ae28f636036971b4d0f7378b8e6acb2c9eb9d5 /Makefile
parentc34c264f97474b80f82600995e3d2ae5b510ca39 (diff)
downloadlm-sensors-git-b5ff067425f65c88edf85d1ab64b19688bebd551.tar.gz
Modify libsensors scanner build flags...
* add -8 When using -Cf, flex defaults to generating a 7-bit scanner instead of 8-bit. That's a bug, since we want the scanner to handle any character. Using -8 restores the proper behavior. * change -Cf to -Cfe This allows a nice reduction in object size (from ~60KiB to ~15KiB) with almost no impact to speed (adds < 100 cycles to scanner, where total cycles is > 1M). git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@4272 7894878c-1315-0410-8ee3-d5d059ff63e0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a7c6642f..66ee504d 100644
--- a/Makefile
+++ b/Makefile
@@ -477,9 +477,9 @@ manhtml:
$(BISON) -p sensors_yy -d $< -o $@
ifeq ($(DEBUG),1)
-FLEX_FLAGS := -Psensors_yy -t -b -Cf
+FLEX_FLAGS := -Psensors_yy -t -b -Cfe -8
else
-FLEX_FLAGS := -Psensors_yy -t -Cf
+FLEX_FLAGS := -Psensors_yy -t -Cfe -8
endif
%.c: %.l