kumquat-buildroot/package/ptm2human/0001-configure.ac-remove-unneeded-check-for-c-compiler.patch
Julien Olivain 015dab9f4d package/ptm2human: new package
ptm2human is a decoder for trace data outputted by Program
Trace Macrocell (PTM) and Embedded Trace Macrocell (ETMv4).
It deconstructs ID packets and data packets from the
formatter of ARM Coresight ETB, and then translates the
trace data to a human-readable format.

./utils/test-pkg --package ptm2human --all
44 builds, 29 skipped, 0 build failed, 0 legal-info failed

Signed-off-by: Julien Olivain <juju@cotds.org>
[yann.morin.1998@free.fr:
  - drop the host variant
  - introduce _ARCH_SUPPORTS
  - comment why we need autoreconf
  - drop spurious empty line
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2020-01-26 15:53:14 +01:00

30 lines
770 B
Diff

From 57b32b3785da1e48bd77c4f13ef41125a6abb83d Mon Sep 17 00:00:00 2001
From: Julien Olivain <juju@cotds.org>
Date: Fri, 24 Jan 2020 19:12:37 +0100
Subject: [PATCH] configure.ac: remove unneeded check for c++ compiler
If the c++ compiler is not present, the build configuration
will fail. This patch remove the check for the c++ compiler
because all the ptm2human code is written in C.
Signed-off-by: Julien Olivain <juju@cotds.org>
---
configure.ac | 1 -
1 file changed, 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 3b1f337..924dc77 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7,7 +7,6 @@ AM_INIT_AUTOMAKE([foreign -Wall])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
-AC_PROG_CXX
AC_PROG_CC
# Checks for libraries.
--
2.24.1