mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
07eb5e9717
Each of the submodule configuration files defined a subset of the cross compiler tools that it used and many were picking up the system `ar`, `nm`, `strip, `ld`, etc. They all now use a `Makefile` macro that defines the path to the proper cross compiler tools. For ones that need the tools, but not the musl-libc gcc, there is $(CROSS_TOOLS_NOCC) that is all of them without gcc. This is for musl-libc itself, as well as xen and the Linux kernel.
21 lines
497 B
Plaintext
21 lines
497 B
Plaintext
modules-$(CONFIG_MBEDTLS) += mbedtls
|
|
|
|
mbedtls_version := 2.4.2
|
|
mbedtls_dir := mbedtls-$(mbedtls_version)
|
|
mbedtls_tar := mbedtls-$(mbedtls_version)-gpl.tgz
|
|
mbedtls_url := https://tls.mbed.org/download/$(mbedtls_tar)
|
|
mbedtls_hash := d01f2d5586a52055329d194d909103f445bd2d0b6b2b5f1c830fbf828ac6299f
|
|
|
|
mbedtls_libraries := library/libmbedcrypto.so.0
|
|
|
|
mbedtls_configure :=
|
|
|
|
mbedtls_target := \
|
|
SHARED=1 \
|
|
DESTDIR=$(INSTALL) \
|
|
$(CROSS_TOOLS) \
|
|
$(MAKE_JOBS) \
|
|
install
|
|
|
|
mbedtls_depends := $(musl_dep)
|