mirror of
https://github.com/novatiq/packages.git
synced 2026-04-28 22:58:38 +01:00
smartmontools: Fix build with CONFIG_USE_LIBSTDCXX
The Makefile would still force the use of and linking against uClibc++ even though libstdc++ may have been chosen, which would result in the package depending on libstdcpp ($(CXX_DEPENDS) but we would still be missing an libuClibc++ library depdency. Fix this by looking at CONFIG_USE_UCLIBCXX to adjust the configure script variables. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
This commit is contained in:
@@ -55,13 +55,17 @@ define Package/smartd/description
|
||||
ATA and SCSI disks. It is derived from smartsuite.
|
||||
endef
|
||||
|
||||
# uses GNU configure
|
||||
ifeq ($(CONFIG_USE_UCLIBCXX),y)
|
||||
UCXXCFLAGS:=-fno-builtin -fno-rtti -nostdinc++
|
||||
UCXXCPPFLAGS:=-I$(STAGING_DIR)/usr/include/uClibc++
|
||||
UCXXLIBS:=-nodefaultlibs -lc -luClibc++
|
||||
endif
|
||||
|
||||
CONFIGURE_VARS += \
|
||||
CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \
|
||||
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClibc++ -I$(LINUX_DIR)/include" \
|
||||
CXXFLAGS="$$$$CXXFLAGS $(UCXXCFLAGS)" \
|
||||
CPPFLAGS="$$$$CPPFLAGS $(UCXXCPPFLAGS) -I$(LINUX_DIR)/include" \
|
||||
LDFLAGS="$$$$LDFLAGS" \
|
||||
LIBS="-nodefaultlibs -lc -luClibc++ -lm $(LIBGCC_S) -lc" \
|
||||
LIBS="$(UCXXLIBS) -lm $(LIBGCC_S) -lc" \
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
|
||||
Reference in New Issue
Block a user