mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
dmalloc : convert to autotools infrastructure
Changes by Thomas Petazzoni <thomas.petazzoni@free-electrons.com> * Target installation is the default behaviour * No installation to staging is the default behaviour * Remove DMALLOC_TARGET_BINARY variable Signed-off-by: cmchao <cmchao@gmail.com>
This commit is contained in:
parent
8397a4ca1b
commit
c4c8b25467
@ -6,100 +6,53 @@
|
|||||||
DMALLOC_VERSION:=5.4.3
|
DMALLOC_VERSION:=5.4.3
|
||||||
DMALLOC_SOURCE:=dmalloc-$(DMALLOC_VERSION).tgz
|
DMALLOC_SOURCE:=dmalloc-$(DMALLOC_VERSION).tgz
|
||||||
DMALLOC_SITE:=http://dmalloc.com/releases
|
DMALLOC_SITE:=http://dmalloc.com/releases
|
||||||
DMALLOC_DIR:=$(BUILD_DIR)/dmalloc-$(DMALLOC_VERSION)
|
|
||||||
DMALLOC_CAT:=$(ZCAT)
|
|
||||||
DMALLOC_BINARY:=dmalloc
|
|
||||||
DMALLOC_TARGET_BINARY:=usr/bin/dmalloc
|
|
||||||
|
|
||||||
$(DL_DIR)/$(DMALLOC_SOURCE):
|
DMALLOC_INSTALL_STAGING = YES
|
||||||
$(call DOWNLOAD,$(DMALLOC_SITE),$(DMALLOC_SOURCE))
|
DMALLOC_CONF_OPT:= --enable-shlib
|
||||||
|
|
||||||
dmalloc-source: $(DL_DIR)/$(DMALLOC_SOURCE)
|
|
||||||
|
|
||||||
$(DMALLOC_DIR)/.unpacked: $(DL_DIR)/$(DMALLOC_SOURCE)
|
|
||||||
$(DMALLOC_CAT) $(DL_DIR)/$(DMALLOC_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
||||||
toolchain/patch-kernel.sh $(DMALLOC_DIR) package/dmalloc dmalloc\*.patch
|
|
||||||
$(SED) 's/^ac_cv_page_size=0$$/ac_cv_page_size=12/' $(DMALLOC_DIR)/configure
|
|
||||||
$(SED) 's/(ld -/($${LD-ld} -/' $(DMALLOC_DIR)/configure
|
|
||||||
$(SED) 's/'\''ld -/"$${LD-ld}"'\'' -/' $(DMALLOC_DIR)/configure
|
|
||||||
-$(SED) 's/ar cr/$$(AR) cr/' $(DMALLOC_DIR)/Makefile.in
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
|
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
|
||||||
DMALLOC_CONFIG_ARGS:=--enable-cxx
|
DMALLOC_CONF_OPT+=--enable-cxx
|
||||||
else
|
else
|
||||||
DMALLOC_CONFIG_ARGS:=--disable-cxx
|
DMALLOC_CONF_OPT+=--disable-cxx
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PTHREADS_NONE),y)
|
ifeq ($(BR2_PTHREADS_NONE),y)
|
||||||
DMALLOC_CONFIG_ARGS+=--disable-threads
|
DMALLOC_CONF_OPT+=--disable-threads
|
||||||
else
|
else
|
||||||
DMALLOC_CONFIG_ARGS+=--enable-threads
|
DMALLOC_CONF_OPT+=--enable-threads
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
define DMALLOC_POST_PATCH
|
||||||
|
$(SED) 's/^ac_cv_page_size=0$$/ac_cv_page_size=12/' $(@D)/configure
|
||||||
|
$(SED) 's/(ld -/($${LD-ld} -/' $(@D)/configure
|
||||||
|
$(SED) 's/'\''ld -/"$${LD-ld}"'\'' -/' $(@D)/configure
|
||||||
|
$(SED) 's/ar cr/$$(AR) cr/' $(@D)/Makefile.in
|
||||||
|
endef
|
||||||
|
|
||||||
|
DMALLOC_POST_PATCH_HOOKS += DMALLOC_POST_PATCH
|
||||||
|
|
||||||
$(DMALLOC_DIR)/.configured: $(DMALLOC_DIR)/.unpacked
|
# both DESTDIR and PREFIX are ignored..
|
||||||
(cd $(DMALLOC_DIR); rm -rf config.cache; \
|
define DMALLOC_INSTALL_STAGING_CMDS
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
|
||||||
$(TARGET_CONFIGURE_ARGS) \
|
|
||||||
CFLAGS="-g" \
|
|
||||||
LDFLAGS="-g" \
|
|
||||||
./configure $(QUIET) \
|
|
||||||
--target=$(GNU_TARGET_NAME) \
|
|
||||||
--host=$(GNU_TARGET_NAME) \
|
|
||||||
--build=$(GNU_HOST_NAME) \
|
|
||||||
--prefix=/usr \
|
|
||||||
--exec-prefix=/usr \
|
|
||||||
--bindir=/usr/bin \
|
|
||||||
--sbindir=/usr/sbin \
|
|
||||||
--libdir=/lib \
|
|
||||||
--libexecdir=/usr/lib \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--datadir=/usr/share \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--includedir=/usr/include \
|
|
||||||
--mandir=/usr/man \
|
|
||||||
--infodir=/usr/info \
|
|
||||||
--enable-shlib \
|
|
||||||
$(DMALLOC_CONFIG_ARGS) \
|
|
||||||
)
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
$(DMALLOC_DIR)/$(DMALLOC_BINARY): $(DMALLOC_DIR)/.configured
|
|
||||||
$(MAKE) -C $(DMALLOC_DIR)
|
|
||||||
|
|
||||||
$(TARGET_DIR)/$(DMALLOC_TARGET_BINARY): $(DMALLOC_DIR)/$(DMALLOC_BINARY)
|
|
||||||
# both DESTDIR and PREFIX are ignored..
|
|
||||||
$(MAKE) includedir="$(STAGING_DIR)/usr/include" \
|
$(MAKE) includedir="$(STAGING_DIR)/usr/include" \
|
||||||
bindir="$(STAGING_DIR)/usr/bin" \
|
bindir="$(STAGING_DIR)/usr/bin" \
|
||||||
libdir="$(STAGING_DIR)/usr/lib" \
|
libdir="$(STAGING_DIR)/usr/lib" \
|
||||||
shlibdir="$(STAGING_DIR)/usr/lib" \
|
shlibdir="$(STAGING_DIR)/usr/lib" \
|
||||||
includedir="$(STAGING_DIR)/usr/share/info/" \
|
includedir="$(STAGING_DIR)/usr/share/info/" \
|
||||||
-C $(DMALLOC_DIR) install
|
-C $(@D) install
|
||||||
(cd $(STAGING_DIR)/usr/lib; \
|
endef
|
||||||
mv libdmalloc*.so $(TARGET_DIR)/usr/lib)
|
|
||||||
cp -dpf $(STAGING_DIR)/usr/bin/dmalloc $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY)
|
|
||||||
$(STRIPCMD) $(STRIP_STRIP_ALL) $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY)
|
|
||||||
|
|
||||||
dmalloc: $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY)
|
define DMALLOC_INSTALL_TARGET_CMDS
|
||||||
|
mv $(STAGING_DIR)/usr/lib/libdmalloc*.so $(TARGET_DIR)/usr/lib
|
||||||
|
cp -dpf $(STAGING_DIR)/usr/bin/dmalloc $(TARGET_DIR)/usr/bin/dmalloc
|
||||||
|
endef
|
||||||
|
|
||||||
dmalloc-clean:
|
define DMALLOC_CLEAN_CMDS
|
||||||
-rm -f $(TARGET_DIR)/usr/lib/libdmalloc*
|
-rm -f $(TARGET_DIR)/usr/lib/libdmalloc*
|
||||||
-rm -f $(STAGING_DIR)/usr/lib/libdmalloc*
|
-rm -f $(STAGING_DIR)/usr/lib/libdmalloc*
|
||||||
rm -f $(STAGING_DIR)/usr/include/dmalloc.h
|
rm -f $(STAGING_DIR)/usr/include/dmalloc.h
|
||||||
rm -f $(TARGET_DIR)/$(DMALLOC_TARGET_BINARY)
|
rm -f $(TARGET_DIR)/usr/bin/dmalloc
|
||||||
-$(MAKE) -C $(DMALLOC_DIR) clean
|
-$(MAKE) -C $(DMALLOC_DIR) clean
|
||||||
|
endef
|
||||||
dmalloc-dirclean:
|
|
||||||
rm -rf $(DMALLOC_DIR)
|
|
||||||
|
|
||||||
|
|
||||||
#############################################################
|
$(eval $(call AUTOTARGETS,package,dmalloc))
|
||||||
#
|
|
||||||
# Toplevel Makefile options
|
|
||||||
#
|
|
||||||
#############################################################
|
|
||||||
ifeq ($(BR2_PACKAGE_DMALLOC),y)
|
|
||||||
TARGETS+=dmalloc
|
|
||||||
endif
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user