Rich wrote: > Hello! During my cross-compilation, I get this message: > > checking whether toupper is broken... configure: error: cross- > compiling: please set 'vim_cv_toupper_broken' > > I added the line 'vim_cv_toupper_broken = no' to the Makefile but this > didn't do anything. Sorry for the rookie question, can somebody just > point me in the right direction? > I've never cross-compiled, so the following may be totally wrong. I'm only answering because I haven't seen anyone else do so thus far.
The "vim_cv_toupper_broken" is a symbol used by configure, not by Makefile. The configure script is located: vim72/src/auto/configure Assuming you're using bash/ksh/sh: export vim_cv_toupper_broken="set" configure make might do the trick, plus whatever you're doing to get the cross compiling. Regards, Chip Campbell --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
