[SCM] Lisaac compiler branch, master, updated. lisaac-0.12-686-g48574ba

ontologiae ontologiae at gmail.com
Wed Jan 5 20:42:14 UTC 2011


The following commit has been merged in the master branch:
commit 48574ba1a264b99863aab7f0fdfb3a55c8a27285
Author: ontologiae <ontologiae at gmail.com>
Date:   Wed Jan 5 21:40:12 2011 +0100

    clang -> gcc

diff --git a/make.lip b/make.lip
index d908947..5a1d6ee 100644
--- a/make.lip
+++ b/make.lip
@@ -156,7 +156,7 @@ Section Private
       };    
     } else {
       run "echo \"int main(){ return(1); }\" > __tmp__.c";    
-      (run ("clang __tmp__.c -o __tmp__ " + lib + " 2> /dev/null") = 0).if {
+      (run ("gcc __tmp__.c -o __tmp__ " + lib + " 2> /dev/null") = 0).if {
         lib_gcc := lib_gcc + " " + lib;
         run "rm __tmp__.c __tmp__";
       } else {
@@ -222,9 +222,9 @@ Section Private
       };
       option_gcc := option_gcc + " -U_FORTIFY_SOURCE ";
       (is_library).if {
-        execute_fail ("clang -Qunused-arguments " + output_file + output_extension + " -c " + option_gcc);
+        execute_fail ("gcc  " + output_file + output_extension + " -c " + option_gcc);
       } else {
-        execute_fail ("clang -Qunused-arguments " + output_file + output_extension + " -o " + output_file + option_gcc + lib_gcc);
+        execute_fail ("gcc  " + output_file + output_extension + " -o " + output_file + option_gcc + lib_gcc);
       };
     } else {
       ("Written: " + output_file + output_extension + "\n").print;

-- 
Lisaac compiler



More information about the Lisaac-commits mailing list