Use gProjectIsStdin instead

This commit is contained in:
def
2015-05-17 16:10:46 +02:00
parent def61c9fcd
commit 2613110015
3 changed files with 3 additions and 1 deletions

View File

@@ -148,7 +148,7 @@ proc compileModule*(fileIdx: int32, flags: TSymFlags): PSym =
return
else:
result.id = getID()
if sfMainModule in flags and gProjectName == "-":
if sfMainModule in flags and gProjectIsStdin:
processModule(result, llStreamOpen(stdin), rd)
else:
processModule(result, nil, rd)

View File

@@ -42,6 +42,7 @@ proc handleCmdLine() =
gProjectName = "stdinfile"
gProjectFull = "stdinfile"
gProjectPath = getCurrentDir()
gProjectIsStdin = true
elif gProjectName != "":
try:
gProjectFull = canonicalizePath(gProjectName)

View File

@@ -149,6 +149,7 @@ var
gProjectName* = "" # holds a name like 'nimrod'
gProjectPath* = "" # holds a path like /home/alice/projects/nimrod/compiler/
gProjectFull* = "" # projectPath/projectName
gProjectIsStdin* = false # whether we're compiling from stdin
gProjectMainIdx*: int32 # the canonical path id of the main module
nimcacheDir* = ""
command* = "" # the main command (e.g. cc, check, scan, etc)