On Wed, Dec 05, 2018 at 09:28:05AM -0800, [email protected] wrote: > I looked into Vim's Makefile and I found out binary stripping happens > during the built, which causes missing debuginfo data in the end of > the build. > Would someone mind telling me if there a reason why stripping is done? > Is there a way how to disable stripping during build?
You were on the right track, but you don't need to edit the Makefile. It can be passed on the command-line -- make STRIP=: install -- which is exacty what I do in Debian's packaging. Cheers, -- James GPG Key: 4096R/91BF BF4D 6956 BD5D F7B7 2D23 DFE6 91AE 331B A3DB -- -- 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 --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
