www.delorie.com/archives/browse.cgi | search |
varun sharma <varshar AT yahoo DOT com> writes: > Hi, > > I've been trying to port gnupg on a cygwin-b20.1+NTSP5 > box via ./configure --target=i386-cygwin32 > --disable-nls > > However, make fails with the follg.. > > -------------- start ----------------- > > blah.. > echo timestamp > g10m.lo > /bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H > -I. -I. -I.. -I../include -g -O2 -Wall -Wcast-align > -Wshadow -Wstrict-prototypes -c mpih-mul1.s > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -g -O2 > -Wall -Wcast-align -Wshadow -Wstrict-prototypes -c The problem has to do with case-insensitivity of the file system and that screws up the auto-detection of the language for gcc. If you look at the configure steps, you'll notice that these files are linked and have .S extension (which means assembler that needs to be run through pre-preprocessor first). However, on win32, gcc sees .s instead and doesn't run the preprocessor, and you get rubbish error messages. The trick to add a new rule that pre-processes files with either .s or .S extension on win32. Or, pass `-x assembler-with-cpp' to gcc when compiling these .s files. Regards, Mumit -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |