On Mon, 29 Sep 2008, xypron wrote: > Your example for "gcc.exe -E" did not work for me: > C:\>"c:\MinGW\bin\gcc.exe" -E c:\temp\text.txt -o test1.txt > gcc.exe: c:\temp\text.txt: linker input file unused because linking not done
The input file suffix is not recognized as a C file to be preprocessed. The input file suffix is not recognized as anything else. The input file is therefore regarded as input to the linker. -E tells gcc not to link. Precede the input file name by -x C . > "copy" (or "cat") could of cause be used for creating merged files. But the > parts could not be valid AMPL files. Do they need to be? -- Michael [EMAIL PROTECTED] "Pessimist: The glass is half empty. Optimist: The glass is half full. Engineer: The glass is twice as big as it needs to be." _______________________________________________ Help-glpk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-glpk
