diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-23 01:29:01 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-10-23 01:29:01 +0000 |
commit | 7361c46074a492fc27ff9f38ef7d41667b34f0ec (patch) | |
tree | 1d4638a5c5d98673d906a4252d5d14d432e8af09 /openwrt/package/id3lib/Makefile | |
parent | 1418a689b09ba101b19c94af88246f50a6dd1753 (diff) |
build c++ sources without rtti
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2271 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/id3lib/Makefile')
-rw-r--r-- | openwrt/package/id3lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/id3lib/Makefile b/openwrt/package/id3lib/Makefile index 7d2924aec..c40d800ec 100644 --- a/openwrt/package/id3lib/Makefile +++ b/openwrt/package/id3lib/Makefile @@ -22,7 +22,7 @@ $(PKG_BUILD_DIR)/.configured: (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ - CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin" \ + CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin -fno-rtti" \ CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(LINUX_DIR)/include" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ LIBS="-Wl,-Bdynamic,-luClibc++,-Bstatic,-lstdc++,-Bdynamic,-lz,-lm,-lc" \ |