aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
Diffstat (limited to 'dist')
-rw-r--r--dist/appveyor/configure.ps12
-rw-r--r--dist/appveyor/setup.ps15
2 files changed, 6 insertions, 1 deletions
diff --git a/dist/appveyor/configure.ps1 b/dist/appveyor/configure.ps1
index 73340faf1..7f85cfcba 100644
--- a/dist/appveyor/configure.ps1
+++ b/dist/appveyor/configure.ps1
@@ -62,7 +62,7 @@ if ($env:BUILD_BACKEND -eq "mcode")
elseif ($env:BUILD_BACKEND -eq "llvm")
{ Write-Host "Configuring GHDL for $($env:BUILD_MINGW), LLVM-3.5..." -Foreground Yellow
- c:\msys64\usr\bin\bash.exe -c "../../configure --prefix=$GHDL_PREFIX_DIR --with-llvm-config LDFLAGS=-static" 2>&1 | Restore-NativeCommandStream | %{ "$_" }
+ c:\msys64\usr\bin\bash.exe -c "../../configure --prefix=$GHDL_PREFIX_DIR --with-llvm-config LDFLAGS=-static CXX=g++" 2>&1 | Restore-NativeCommandStream | %{ "$_" }
}
cd $env:APPVEYOR_BUILD_FOLDER
diff --git a/dist/appveyor/setup.ps1 b/dist/appveyor/setup.ps1
index 117d8e9bd..6f9b7459a 100644
--- a/dist/appveyor/setup.ps1
+++ b/dist/appveyor/setup.ps1
@@ -50,5 +50,10 @@ Write-Host "Installing GHDL and libraries..." -Foreground Yellow
cd $env:GHDL_BUILD_DIR
c:\msys64\usr\bin\make.exe install 2>&1 | Restore-NativeCommandStream | %{ "$_" }
+cd c:\Tools
+7z a "$($env:APPVEYOR_BUILD_FOLDER)\ghdl-0.34-dev-$($env:BUILD_MINGW)-$($env:BUILD_BACKEND).zip" -r "GHDL\0.34-dev-$($env:BUILD_MINGW)-$($env:BUILD_BACKEND)\"
+
cd $env:APPVEYOR_BUILD_FOLDER
+Push-AppveyorArtifact "ghdl-0.34-dev-$($env:BUILD_MINGW)-$($env:BUILD_BACKEND).zip"
+
exit 0