mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 05:28:08 +00:00
58ff95818e
Pass in the --host argument to all of the various programs that need to treat the configure scripts as cross compilation targets. This removes all dependencies on the host libc (issue #7) and adds some tools to the initrd (cryptsetup #46).
25 lines
667 B
Plaintext
25 lines
667 B
Plaintext
modules += musl
|
|
|
|
musl_version := 1.1.15
|
|
musl_dir := musl-$(musl_version)
|
|
musl_tar := musl-$(musl_version).tar.gz
|
|
musl_url := https://www.musl-libc.org/releases/$(musl_tar)
|
|
musl_hash := 97e447c7ee2a7f613186ec54a93054fe15469fe34d7d323080f7ef38f5ecb0fa
|
|
|
|
musl_output := $(INSTALL)/bin/musl-gcc
|
|
|
|
#
|
|
# Note that for syslibdir to be /lib the install will fail.
|
|
# this is unfortunate since it prevents the binaries from running
|
|
# and requires that we treat the rest of the build as a cross compile.
|
|
#
|
|
# That works, with some hacks...
|
|
#
|
|
musl_configure := ./configure \
|
|
--prefix="$(INSTALL)" \
|
|
--syslibdir="/lib" \
|
|
|
|
musl_target := -j 8 install
|
|
|
|
musl_depends := kernel-headers
|