diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-26 03:01:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-26 03:01:12 +0000 |
commit | 690a9adf58b5f41268f82770f1d3fa587da57c0b (patch) | |
tree | 73909ca8a30d1239fb38e09413ca097bd2c72ca0 /package/lua/Makefile | |
parent | f1f87a53ac6f34c5868ef4c13a1150324b0fcddb (diff) | |
download | upstream-690a9adf58b5f41268f82770f1d3fa587da57c0b.tar.gz upstream-690a9adf58b5f41268f82770f1d3fa587da57c0b.tar.bz2 upstream-690a9adf58b5f41268f82770f1d3fa587da57c0b.zip |
lua: use float instead of double, reduces the gc data structure size by 4 byte => luci processes use 10% less memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18159 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/lua/Makefile')
-rw-r--r-- | package/lua/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/lua/Makefile b/package/lua/Makefile index b418b303ef..4589cfed2c 100644 --- a/package/lua/Makefile +++ b/package/lua/Makefile @@ -83,7 +83,7 @@ endef define Build/Configure endef -TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) +TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) -std=gnu99 ifneq ($(CONFIG_USE_EGLIBC),) ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),) |