aboutsummaryrefslogtreecommitdiff
path: root/main/compile.icl
diff options
context:
space:
mode:
authormartinw2000-08-15 11:22:34 +0000
committermartinw2000-08-15 11:22:34 +0000
commit09b62bcf1143b7ff0345951bbb577baea5d23d86 (patch)
treebfe2544a901a718bd1c9646ea3e83fd23e8f88e9 /main/compile.icl
parentimproved typing error messages: type variables are printed like "a" instead (diff)
adding "list inferred types" option
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@203 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main/compile.icl')
-rw-r--r--main/compile.icl4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/compile.icl b/main/compile.icl
index 8b7ba93..b2c4054 100644
--- a/main/compile.icl
+++ b/main/compile.icl
@@ -131,11 +131,11 @@ compileModule options commandLineArgs files
= abort ("couldn't open out file \"" +++ options.outPath +++ "\"\n")
# (io, files)
= stdio files
-
# (predefSymbols, hashTable) = buildPredefinedSymbols newHashTable
(moduleIdent, hashTable) = putIdentInHashTable options.moduleName IC_Module hashTable
# (predefs, _, files, error, io, out, optionalSyntaxTree)
- = frontEndInterface FrontEndPhaseAll moduleIdent options.searchPaths predefSymbols hashTable files error io out
+ = frontEndInterface FrontEndPhaseAll moduleIdent options.searchPaths (isMember "-lt" commandLineArgs)
+ predefSymbols hashTable files error io out
# (closed, files)
= fclose io files
| not closed