aboutsummaryrefslogtreecommitdiffstats
path: root/dist/mcode/windows/targets.psm1
diff options
context:
space:
mode:
Diffstat (limited to 'dist/mcode/windows/targets.psm1')
-rw-r--r--dist/mcode/windows/targets.psm116
1 files changed, 8 insertions, 8 deletions
diff --git a/dist/mcode/windows/targets.psm1 b/dist/mcode/windows/targets.psm1
index db6f970a8..502305a90 100644
--- a/dist/mcode/windows/targets.psm1
+++ b/dist/mcode/windows/targets.psm1
@@ -3,10 +3,10 @@
# kate: tab-width 2; replace-tabs off; indent-width 2;
#
# ==============================================================================
-# PowerShell Module: The module provides build targets for GHDL.
-#
# Authors: Patrick Lehmann
#
+# PowerShell Module: The module provides build targets for GHDL.
+#
# Description:
# ------------------------------------
# This PowerShell module provides build targets for GHDL.
@@ -271,7 +271,7 @@ function Invoke-CompileCFiles
Write-Host (" compiling: " + $SourceFile.File)
Write-Debug " call: $InvokeExpr"
- $ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGHDLLine
+ $ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGCCLine -Indent " "
if ($LastExitCode -ne 0)
{ return $true }
}
@@ -342,7 +342,7 @@ function Invoke-CompileGHDLAdaFiles
Write-Host " compiling with GNAT"
Write-Debug " call: $InvokeExpr"
- $ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGHDLLine
+ $ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGCCLine -Indent " "
return ($LastExitCode -ne 0)
} # Invoke-CompileGHDLAdaFiles
@@ -388,7 +388,7 @@ function Invoke-CompileFilterAdaFiles
Write-Host " compiling with GNAT"
Write-Debug " call: $InvokeExpr"
- $ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGHDLLine
+ $ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGCCLine -Indent " "
return ($LastExitCode -ne 0)
} # Invoke-CompileFilterAdaFiles
@@ -445,9 +445,9 @@ function Test-GHDLVersion
Write-Host " executing '$GHDLExecutableName'"
Write-Host " call: $InvokeExpr"
- Write-Host "----------------------------------------"
- Invoke-Expression $InvokeExpr | Restore-NativeCommandStream
- Write-Host "----------------------------------------"
+ Write-Host " ----------------------------------------"
+ Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-HostExtended " "
+ Write-Host " ----------------------------------------"
return ($LastExitCode -ne 0)
} # Test-GHDLVersion