summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2014-03-10 21:06:08 (GMT)
committerMark Brand <mabrand@mabrand.nl>2014-03-10 21:06:08 (GMT)
commite84eadbb28abd75962628c6630831634c75fc660 (patch)
tree24490ee77eacb00c5f748aed3e6d140478bf59dd /src
parent5d42a366ccbd26f8d15ff92f4883e9baf30369e2 (diff)
downloadmxe-e84eadbb28abd75962628c6630831634c75fc660.zip
mxe-e84eadbb28abd75962628c6630831634c75fc660.tar.gz
mxe-e84eadbb28abd75962628c6630831634c75fc660.tar.bz2
package sqlite: omit debugging symbols
Diffstat (limited to 'src')
-rw-r--r--src/sqlite.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqlite.mk b/src/sqlite.mk
index e7faf50..2519e01 100644
--- a/src/sqlite.mk
+++ b/src/sqlite.mk
@@ -20,6 +20,7 @@ define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS) \
--disable-readline \
- --enable-threadsafe
+ --enable-threadsafe \
+ CFLAGS="-Os"
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef