mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
3008bb6945
This merges pull request #99 by @blackwellops and removes the ./bootstrap script since the musl-cross can be built as part of the normal dependency tree.
31 lines
812 B
Plaintext
31 lines
812 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" \
|
|
--enable-gcc-wrapper \
|
|
--enable-shared \
|
|
CC=$(pwd)/crossgcc/x86_64-linux-musl/bin/x86_64-musl-linux-gcc
|
|
|
|
|
|
|
|
musl_target := -j 8 install
|
|
#musl_target := install
|
|
|
|
musl_depends := kernel-headers musl-cross
|