- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From 7a98e3ac480413ce7db3a5edd5dc70458b921b29 Mon Sep 17 00:00:00 2001
|
|
From: Venture Research <tech@ventureresearch.com>
|
|
Date: Wed, 6 Feb 2013 20:51:02 -0600
|
|
Subject: [PATCH] hack to force use of libc malloc
|
|
|
|
Hack to force libc usage as it seems the option to pass it in has been
|
|
removed in favor of magic.
|
|
|
|
Note that this of course doesn't allow tcmalloc and jemalloc, however
|
|
jemalloc wasn't building correctly.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Venture Research <tech@ventureresearch.com>
|
|
|
|
Update to work with 4.0.8
|
|
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
|
|
---
|
|
src/Makefile | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/Makefile b/src/Makefile
|
|
index ecbd275..39decee 100644
|
|
--- a/src/Makefile
|
|
+++ b/src/Makefile
|
|
@@ -13,7 +13,8 @@
|
|
# Just use 'make dep', but this is only needed by developers.
|
|
|
|
release_hdr := $(shell sh -c './mkreleasehdr.sh')
|
|
-uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
|
|
+# use fake uname option to force use of generic libc
|
|
+uname_S := "USE_LIBC_MALLOC"
|
|
uname_M := $(shell sh -c 'uname -m 2>/dev/null || echo not')
|
|
CLANG := $(findstring clang,$(shell sh -c '$(CC) --version | head -1'))
|
|
OPTIMIZATION?=-O3
|