ParserFlags.st
changeset 2652 6c326d458be5
parent 2645 0c873acfa7b4
child 2655 646f8e5fd239
--- a/ParserFlags.st	Tue Aug 09 13:17:42 2011 +0200
+++ b/ParserFlags.st	Tue Aug 09 13:24:10 2011 +0200
@@ -1356,14 +1356,14 @@
         STCCompilationDefines := ''.
         STCCompilationOptions := '+optinline +inlineNew'.
         STCPath := topDir,'/stc/stc'.
-        CCCompilationOptions := '-O'.
+        CCCompilationOptions := '-O -m32'.
         ParserFlags useGnuC ifTrue:[
             CCPath := 'gcc'
         ] ifFalse:[
             CCPath := 'cc'
         ].
-        LinkArgs := ''.
-        LinkCommand := 'ld'.
+        LinkArgs := '-m32'.
+        LinkCommand := CCPath.
         LibPath := ''.
         SearchedLibraries := #().
         MakeCommand := 'make'.
@@ -2166,11 +2166,11 @@
 !ParserFlags class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.67 2011-08-08 21:04:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.68 2011-08-09 11:24:10 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.67 2011-08-08 21:04:58 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ParserFlags.st,v 1.68 2011-08-09 11:24:10 stefan Exp $'
 ! !
 
 ParserFlags initialize!