We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cf531a commit 904c5b6Copy full SHA for 904c5b6
1 file changed
src/configure.in
@@ -957,8 +957,10 @@ if test "$enable_perlinterp" = "yes" -o "$enable_perlinterp" = "dynamic"; then
957
done
958
AC_SUBST(vi_cv_perlsitelib)
959
dnl Remove "-fno-something", it breaks using cproto.
960
+ dnl Remove "-fdebug-prefix-map", it isn't supported by clang.
961
perlcppflags=`$vi_cv_path_perl -Mlib=$srcdir -MExtUtils::Embed \
- -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//'`
962
+ -e 'ccflags;perl_inc;print"\n"' | sed -e 's/-fno[[^ ]]*//' \
963
+ -e 's/-fdebug-prefix-map[[^ ]]*//g'`
964
dnl Remove "-lc", it breaks on FreeBSD when using "-pthread".
965
perllibs=`cd $srcdir; $vi_cv_path_perl -MExtUtils::Embed -e 'ldopts' | \
966
sed -e '/Warning/d' -e '/Note (probably harmless)/d' \
0 commit comments