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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
|
# 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;
#
# ==============================================================================
# PowerShell Script: Script to compile GHDL for Windows
#
# Authors: Patrick Lehmann (ported batch file to PowerShell)
# Brian Davis (contributions to the batch file)
# Tristan Gingold (initial batch file for compilations on Windows)
#
# Description:
# ------------------------------------
# This is a PowerShell script (executable) which:
# - compiles GHDL and GHDLFilter
# - analyses VHDL libraries
# - installs GHDL into a directory (xcopy deploiment)
#
# ==============================================================================
# Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
#
# GHDL 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, or (at your option) any later
# version.
#
# GHDL 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 GHDL; see the file COPYING. If not, write to the Free
# Software Foundation, 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
# ==============================================================================
<#
.SYNOPSIS
GHDL for Windows - GHDL compile script
Use 'winbuild.ps1 -Help' to see the integrated help page
.EXAMPLE
#
# Normal flow
PS> .\winbuild.ps1 -Clean
PS> .\winbuild.ps1 -Compile
PS> .\winbuild.ps1 -Install -InstallPath "C:\Tools\GHDL"
# Create a zip-file
PS>.\winbuild.ps1 -CreatePackage -Zip
# combine all commands in a single call
PS>.\winbuild.ps1 -Clean -Compile -Install -InstallPath "C:\Tools\GHDL"
#>
# define script parameters
[CmdletBinding()]
Param(
# compile GHDL
[switch]$Compile,
# clean up all files and directories
[switch]$Clean,
# create an installer package
[switch]$CreatePackage,
# creates a zip-file for xcopy deployment
[switch]$Zip,
# creates a exe-file (installer generated by NSIS)
[switch]$Nsis,
# install all files into a directory (xcopy deployment)
[switch]$Install,
# Installation directory
[string]$InstallPath,
# update files
[switch]$Update,
# uninstall all files from a directory
[switch]$Uninstall,
# display this help"
[switch]$Help
)
# configure script here
$Script_RelPathToRoot = "..\.."
# save parameters and current working directory
$Script_Parameters = $args
$Script_ScriptDir = $PSScriptRoot
$Script_WorkingDir = Get-Location
$GHDLRootDir_AbsPath = Convert-Path (Resolve-Path ($PSScriptRoot + "\" + $Script_RelPathToRoot))
# configure some variables: paths, executables, directory names, ...
$WindowsDirName = "dist\mcode\windows"
$BuildDirName = "dist\mcode\build"
$LibraryDirName = "dist\mcode\lib"
$ZipPackageDirName = "dist\mcode\zip"
$ZipPackageFileName = "dist\mcode\ghdl-install.zip"
# construct directories
$GHDLWindowsDir = $GHDLRootDir_AbsPath + "\" + $WindowsDirName
$GHDLBuildDir = $GHDLRootDir_AbsPath + "\" + $BuildDirName
$GHDLLibraryDir = $GHDLRootDir_AbsPath + "\" + $LibraryDirName
$GHDLZipPackageDir = $GHDLRootDir_AbsPath + "\" + $ZipPackageDirName
$GHDLZipPackageFile = $GHDLRootDir_AbsPath + "\" + $ZipPackageFileName
# set default values
$Script_ExitCode = 0
if ($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent) { $Script_EnableDebug = $true }
if ($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent) { $Script_EnableVerbose = $true }
# Author: Ed Wilson
# Source: http://blogs.technet.com/b/heyscriptingguy/archive/2011/07/23/use-powershell-to-modify-your-environmental-path.aspx
function Add-Path
( [parameter(Mandatory=$True,ValueFromPipeline=$True,Position=0)]
[string]$AddedFolder
)
# function body
{ # Get the current search path from the environment keys in the registry.
$OldPath = (Get-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment" -Name PATH).Path
# See if a new folder has been supplied.
if (!$AddedFolder)
{ return "No Folder Supplied. $ENV:PATH Unchanged" }
# See if the new folder exists on the file system.
if (!(Test-Path $AddedFolder))
{ return "Folder Does not Exist, Cannot be added to $ENV:PATH" }
# See if the new Folder is already in the path.
if ($ENV:Path | Select-String -SimpleMatch $AddedFolder)
{ return "Folder already within $ENV:PATH" }
# Set the New Path
$NewPath = $OldPath + ";" + $AddedFolder
Set-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment" -Name PATH -Value $NewPath
}
# Author: Ed Wilson
# Source: http://blogs.technet.com/b/heyscriptingguy/archive/2011/07/23/use-powershell-to-modify-your-environmental-path.aspx
function Remove-Path
( [parameter(Mandatory=$True,ValueFromPipeline=$True,Position=0)]
[string]$RemovedFolder
)
# function body
{ # Get the Current Search Path from the environment keys in the registry
$OldPath = (Get-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment" -Name PATH).Path
# Find the value to remove, replace it with $NULL. If it’s not found, nothing will change.
$NewPath = $OldPath -replace $RemovedFolder,$Null
# Update the Environment Path
Set-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment" -Name PATH -Value $NewPath
}
if ($Help)
{ Write-Host "Usage:"
Write-Host " compile.ps1 [-Verbose] [-Debug] (-Help|-Compile|-Clean|-CreatePackage|-Install|-Uninstall)" -ForegroundColor Gray
Write-Host
Write-Host "Options:"
Write-Host " -Verbose enable detailed messages"
Write-Host " -Debug enable debug messages"
Write-Host
Write-Host "Commands:"
Write-Host " -Help display this help"
Write-Host " -Compile compile all library files"
Write-Host " -Clean clean up all files and directories"
Write-Host " -CreatePackage create an installer package"
Write-Host " -Install install all files into a directory (xcopy deployment)"
Write-Host " -Uninstall uninstall all files from a directory"
Write-Host
Write-Host "Options for -CreatePackage:"
Write-Host " -Zip creates a zip-file for xcopy deployment"
Write-Host
Write-Host "Options for -Install:"
Write-Host " -InstallPath <dir> directory into which GHDL will be installed"
Write-Host
Write-Host "Examples:"
Write-Host " # Normal flow"
Write-Host " PS>.\winbuild.ps1 -Clean" -ForegroundColor Gray
Write-Host " PS>.\winbuild.ps1 -Compile" -ForegroundColor Gray
Write-Host " PS>.\winbuild.ps1 -Install -InstallPath `"C:\Tools\GHDL`"" -ForegroundColor Gray
Write-Host
Write-Host " # Create a zip-file"
Write-Host " PS>.\winbuild.ps1 -CreatePackage -Zip" -ForegroundColor Gray
Write-Host
Write-Host " # combine all commands in a single call"
Write-Host " PS>.\winbuild.ps1 -Clean -Compile -Install -InstallPath `"C:\Tools\GHDL`"" -ForegroundColor Gray
Write-Host
}
elseif ($Uninstall)
{ Write-Host "Uninstalling GHDL $GHDLVersion for Windows"
Write-Host "This command is not implemented" -ForegroundColor Red
$Script_ExitCode = 1
if ($Script_ExitCode -eq 0)
{ Write-Host
Write-Host "Uninstall " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
} # Uninstall
else
{ $Script_ExitCode = -1
if ($Clean)
{ $Script_ExitCode = 0
Write-Host "Removing all created files and directories..."
if ($Script_ExitCode -eq 0)
{ $Script_Path = $GHDLWindowsDir + "\compile.ps1"
$Script_Parameters = @('-Clean')
#$Script_Parameters += '-Clean'
if ($Script_EnableVerbose -eq $true) { $Script_Parameters += '-Verbose' }
if ($Script_EnableDebug -eq $true) { $Script_Parameters += '-Debug' }
Write-Host "Running compile.ps1 ..."
Write-Host "--------------------------------------------------------------------------------"
Invoke-Expression "$Script_Path $($Script_Parameters -join " ")"
if ($LastExitCode -ne 0)
{ $Script_ExitCode = 1
Write-Host "--------------------------------------------------------------------------------"
Write-Host "ERROR while executing 'compile.ps1 $($Script_Paramters -join " ")'" -ForegroundColor Red
}
else
{ Write-Host "--------------------------------------------------------------------------------"
Write-Host "Completed " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
}
if ($Script_ExitCode -eq 0)
{ $Script_Path = $GHDLWindowsDir + "\compile.ps1"
$Script_Parameters = @()
$Script_Parameters += '-Clean'
if ($Script_EnableVerbose -eq $true) { $Script_Parameters += '-Verbose' }
if ($Script_EnableDebug -eq $true) { $Script_Parameters += '-Debug' }
Write-Host "Running complib.ps1 ..."
Write-Host "--------------------------------------------------------------------------------"
Invoke-Expression "$Script_Path $($Script_Parameters -join " ")"
if ($LastExitCode -ne 0)
{ $Script_ExitCode = 1
Write-Host "--------------------------------------------------------------------------------"
Write-Host "ERROR while executing 'complib.ps1 $($Script_Paramters -join " ")'" -ForegroundColor Red
}
else
{ Write-Host "--------------------------------------------------------------------------------"
Write-Host "Completed " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
}
if ($Script_ExitCode -eq 0)
{ Write-Host "Removing installer packages and temporary directories..."
Write-Host " $GHDLZipPackageDir"
Remove-Item $GHDLZipPackageDir -Force -Recurse -ErrorAction SilentlyContinue
Write-Host " $GHDLZipPackageFile"
Remove-Item $GHDLZipPackageFile -Force -Recurse -ErrorAction SilentlyContinue
}
if ($Script_ExitCode -eq 0)
{ Write-Host
Write-Host "Clean " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
} # Clean
if ($Compile)
{ $Script_ExitCode = 0
Write-Host "Compiling GHDL $GHDLVersion for Windows"
if ($Script_ExitCode -eq 0)
{ $Script_Path = $GHDLWindowsDir + "\compile.ps1"
$Script_Parameters = @()
$Script_Parameters += '-Compile'
if ($Script_EnableVerbose -eq $true) { $Script_Parameters += '-Verbose' }
if ($Script_EnableDebug -eq $true) { $Script_Parameters += '-Debug' }
Write-Host "Running compile.ps1 ..."
Write-Host "--------------------------------------------------------------------------------"
Invoke-Expression "$Script_Path $($Script_Parameters -join " ")"
if ($LastExitCode -ne 0)
{ $Script_ExitCode = 1
Write-Host "--------------------------------------------------------------------------------"
Write-Host "ERROR while executing 'compile.ps1 $($Script_Paramters -join " ")'" -ForegroundColor Red
}
else
{ Write-Host "--------------------------------------------------------------------------------"
Write-Host "Completed " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
}
if ($Script_ExitCode -eq 0)
{ $Script_Path = $GHDLWindowsDir + "\complib.ps1"
$Script_Parameters = @()
$Script_Parameters += '-Compile'
if ($Script_EnableVerbose -eq $true) { $Script_Parameters += '-Verbose' }
if ($Script_EnableDebug -eq $true) { $Script_Parameters += '-Debug' }
Write-Host "Running complib.ps1 ..."
Write-Host "--------------------------------------------------------------------------------"
Invoke-Expression "$Script_Path $($Script_Parameters -join " ")"
if ($LastExitCode -ne 0)
{ $Script_ExitCode = 1
Write-Host "--------------------------------------------------------------------------------"
Write-Host "ERROR while executing 'complib.ps1 $($Script_Paramters -join " ")'" -ForegroundColor Red
}
else
{ Write-Host "--------------------------------------------------------------------------------"
Write-Host "Completed " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
}
if ($Script_ExitCode -eq 0)
{ Write-Host
Write-Host "Compile " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
} # Compile
if ($CreatePackage)
{ $Script_ExitCode = 0
Write-Host "Creating an installation package for GHDL $GHDLVersion for Windows"
if ($Zip)
{ if ((Get-Module -ListAvailable | Where {$_.Name -like "PSCX"}).Version -ge "3.1.0.0")
{ Write-Host "Loading PowerShell Community Extensions (PSCX) " -NoNewline
Import-Module Pscx
Write-Host "[Done]" -ForegroundColor Green
}
else
{ $Script_ExitCode = 1
Write-Host "[FAILED]" -ForegroundColor RED
}
}
# create zip-file
if (($Script_ExitCode -eq 0) -and $Zip)
{ Write-Host "Output format: zip-file"
Write-Host " Removing old directory '$GHDLZipPackageDir'."
Remove-Item $GHDLZipPackageDir -Force -Recurse -ErrorAction SilentlyContinue
Write-Host " Creating directory '$GHDLZipPackageDir'."
[void](New-Item -ItemType directory -Path $GHDLZipPackageDir -ErrorAction SilentlyContinue)
[void](New-Item -ItemType directory -Path "$GHDLZipPackageDir\bin" -ErrorAction SilentlyContinue)
Copy-Item "$GHDLBuildDir\ghdl.exe" "$GHDLZipPackageDir\bin\ghdl.exe" -ErrorAction SilentlyContinue
Copy-Item "$GHDLBuildDir\ghdlfilter.exe" "$GHDLZipPackageDir\bin\ghdlfilter.exe" -ErrorAction SilentlyContinue
Copy-Item $GHDLLibraryDir -Recurse $GHDLZipPackageDir -ErrorAction SilentlyContinue
Write-Host " Compressing files into '$GHDLZipPackageFile'"
$file = Get-ChildItem $GHDLZipPackageDir -Recurse | Write-Zip -IncludeEmptyDirectories -EntryPathRoot $GHDLZipPackageDir -OutputPath $GHDLZipPackageFile
Write-Host " $([math]::round(($file.Length / 1MB), 3)) MiB written to disk"
}
elseif (($Script_ExitCode -eq 0) -and $Nsis)
{ Write-Host "Output format: exe-file (created by NSIS)"
$Script_ExitCode = 1
Write-Host "ERROR: Not Implemented." -ForegroundColor RED
}
else
{ $Script_ExitCode = 1
Write-Host "No package format selected." -ForegroundColor Red
Write-Host "Possible formats:"
Write-Host " - zip-file (-Zip)"
Write-Host
}
if ($Script_ExitCode -eq 0)
{ Write-Host
Write-Host "Create Package " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
} # CreatePackage
if ($Install)
{ $Script_ExitCode = 0
Write-Host "Installing GHDL $GHDLVersion for Windows"
if ($InstallPath -eq "")
{ $Script_ExitCode = 1
Write-Host "Missing argument -InstallPath" -ForegroundColor Red
}
else
{ if (Test-Path -Path $InstallPath)
{ if ($Update)
{ Remove-Item -Path "$InstallPath\*" -Recurse -Force }
else
{ Write-Host " Directory '$InstallPath' already exists." -ForegroundColor Red
Write-Host
$Script_ExitCode = 1
}
}
elseif ($Update)
{ Write-Host " Directory '$InstallPath' does not exists." -ForegroundColor Red
Write-Host
$Script_ExitCode = 1
}
}
if ($Script_ExitCode -eq 0)
{ Write-Host " Install directory: $InstallPath"
Write-Host " Creating directory '$InstallPath'."
[void](New-Item -ItemType directory -Path $InstallPath -ErrorAction SilentlyContinue)
[void](New-Item -ItemType directory -Path "$InstallPath\bin" -ErrorAction SilentlyContinue)
Copy-Item "$GHDLBuildDir\ghdl.exe" "$InstallPath\bin\ghdl.exe" -ErrorAction SilentlyContinue
Copy-Item "$GHDLBuildDir\ghdlfilter.exe" "$InstallPath\bin\ghdlfilter.exe" -ErrorAction SilentlyContinue
Copy-Item $GHDLLibraryDir -Recurse $InstallPath -ErrorAction SilentlyContinue
}
if ($Script_ExitCode -eq 0)
{ Write-Host " Registering installation directory in system PATH"
Add-Path "$InstallPath\bin"
}
if ($Script_ExitCode -eq 0)
{ Write-Host
Write-Host "Install " -NoNewline
Write-Host "[SUCCESSFUL]" -ForegroundColor Green
Write-Host
}
} # Install
if ($Script_ExitCode -eq -1)
{ Write-Host "ERROR: missing argument(s)" -ForegroundColor Red
Write-Host
Write-Host "Usage:"
Write-Host " winbuild.ps1 [-Verbose] [-Debug] (-Help|-Compile|-Clean|-CreatePackage|-Install|-Uninstall)" -ForegroundColor Gray
Write-Host
} # Unknown
}
# restore working directory if changed
Set-Location $Script_WorkingDir
# return exit status
exit $Script_ExitCode
|