This is the mail archive of the crossgcc@sources.redhat.com mailing list for the crossgcc project.
See the CrossGCC FAQ for lots more information.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
msdn says in http://msdn.microsoft.com/library/en-us/dllproc/base/createprocess.asp
lpCommandLine
[in, out] Pointer to a null-terminated string that specifies the command line to execute.
The maximum length of this string is 32K characters.
So it appears to be a Windows limitation, not a Cygwin one.
You have a couple options, in increasing order of difficulty:
1) switch to linux or some other real OS, like mac os x (putty is your friend, you can keep
your windows workstation, just remote log in to the other box)
2) cross-compile the cygwin toolchain from linux
3) patch gcc's build to use shorter commandlines
4) patch cygwin to bypass the windows commandline mechanism
I forgot the easiest option: use a shorter path, maybe? That long commandline is full of options like this: -B/cygdrive/c/DATA/crosstool-0.29/build/powerpc-405-linux-gnu/gcc-4.0-20050305-glibc-2.2.5/build-gcc/gcc
So maybe if you unpack crosstool in /x instead of /cygdrive/c/DATA/crosstool-0.29, the commandline would be short enough to get you by. It's worth a shot, anyway. - Dan
-- Trying to get a job as a c++ developer? See http://kegel.com/academy/getting-hired.html
------ Want more information? See the CrossGCC FAQ, http://www.objsw.com/CrossGCC/ Want to unsubscribe? Send a note to crossgcc-unsubscribe@sources.redhat.com
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |