Skip to content

Commit

Permalink
feat(ci): swap to C++ 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ProbablePrime committed Dec 21, 2023
1 parent f349f86 commit 4f79723
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
on: push
on:
push:
paths-ignore:
- '**/*.md'
branches:
- feat/ci
pull_request:
branches:
- feat/ci
paths-ignore:
- '**/*.md'
jobs:
buildLinux:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Makefile.gnu
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ CFLAGS += -DNO_LCMS
# LibJXR
CFLAGS += -DDISABLE_PERF_MEASUREMENT -D__ANSI__
CFLAGS += $(INCLUDE)
CXXFLAGS ?= -O3 -fPIC -fexceptions -fvisibility=hidden -Wno-ctor-dtor-privacy -std=c++14
CXXFLAGS ?= -w -O3 -fPIC -fexceptions -fvisibility=hidden -Wno-ctor-dtor-privacy -std=c++11
# LibJXR
CXXFLAGS += -D__ANSI__
CXXFLAGS += $(INCLUDE)
Expand Down

0 comments on commit 4f79723

Please sign in to comment.