mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +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).
18 lines
497 B
Plaintext
18 lines
497 B
Plaintext
modules += libuuid
|
|
|
|
libuuid_version := 1.0.3
|
|
libuuid_dir := libuuid-$(libuuid_version)
|
|
libuuid_tar := libuuid-$(libuuid_version).tar.gz
|
|
libuuid_url := http://downloads.sourceforge.net/project/libuuid/$(libuuid_tar)
|
|
libuuid_hash := 46af3275291091009ad7f1b899de3d0cea0252737550e7919d17237997db5644
|
|
|
|
libuuid_configure := ./configure \
|
|
CC="$(heads_cc)" \
|
|
--prefix $(INSTALL) \
|
|
--host i386-elf-linux \
|
|
|
|
libuuid_target := install
|
|
|
|
libuuid_libraries := .libs/libuuid.so
|
|
libuuid_depends := $(musl_dep)
|