# 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 (ported batch file to PowerShell) # Brian Davis (contributions to the batch file) # Tristan Gingold (initial batch file for compilations on Windows) # # PowerShell Script: Script to compile GHDL for Windows # # Description: # ------------------------------------ # This is a PowerShell script (executable) which: # - sets up a compilation environment # - test all dependencies # - compiles GHDL with GNAT # # ============================================================================== # Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold # Copyright (C) 2015-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 . # ============================================================================== # .SYNOPSIS # GHDL for Windows - GHDL compile script # Use 'compile-ghdl.ps1 -Help' to see the integrated help page # # .EXAMPLE # C:\PS> .\compile-ghdl.ps1 -Clean -Compile # [CmdletBinding()] param( # Display this help" [switch]$Help = $false, # Slean up all files and directories [switch]$Clean = $false, [switch]$Clean_GHDL = $false, # Compile all targets [switch]$All = $false, # Compile main targets [switch]$Compile = $false, # Compile GHDL (simulator) [switch]$Compile_GHDL = $false, # Undocumented [switch]$Test = $false, # Undocumented [switch]$Test_GHDL = $false, # Build options # Build a release version [switch]$Release = $false, # Set the back-end [string]$Backend = "mcode", # Reduced messages [switch]$Quiet = $false, # Skip warning messages. (Show errors only.) [switch]$SuppressWarnings = $false, # Halt on errors [switch]$HaltOnError = $false, # Undocumented [switch]$Hosted = $false ) # configure script here $RelPathToRoot = "..\.." # --------------------------------------------- # save parameters and working directory $Script_ScriptDir = $PSScriptRoot $Script_WorkingDir = Get-Location $GHDLRootDir = Convert-Path (Resolve-Path ($PSScriptRoot + "\" + $RelPathToRoot)) # set default values $EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"] $EnableVerbose = [bool]$PSCmdlet.MyInvocation.BoundParameters["Verbose"] -or $EnableDebug # load modules from GHDL's 'libraries' directory Import-Module $PSScriptRoot\shared.psm1 -Verbose:$false -Debug:$false -ArgumentList "$Script_WorkingDir", $Hosted Import-Module $PSScriptRoot\targets.psm1 -Verbose:$false -Debug:$false # Display help if no command was selected $Help = $Help -or (-not ( $All -or $Clean -or $Clean_GHDL -or $Compile -or $Compile_GHDL -or $Test -or $Test_GHDL )) if (-not $Hosted) { Write-Host "================================================================================" -ForegroundColor Magenta Write-Host "GHDL for Windows - GHDL compile script" -ForegroundColor Magenta Write-Host "================================================================================" -ForegroundColor Magenta } if ($Help) { Get-Help $MYINVOCATION.MyCommand.Path -Detailed Exit-CompileScript } if ($Clean) { $Clean_GHDL = $true } if ($All) { $Compile = $true } if ($Compile) { $Compile_GHDL = $true } if ($Test) { $Test_GHDL = $true } # configure some variables: paths, executables, directory names, ... $BuildDirectoryName = "build" # Parameter checks if ($Backend -ne "mcode") { Write-Host "[ERROR]: Back-end '$Backend' is not supported on Windows." -ForegroundColor Red Exit-CompileScript -1 } # construct directories $BinaryDestinationDirectory = "$GHDLRootDir\$BuildDirectoryName\$Backend" # construct executables $GHDLNewExecutable = "$GHDLRootDir\$BuildDirectoryName\$Backend\bin\ghdl.exe" # grep GHDL version string from Ada source file $GHDLVersion = Get-GHDLVersion $GHDLRootDir # compute some variables $BuildRelease = if ($Release) { "Release" } else { "Development" } if (-not $Hosted) { Write-Host " Version: $GHDLVersion" Write-Host " Release: $BuildRelease" } $Git_IsGitRepo = Test-GitRepository # gather git information if ($Git_IsGitRepo) { $Git_Branch_Name = & git rev-parse --abbrev-ref HEAD $Git_Commit_DateString = & git log -1 --format=%cd --date=short $Git_Commit_ShortHash = & git rev-parse --short HEAD if (-not $Hosted) { Write-Host " Git branch: $Git_Branch_Name" Write-Host " Git commit: $Git_Commit_DataString ($Git_Commit_ShortHash)" } } if (-not $Hosted) { Write-Host "" } if ($Release) { $BuildDirectory = $BinaryDestinationDirectory } else { $BuildDirectory = $BinaryDestinationDirectory } # ============================================================================== # Main Target: Clean # ============================================================================== if ($Clean_GHDL) { $error = Invoke-Clean $BuildDirectory -Quiet:$Quiet -Verbose:$EnableVerbose -Debug:$EnableDebug if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } } # Clean # ============================================================================== # Main Target: GHDL # ============================================================================== if ($Compile_GHDL) { # create a build directory $error = New-BuildDirectory $BuildDirectory if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } # patch the version file if it's no release build if (-not $Release -and $Git_IsGitRepo) { $error = Invoke-PatchVersionFile $GHDLRootDir $Git_Branch_Name $Git_Commit_DateString $Git_Commit_ShortHash if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } } # build C source files $error = Invoke-CompileCFiles $GHDLRootDir $BinaryDestinationDirectory if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } # build Ada source files $error = Invoke-CompileGHDLAdaFiles $GHDLRootDir $BinaryDestinationDirectory if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } # strip result $error = Invoke-StripGHDLExecutable $BinaryDestinationDirectory if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } } # ============================================================================== # Main Target: GHDL # ============================================================================== if ($Test_GHDL) { # running ghdl $error = Test-GHDLVersion $BuildDir if ($error -eq $true) { Write-Host " [FAILED]" -ForegroundColor Red Exit-CompileScript -1 } } # Test Exit-CompileScript 0 href='#n113'>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 416 417 418 419 420 421