Please note that GCC 4.1.1 Release 1a is broken. There is a tiny mistake in the alias that is supposed to fix the "File 'cc1' not found" problem on RO5, which breaks gcc on all versions of RISC OS. It causes gcc to always ignore its first argument, which, as you can imagine, can cause pretty much undefined results.
*gcc -o hellow helloworld.c GCCbin:gcc: hellow: No such file or directory *gcc helloworld.c GCCbin:gcc: no input files You can fix that problem yourself by changing two lines in !GCC.!Run from: Set Alias$gcc Run GCCbin:gcc %%*1 Set Alias$g++ Run GCCbin:g++ %%*1 to: Set Alias$gcc Run GCCbin:gcc %%*0 Set Alias$g++ Run GCCbin:g++ %%*0 Martin -- --------------------------------------------------------------------- Martin Wuerthner MW Software [email protected] --------------------------------------------------------------------- _______________________________________________ GCCSDK mailing list [email protected] Bugzilla: http://www.riscos.info/bugzilla/index.cgi List Info: http://www.riscos.info/mailman/listinfo/gcc Main Page: http://www.riscos.info/index.php/GCCSDK
