diff options
author | Unai Martinez-Corral <38422348+umarcor@users.noreply.github.com> | 2020-12-31 17:58:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-31 18:58:30 +0100 |
commit | 10fe69ec4e7edca2c20aa4e49644f9cef1313a9e (patch) | |
tree | c83f2b5331d412bce13721d9d0fe9972abacbb0f /dist/msys2-llvm | |
parent | 373a991d17fd3cab3188ce23d43baae5d474f89c (diff) | |
download | ghdl-10fe69ec4e7edca2c20aa4e49644f9cef1313a9e.tar.gz ghdl-10fe69ec4e7edca2c20aa4e49644f9cef1313a9e.tar.bz2 ghdl-10fe69ec4e7edca2c20aa4e49644f9cef1313a9e.zip |
ci/msys2: split build and test (#1559)
Diffstat (limited to 'dist/msys2-llvm')
-rw-r--r-- | dist/msys2-llvm/PKGBUILD | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dist/msys2-llvm/PKGBUILD b/dist/msys2-llvm/PKGBUILD index 6de6916dc..b837eed16 100644 --- a/dist/msys2-llvm/PKGBUILD +++ b/dist/msys2-llvm/PKGBUILD @@ -5,15 +5,21 @@ pkgver=ci pkgrel=1 pkgdesc="GHDL: the open-source analyzer, compiler, simulator and (experimental) synthesizer for VHDL (LLVM backend) (mingw-w64)" arch=('any') -depends=('zlib-devel' "${MINGW_PACKAGE_PREFIX}-clang") -makedepends=("${MINGW_PACKAGE_PREFIX}-gcc-ada") +depends=('zlib-devel' + "${MINGW_PACKAGE_PREFIX}-clang" + "${MINGW_PACKAGE_PREFIX}-gcc-ada") build() { mkdir "${srcdir}/builddir" cd "${srcdir}/builddir" export CC=clang export CXX=clang++ - ../../../../configure --prefix=${MINGW_PREFIX} --with-llvm-config="llvm-config --link-static" LDFLAGS="-static" --enable-libghdl --enable-synth + ../../../../configure \ + --prefix=${MINGW_PREFIX} \ + --with-llvm-config="llvm-config --link-static" \ + LDFLAGS="-static" \ + --enable-libghdl \ + --enable-synth make GNATMAKE="gnatmake -j$(nproc)" } |