pluto icon indicating copy to clipboard operation
pluto copied to clipboard

Fix path specification passed to AC_CHECK_PROG when checking for FileCheck

Open andidr opened this issue 11 months ago • 1 comments

The set of locations in which AC_CHECK_PROG looks for a program is passed to the macro as a colon-separated path specification.

However, in the invocation of AC_CHECK_PROG for FileCheck, this specification is preceded by an extra path = , which causes the first location to be interpreted as path = $CLANG_PREFIX/bin rather than $CLANG_PREFIX/bin. This causes the check to fail, even if the file $CLANG_PREFIX/bin/FileCheck exists and is executable.

Removing the prefix makes the check work as expected.

andidr avatar Mar 05 '24 11:03 andidr

Just saw that somebody mentioned the same in https://github.com/bondhugula/pluto/issues/96.

andidr avatar Mar 28 '24 10:03 andidr