Skip to content

Commit

Permalink
msys: use gcc
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Gagis committed Jan 23, 2024
1 parent 8c46aaa commit 1fb8722
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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"
CXX=clang++ make
make
}

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

package() {
cd "$rootDir"
CXX=clang++ make DESTDIR="$pkgdir" PREFIX="$dirPrefix" install
make DESTDIR="$pkgdir" PREFIX="$dirPrefix" install
}
2 changes: 1 addition & 1 deletion tests/app/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $(eval $(call prorab-config, ../../config))

this_srcs += $(call prorab-src-dir, src)

this_cxxflags += -isystem ../../src
this_cxxflags += -I ../../src

ifeq ($(ogles2), true)
this_libruisapp := libruisapp-opengles
Expand Down

0 comments on commit 1fb8722

Please sign in to comment.