B20.1 "reloc table overflow" problem

Patrick J. LoPresti patl@curl.com
Thu Apr 1 08:46:00 GMT 1999


The following Perl script outputs a C program which Microsoft's tools
can compile but Cygwin cannot.  An error is generated by GNU as in all
the versions of Cygwin I have tried.

 - Pat

======================================================================

#!/usr/bin/perl

print "void *p0;\n";

foreach $i (0 .. 32767) {
    printf ("void *p%d = &p%d;", 2*$i+1, 2*$i);
    printf ("  void *p%d = &p%d;\n", 2*$i+2, 2*$i+1);
}

print "int main() {\n  return 0;\n}\n";

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com



More information about the Cygwin mailing list