|
From: Paul F. <pa...@so...> - 2023-04-18 20:28:44
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=1e784548a17aec105ed79d53c91c3fd023b2c364 commit 1e784548a17aec105ed79d53c91c3fd023b2c364 Author: Paul Floyd <pj...@wa...> Date: Tue Apr 18 22:27:55 2023 +0200 Bug 468606 - build: remove "Valgrind relies on GCC" check/output Diff: --- NEWS | 1 + configure.ac | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 696720e97e..4b18ad9d0a 100644 --- a/NEWS +++ b/NEWS @@ -154,6 +154,7 @@ are not entered into bugzilla tend to get forgotten about or ignored. 467839 Gdbserver: Improve compatibility of library directory name 468401 [PATCH] Add a style file for clang-format 468556 Build failure for vgdb +468606 build: remove "Valgrind relies on GCC" check/output n-i-bz FreeBSD rfork syscall fail with EINVAL or ENOSYS rather than VG_(unimplemented) To see details of a given bug, visit diff --git a/configure.ac b/configure.ac index a439ec85d9..8217136d9e 100755 --- a/configure.ac +++ b/configure.ac @@ -103,12 +103,6 @@ if test "x$LTO_AR" = "x"; then fi AC_ARG_VAR([LTO_AR],[Archiver command for link time optimisation]) - -# Check for the compiler support -if test "${GCC}" != "yes" ; then - AC_MSG_ERROR([Valgrind relies on GCC to be compiled]) -fi - # figure out where perl lives AC_PATH_PROG(PERL, perl) |