From: openocd-gerrit <ope...@us...> - 2025-06-07 10:24:28
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 4732e40637682a805956fd99832c151a9d4a691e (commit) from 1347b693a508179db5b19279cd6a37753fe0dfd5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 4732e40637682a805956fd99832c151a9d4a691e Author: Antonio Borneo <bor...@gm...> Date: Tue Jun 3 10:34:29 2025 +0200 configure: hide build issue of amt_jtagaccel driver by disabling it With commit d8a2f6dbcf5f ("configure.ac: show the Amontec JTAG-Accelerator driver in the config summary") the driver amt_jtagaccel is now build by default on Linux. This highlights the dependency of some include files, dependency that is not properly managed and that can cause build failure. The driver is queued to be dropped soon, so there is no real interest to fix the dependencies. Change the default so the driver is not built if the user does not require it at configure time. Change-Id: Ifb74e2c802abda290efbf59ca4ce02048c94e6f8 Signed-off-by: Antonio Borneo <bor...@gm...> Reviewed-on: https://review.openocd.org/c/openocd/+/8939 Reviewed-by: R. Diez <rdi...@rd...> Tested-by: jenkins diff --git a/configure.ac b/configure.ac index c44d902d2..3e1d9a2ba 100644 --- a/configure.ac +++ b/configure.ac @@ -329,11 +329,14 @@ AC_ARG_ADAPTERS([ JTAG_DPI_ADAPTER, JTAG_VPI_ADAPTER, RSHIM_ADAPTER, - AMTJTAGACCEL_ADAPTER, PCIE_ADAPTERS, LIBJAYLINK_ADAPTERS ],[auto]) +AC_ARG_ADAPTERS([ + AMTJTAGACCEL_ADAPTER + ],[no]) + AC_ARG_ENABLE([parport], AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]), [build_parport=$enableval], [build_parport=no]) ----------------------------------------------------------------------- Summary of changes: configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |