RE: Euphoria to DJGPP help needed
- Posted by Bernie Ryan <xotron at localnet.com> Apr 13, 2002
- 442 views
Alvin Koffman wrote: > Sory it took all week, monitor problems. I got this "Bad > command or file name" in Alvin.err. It gets down to linking > then says > file not found > c:\djgpp\bin\strip.exe > So I took my cloths off and it still didn't work;=/ Alvin: Strip.exe is a program that strips any debug symbols and information that is contained in your object files that you are compiling. The debug information would have been added if it had been specified on the command line during compiling. You may not have it installed in your djgpp bin on your system, I think it comes in the binutl djgpp/gnu zip file. you can comment out or remove that command from your batch file or you can download the utilities from djgpp. If you don't use it, it will just create a bigger compiled file but should still compile. Bernie