Home | Forums | What's new | Resources | |
I can't get the GNUSH compiler to work right |
Sasuketea - Mar 7, 2003 |
Sasuketea | Mar 7, 2003 | |||
I can't get the GNUSH compiler to work right Oh, I forgot to mention that also, the compiler can't even seem to recognize any MAKEFILEs unless I type "move MAKEFILE Makefile" , then type MAKE again, which is just another wierd mystery |
antime | Mar 8, 2003 | |||
I can't get the GNUSH compiler to work right The answer to your second question is that for these tools, filenames are case-sensitive and the default name for makefiles has always been "Makefile". You can use the -f switch to supply a filename on the commandline. TakaIsSilly might be able to answer your first question, as he apparently has a GNUSH-SGL environment set up. |
TakaIsSilly | Mar 9, 2003 | |||||||
I can't get the GNUSH compiler to work right Ah, yes... this is my GNU_SH_coff.bat:
Code:
and the Makefile need this change to call the compiller correctly:
Code:
You might want to pass the files by DOS2UNIX as you said, as well, altough I didn't needed to. The Windows 95 Notepad (not the NT one) seems to piss all over the files when you save them, so that can be the problem. http://www.bastet.com/software/UDDU.ZIP... |
ExCyber | Mar 9, 2003 | |||
I can't get the GNUSH compiler to work right I suspect that Win9x doesn't pass the ^Z so that make/gcc never see it. I never had a problem with this in Win9x, but they're almost certainly causing the problem for XP/NT. |
Sasuketea | Mar 9, 2003 | ||||
I can't get the GNUSH compiler to work right I did everything u said, but get this error now
Code:
This doesn't make sense. I also prcessed all files through that prog u linked to. Nothing <_< |
ExCyber | Mar 9, 2003 | |||
I can't get the GNUSH compiler to work right IIRC, your gcc executable is just gcc. It really should be sh-coff-gcc, since it's not a native compiler, but for whatever reason I guess the package you got wasn't set up that way... |
Sasuketea | Mar 10, 2003 | ||||
I can't get the GNUSH compiler to work right Thank you SOOO much guys
Code:
Just tell me where I edit it in. My path for proj1 is C:\SS-SDK\Saturn\SGL\MyProj\proj1 just incase it's needed... Thx |
ExCyber | Mar 10, 2003 | |||
I can't get the GNUSH compiler to work right The Makefile isn't meant to be edited for each project; create/edit an 'objects' file for your project. |