Skip to content

Commit

Permalink
Change OSX binary arch (i386 -> x64)
Browse files Browse the repository at this point in the history
Fixes Xcode 10 build issue #91
  • Loading branch information
Makopo committed Oct 7, 2018
1 parent d267488 commit 7dee9bd
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
Expand Up @@ -24,8 +24,8 @@ UPX = true
CXXOUTPUT = -o

ifdef MAC
CXX = g++ -g -Wall -std=c++98 -pedantic-errors -fno-omit-frame-pointer -arch i386
LD = g++ -arch i386
CXX = g++ -g -Wall -std=c++98 -pedantic-errors -fno-omit-frame-pointer
LD = g++

else # linux
CXX = g++ -g -Wall -std=c++98 -pedantic-errors -fno-omit-frame-pointer -ffloat-store
Expand Down

0 comments on commit 7dee9bd

Please sign in to comment.