1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*-
# vim: tabstop=2:shiftwidth=2:noexpandtab
# kate: tab-width 2; replace-tabs off; indent-width 2;
#
# ==============================================================================
# Authors:
# Patrick Lehmann
#
# PowerShell Module: The module provides build targets for GHDL.
#
# Description:
# ------------------------------------
# This PowerShell module provides build targets for GHDL.
#
# ==============================================================================
# Copyright (C) 2016-2017 Patrick Lehmann
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <gnu.org/licenses>.
# ==============================================================================
# TODO:
# check if:
# - program are installed / auto find programs / auto find paths
# - program version
# configure compiler tools
$Prog_GCC = "gcc.exe"
$Prog_GNATMake = "gnatmake.exe"
$Prog_Strip = "strip.exe"
# configure output file
$GHDL_Mcode_Name = "ghdl.exe"
# configure directory structure
$CommonSourceDirName = "src"
$WinMcodeSourceDirName = "dist\windows\mcode"
# $WinLLVMSourceDirName = "dist\windows\llvm"
# construct file paths
$VersionFileName_In = "version.in"
$VersionFileName_Ads = "version.ads"
function Invoke-Clean
{ <#
.SYNOPSIS
This CommandLet removes all generated files.
.PARAMETER BuildDirectory
The directory where all generated files are stored.
.PARAMETER Quiet
Disable outputs to the host console.
#>
[CmdletBinding()]
param(
[string] $BuildDirectory,
[switch] $Quiet = $false
)
$EnableDebug = -not $Quiet -and ( $PSCmdlet.MyInvocation.BoundParameters["Debug"])
$EnableVerbose = -not $Quiet -and ($EnableDebug -or $PSCmdlet.MyInvocation.BoundParameters["Verbose"])
-not $Quiet -and (Write-Host "Executing build target 'Clean' ..." -ForegroundColor Yellow) | Out-Null
$EnableVerbose -and (Write-Host " Removing all created files and directories..." ) | Out-Null
if (Test-Path -Path $BuildDirectory)
{ $EnableDebug -and (Write-Host " rmdir $BuildDirectory" ) | Out-Null
Remove-Item $BuildDirectory -Force -Recurse -ErrorAction SilentlyContinue
if ($? -eq $false)
{ Write-Host "[ERROR]: Cannot remove '$BuildDirectory'." -ForegroundColor Red
return $true
}
}
return $false
} # Invoke-Clean
function New-BuildDirectory
{ <#
.SYNOPSIS
This CommandLet creates a build directory if not existent, yet.
.PARAMETER BuildDirectory
The directory where all generated files are stored.
.PARAMETER Quiet
Disable outputs to the host console.
#>
[CmdletBinding()]
param(
[string] $BuildDirectory,
[switch] $Quiet = $false
)
Write-Host "Executing build target 'BuildDirectory' ..." -ForegroundColor Yellow
if (Test-Path -Path $BuildDirectory -PathType Container)
{ -not $Quiet -and (Write-Host " Directory '$BuildDirectory' already exists." ) | Out-Null }
else
{ -not $Quiet -and (Write-Host " Creating new directory '$BuildDirectory'." ) | Out-Null
New-Item -ItemType Directory -Path $BuildDirectory -ErrorAction SilentlyContinue | Out-Null
if ($? -eq $false)
{ Write-Host "[ERROR]: Cannot create '$BuildDirectory'." -ForegroundColor Red
return $true
}
}
return $false
} # New-BuildDirectory
function Get-GHDLVersion
{ <#
.SYNOPSIS
Returns the GHDL version string.
.PARAMETER GHDLRootDir
The repository root directory.
#>
[CmdletBinding()]
param(
[string] $GHDLRootDir
)
# construct DirectoryPaths
$ConfigureFilePath = $GHDLRootDir + "\configure"
if (-not (Test-Path -Path $ConfigureFilePath -PathType Leaf))
{ Write-Host "[ERROR]: Version file '$ConfigureFilePath' does not exists." -ForegroundColor Red
return $true
}
$FileContent = Get-Content -Path $ConfigureFilePath
foreach ($Line in $FileContent)
{ if ($Line -match 'ghdl_version=\"(.+?)\"')
{ return $Matches[2] }
}
Write-Host "[ERROR]: RegExp didn't match in '$ConfigureFilePath'." -ForegroundColor Red
return $true
} # Get-GHDLVersion
function Invoke-PatchVersionFile
{ <#
.SYNOPSIS
This CommandLet patches the version file to include the git patch state.
.PARAMETER GHDLRootDir
The repository root directory.
.PARAMETER GitBranchName
The branch's name, where HEAD is located.
.PARAMETER GitCommitDataString
The DateTime when HEAD was commited.
.PARAMETER GitCommitHash
The Hash of HEAD.
.PARAMETER Quiet
Disable outputs to the host console.
#>
[CmdletBinding()]
param(
[string] $GHDLRootDir,
[string] $GitBranchName = "unknown",
[string] $GitCommitDataString = "unknown",
[string] $GitCommitHash = "........",
[switch] $Quiet = $false
)
# construct DirectoryPaths
$SourceDirectory = $GHDLRootDir + "\" + $CommonSourceDirName
$VersionInputFilePath = $SourceDirectory + "\" + $VersionFileName_In
$VersionFilePath = $SourceDirectory + "\" + $VersionFileName_Ads
Write-Host "Executing build target 'PatchVersionFile' ..." -ForegroundColor Yellow
if (-not (Test-Path -Path $VersionInputFilePath -PathType Leaf))
{ Write-Host "[ERROR]: Version file '$VersionInputFilePath' does not exists." -ForegroundColor Red
return $true
}
-not $Quiet -and (Write-Host " Patching '$VersionInputFilePath'.") | Out-Null
$FileContent = Get-Content -Path $VersionInputFilePath -Encoding Ascii
if ($? -eq $false)
{ Write-Host "[ERROR]: While opening '$VersionInputFilePath'." -ForegroundColor Red
return $true
}
$GHDLVersion = Get-GHDLVersion $GHDLRootDir
$FileContent = $FileContent -Replace "\s@VER@\s", $GHDLVersion
$FileContent = $FileContent -Replace "\s\(tarball\)\s", " (commit: $GitCommitDataString; git branch: $GitBranchName'; hash: $GitCommitHash) "
$FileContent | Out-File $VersionFilePath -Encoding Ascii
if ($? -eq $false)
{ Write-Host "[ERROR]: While writing to '$VersionFilePath'." -ForegroundColor Red
return $true
}
return $false
} # Invoke-PatchVersionFile
function Get-CFlags
{ <#
.SYNOPSIS
Returns common ANSI C compiler flags for GCC.
#>
return @(
"-O1", # optimize; level 1
"-g" # enable debug symbols
)
}
function Invoke-CompileCFiles
{ <#
.SYNOPSIS
This CommandLet compiles all C files with GCC.
.PARAMETER GHDLRootDir
The repository root directory.
.PARAMETER BuildDirectory
The directory where all generated files are stored.
.PARAMETER Quiet
Disable outputs to the host console
#>
[CmdletBinding()]
param(
[string] $GHDLRootDir,
[string] $BuildDirectory,
[switch] $Quiet = $false
)
# construct DirectoryPaths
$SourceDirectory = $GHDLRootDir + "\" + $CommonSourceDirName
Set-Location $BuildDirectory
Write-Host "Executing build target 'CompileCFiles' ..." -ForegroundColor Yellow
# list all files to be compiled; add additional CFlags if needed
$SourceFiles = @()
$SourceFiles += New-Object PSObject -Property @{File="grt\grt-cstdio.c"; CFlags=@()}
$SourceFiles += New-Object PSObject -Property @{File="grt\grt-cvpi.c"; CFlags=@()}
$SourceFiles += New-Object PSObject -Property @{File="grt\grt-cdynload.c"; CFlags=@()}
$SourceFiles += New-Object PSObject -Property @{File="grt\config\clock.c"; CFlags=@()}
$SourceFiles += New-Object PSObject -Property @{File="grt\config\win32.c"; CFlags=@('-DWITH_GNAT_RUN_TIME')}
$SourceFiles += New-Object PSObject -Property @{File="ortho\mcode\memsegs_c.c"; CFlags=@()}
# compile C files
foreach ($SourceFile in $SourceFiles)
{ $Parameters = @()
$Parameters += "-c" # compile only
$Parameters += Get-CFlags # append common CFlags
$Parameters += $SourceFile.CFlags
$Parameters += $SourceDirectory + "\" + $SourceFile.File
# call C compiler
$InvokeExpr = "$Prog_GCC " + ($Parameters -join " ") + " 2>&1"
Write-Host (" compiling: " + $SourceFile.File)
Write-Debug " call: $InvokeExpr"
$ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGCCLine -Indent " "
if ($LastExitCode -ne 0)
{ Write-Host ("[ERROR]: While compiling '{0}'." -f $SourceFile.File) -ForegroundColor Red
return $true
}
}
return $false
} # Invoke-CompileCFiles
function Invoke-CompileGHDLAdaFiles
{ <#
.SYNOPSIS
This CommandLet compiles all Ada files with GNAT.
.PARAMETER GHDLRootDir
The repository root directory.
.PARAMETER BuildDirectory
The directory where all generated files are stored.
.PARAMETER Quiet
Disable outputs to the host console
#>
[CmdletBinding()]
param(
[string] $GHDLRootDir,
[string] $BuildDirectory,
[switch] $Quiet = $false
)
# construct DirectoryPaths
$CommonSourceDirectory = $GHDLRootDir + "\" + $CommonSourceDirName
$WinMcodeSourceDirectory = $GHDLRootDir + "\" + $WinMcodeSourceDirName
Set-Location $BuildDirectory
Write-Host "Executing build target 'CompileGHDLAdaFiles' ..." -ForegroundColor Yellow
$Parameters = @()
$Parameters += Get-CFlags # append common CFlags
$Parameters += '-gnatn'
# append all source paths
$Parameters += '-aI' + $WinMcodeSourceDirectory
$Parameters += '-aI' + $CommonSourceDirectory
$Parameters += '-aI' + $CommonSourceDirectory + '\ghdldrv'
$Parameters += '-aI' + $CommonSourceDirectory + '\psl'
$Parameters += '-aI' + $CommonSourceDirectory + '\grt'
$Parameters += '-aI' + $CommonSourceDirectory + '\ortho'
$Parameters += '-aI' + $CommonSourceDirectory + '\ortho\mcode'
$Parameters += '-aI' + $CommonSourceDirectory + '\vhdl'
$Parameters += '-aI' + $CommonSourceDirectory + '\vhdl\translate'
# top level
$Parameters += 'ghdl_jit'
# add output filename
$Parameters += '-o'
$Parameters += $GHDL_Mcode_Name
# append linker parameters
$Parameters += '-largs'
$Parameters += 'grt-cstdio.o'
$Parameters += 'clock.o'
$Parameters += 'grt-cvpi.o'
$Parameters += 'grt-cdynload.o'
$Parameters += 'memsegs_c.o'
$Parameters += 'win32.o'
$Parameters += '-ldbghelp'
$Parameters += '-largs'
# $Parameters += '-Wl,--stack,8404992'
# call Ada compiler (GNAT)
$InvokeExpr = "$Prog_GNATMake " + ($Parameters -join " ") + " 2>&1"
Write-Host " compiling with GNAT"
Write-Debug " call: $InvokeExpr"
$ErrorRecordFound = Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-ColoredGCCLine -Indent " "
if ($LastExitCode -ne 0)
{ Write-Host "[ERROR]: While compiling '$GHDL_Mcode_Name'." -ForegroundColor Red
return $true
}
return $false
} # Invoke-CompileGHDLAdaFiles
function Invoke-StripGHDLExecutable
{ <#
.SYNOPSIS
This CommandLet strips the result files.
.PARAMETER BuildDirectory
The directory where all generated files are stored.
.PARAMETER Quiet
Disable outputs to the host console
#>
[CmdletBinding()]
param(
[string] $BuildDirectory,
[switch] $Quiet = $false
)
Set-Location $BuildDirectory
Write-Host "Executing build target 'StripGHDLExecutable' ..." -ForegroundColor Yellow
# call striping tool (strip)
Write-Host " stripping '$GHDL_Mcode_Name'"
Write-Debug " call: $Prog_Strip $GHDL_Mcode_Name"
& $Prog_Strip $GHDL_Mcode_Name
if ($LastExitCode -ne 0)
{ Write-Host "[ERROR]: While stripping '$GHDL_Mcode_Name'." -ForegroundColor Red
return $true
}
return $false
} # Invoke-StripGHDLExecutable
function Test-GHDLVersion
{ <#
.SYNOPSIS
This CommandLet executes ghdl to read the version information
.PARAMETER BuildDirectory
The directory where all generated files are stored.
.PARAMETER Quiet
Disable outputs to the host console
#>
[CmdletBinding()]
param(
[string] $BuildDirectory,
[switch] $Quiet = $false
)
Set-Location $BuildDirectory
Write-Host "Executing build target 'GHDLVersion' ..." -ForegroundColor Yellow
if (-not (Test-Path -Path $GHDL_Mcode_Name -PathType Leaf))
{ Write-Host " GHDL executable '$GHDL_Mcode_Name' does not exists." -ForegroundColor Red
return $true
}
# call ghdl
$InvokeExpr = "$GHDL_Mcode_Name --version 2>&1"
Write-Host " executing '$GHDL_Mcode_Name'"
Write-Host " call: $InvokeExpr"
Write-Host " ----------------------------------------"
Invoke-Expression $InvokeExpr | Restore-NativeCommandStream | Write-HostExtended " "
Write-Host " ----------------------------------------"
if ($LastExitCode -ne 0)
{ Write-Host "[ERROR]: While executing '$GHDL_Mcode_Name'." -ForegroundColor Red
return $true
}
return $false
} # Test-GHDLVersion
# export functions
Export-ModuleMember -Function 'Get-GHDLVersion'
Export-ModuleMember -Function 'Invoke-Clean'
Export-ModuleMember -Function 'New-BuildDirectory'
Export-ModuleMember -Function 'Invoke-PatchVersionFile'
Export-ModuleMember -Function 'Restore-PatchedVersionFile'
Export-ModuleMember -Function 'Invoke-CompileCFiles'
Export-ModuleMember -Function 'Invoke-CompileGHDLAdaFiles'
Export-ModuleMember -Function 'Invoke-StripGHDLExecutable'
Export-ModuleMember -Function 'Test-GHDLVersion'
|