Skip to content

Commit

Permalink
Change compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanuppal committed May 18, 2024
1 parent 9b07abe commit 9da92c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build_and_test:
strategy:
matrix:
os: [macos-13, macos-12, ubuntu-latest]
os: [macos-13, macos-12, macos-14, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ SRCDIR := ./src
INCLUDEDIR := ./src
TESTSDIR := ./tests

CC := $(shell which g++-13 || \
which g++ || which clang)
CC := $(shell which g++ || which clang)
CFLAGS := -std=c++17 -pedantic -Wall -Wextra -I $(INCLUDEDIR)
CDEBUG := -g
CRELEASE := -O2 -DRELEASE_BUILD
Expand Down

0 comments on commit 9da92c2

Please sign in to comment.