summaryrefslogtreecommitdiff
path: root/mk/musl.mk
blob: bde8abaa9c62ecd6e2e65349d9e8c104e7430b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
################################################################################
# Embtoolkit
# Copyright(C) 2012-2014 Abdoulaye Walsimou GAYE.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
################################################################################
#
# \file         musl.mk
# \brief	musl.mk of Embtoolkit
# \author       Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
# \date         October 2012
################################################################################

MUSL_NAME		:= musl
MUSL_VERSION		:= $(call embtk_get_pkgversion,musl)
MUSL_SITE		:= http://www.musl-libc.org/releases
MUSL_GIT_SITE		:= git://git.musl-libc.org/musl
MUSL_PACKAGE		:= musl-$(MUSL_VERSION).tar.gz
MUSL_SRC_DIR		:= $(embtk_toolsb)/musl-$(MUSL_VERSION)
MUSL_BUILD_DIR		:= $(call __embtk_pkg_srcdir,musl)

__embtk_musl_v	:= "$(MUSL_VERSION) From EmbToolkit v$(EMBTK_VERSION) -"
__embtk_musl_v	+= "Compiled on $(shell uname -s -r -p)"

define embtk_beforeinstall_musl
	cd $(MUSL_SRC_DIR);							\
		CC=$(TARGETCC_CACHED)						\
		CROSS_COMPILE="$(CROSS_COMPILE)"				\
		CFLAGS="$(TARGET_CFLAGS)"					\
		$(CONFIG_SHELL) $(MUSL_SRC_DIR)/configure			\
		--target=$(LINUX_ARCH) --host=$(LINUX_ARCH)			\
		--disable-gcc-wrapper --prefix=/				\
		--syslibdir=/$(LIBDIR) --libdir=/$(LIBDIR) 			\
		--includedir=/usr/include
		echo "$(__embtk_musl_v)" > $(MUSL_SRC_DIR)/VERSION
	$(call __embtk_setconfigured_pkg,musl)
endef

define __embtk_install_musl
	$(call embtk_pinfo,"Build and install musl-$(MUSL_VERSION) ...")
	$(call embtk_download_pkg,musl)
	$(call embtk_decompress_pkg,musl)
	$(Q)$(MAKE) -C $(MUSL_BUILD_DIR) distclean
	$(embtk_beforeinstall_musl)
	$(Q)$(MAKE) -C $(MUSL_BUILD_DIR)					\
		DESTDIR=$(embtk_sysroot) install-libs install-headers
	cd $(embtk_sysroot)/$(LIBDIR);						\
		ln -sf libc.so $(embtk_musl_dlinker).so.1;			\
		ln -sf $(embtk_musl_dlinker).so.1 ld-musl.so.1
	$(call __embtk_setinstalled_pkg,musl)
	$(call __embtk_pkg_gen_dotkconfig_f,musl)
	$(eval __embtk_musl_installed := y)
endef

define embtk_install_musl
	$(if $(call __embtk_pkg_runrecipe-y,musl),$(__embtk_install_musl))
endef

define embtk_cleanup_musl
	if [ -d $(MUSL_BUILD_DIR) ]; then					\
		$(MAKE) -C $(MUSL_BUILD_DIR) distclean;				\
		$(call __embtk_unsetconfigured_pkg,musl);			\
		$(call __embtk_unsetinstalled_pkg,musl);			\
		$(call __embtk_unsetkconfigured_pkg,musl);			\
	fi
endef