Skip to content

Commit

Permalink
Merge pull request #63 from OndrejSladky/karel-compilation-params-glpk
Browse files Browse the repository at this point in the history
Fix compilation on OS X with M1
  • Loading branch information
OndrejSladky authored Jan 9, 2024
2 parents 83ce43a + c0b391b commit c98d98c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.PHONY: all clean test cpptest converttest verify quick-verify

CXX= g++
CXXFLAGS= -g -Wall -Wno-unused-function -std=c++17 -O2
LDFLAGS= -lz -lglpk
CXXFLAGS= -g -Wall -Wno-unused-function -std=c++17 -O2 -I/opt/homebrew/include
LDFLAGS= -lz -lglpk -L/opt/homebrew/lib
LARGEFLAGS= -DLARGE_KMERS
SRC= src
TESTS= tests
Expand Down

0 comments on commit c98d98c

Please sign in to comment.