Hi, I tried to generate *.pro on Cygwin by the command "make proto", but it caused the following error: cproto: unknown option -- g
It seems that PERL_CFLAGS contains "-g" when +perl is enabled. Attached patch fixes this problem. Best regards, Ken Takata -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php
# HG changeset patch # Parent 567e05643d15d86a752977a75e2c07674e5b3e77 diff --git a/src/Makefile b/src/Makefile --- a/src/Makefile +++ b/src/Makefile @@ -1754,10 +1754,11 @@ # Filter out arguments that cproto doesn't support. # Don't pass "-pthread" to cproto, it sees it as a list of individual flags. # Don't pass "-fstack-protector" to cproto, for the same reason. +# Don't pass "-g" to cproto. # The -E"gcc -E" argument must be separate to avoid problems with shell # quoting. CPROTO = cproto $(PROTO_FLAGS) -DPROTO \ - `echo '$(LINT_CFLAGS)' | sed -e 's/-pthread//g' -e 's/-fstack-protector//g'` + `echo '$(LINT_CFLAGS)' | sed -e 's/-pthread//g' -e 's/-fstack-protector//g' -e 's/\ -g//g'` ### Would be nice if this would work for "normal" make. ### Currently it only works for (Free)BSD make.
