mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-26 19:17:05 +00:00
460210f4a8
m5term enables users to connect to the simulated console. Useful in development environments. Change-Id: I6096be9fbf44da280272656f3e15d1ba19593e50 Signed-off-by: Adrian Herrera <adrian.herrera@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From 688f7103e08318edbd48cf830c0ab3a048761bbb Mon Sep 17 00:00:00 2001
|
|
From: Adrian Herrera <adrian.herrera@arm.com>
|
|
Date: Thu, 03 Dec 2020 16:45:59 +0000
|
|
Subject: [PATCH] util: m5term, fix LDFLAGS, standard make variables
|
|
|
|
Enables build systems to provide necessary flags to build m5term.
|
|
Useful specially if a different linker is intended to be used.
|
|
|
|
Change-Id: If7f867cc0965d6ad4627b5421e00a99cc3d64989
|
|
Signed-off-by: Adrian Herrera <adrian.herrera@arm.com>
|
|
|
|
Upstream-Status: Accepted [https://gem5-review.googlesource.com/c/public/gem5/+/38256]
|
|
Expected version: v20.2
|
|
---
|
|
|
|
diff --git a/util/term/Makefile b/util/term/Makefile
|
|
index 658b961..4aa1c52 100644
|
|
--- a/util/term/Makefile
|
|
+++ b/util/term/Makefile
|
|
@@ -24,12 +24,12 @@
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
-CCFLAGS= -g -O0
|
|
+CFLAGS ?= -g -O0
|
|
|
|
default: m5term
|
|
|
|
m5term: term.c
|
|
- $(CC) $(LFLAGS) -o $@ $^
|
|
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
|
|
|
install: m5term
|
|
$(SUDO) install -o root -m 555 m5term /usr/local/bin
|