mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47: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).
20 lines
539 B
Plaintext
20 lines
539 B
Plaintext
modules += qrencode
|
|
|
|
qrencode_version := 3.4.4
|
|
qrencode_dir := qrencode-$(qrencode_version)
|
|
qrencode_tar := qrencode-$(qrencode_version).tar.gz
|
|
qrencode_url := https://fukuchi.org/works/qrencode/$(qrencode_tar)
|
|
qrencode_hash := e794e26a96019013c0e3665cb06b18992668f352c5553d0a553f5d144f7f2a72
|
|
|
|
qrencode_output := .libs/libqrencode.so.$(qrencode_version)
|
|
|
|
qrencode_configure := ./configure \
|
|
CC="$(heads_cc)" \
|
|
--prefix $(INSTALL) \
|
|
--without-tools \
|
|
--host i386-elf-linux \
|
|
|
|
qrencode_target := install
|
|
|
|
qrencode_depends := $(musl_dep)
|