Skip to content

Commit

Permalink
msys2: use clang
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Gagis committed Jan 23, 2024
1 parent df5a95b commit 8c46aaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions msys2/PKGBUILD.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ prepare() {

build() {
cd "$rootDir"
make
CXX=clang++ make
}

check() {
cd "$rootDir"
make test
CXX=clang++ make test
}

package() {
cd "$rootDir"
make DESTDIR="$pkgdir" PREFIX="$dirPrefix" install
CXX=clang++ make DESTDIR="$pkgdir" PREFIX="$dirPrefix" install
}

0 comments on commit 8c46aaa

Please sign in to comment.