Skip to content

Commit

Permalink
Add support for PPC 64bit on Linux
Browse files Browse the repository at this point in the history
In particular Debian Linux-3.9.8-1- PPC64

No functional change.
  • Loading branch information
wilsonk authored and mcostalba committed Nov 29, 2013
1 parent 3ede7da commit 67e5581
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,16 @@ ifeq ($(ARCH),osx-ppc-32)
sse = no
endif

ifeq ($(ARCH),linux-ppc-64)
arch = ppc64
os = any
bits = 64
prefetch = no
bsfq = no
popcnt = no
sse = no
endif

ifeq ($(ARCH),osx-x86-64)
arch = x86_64
os = osx
Expand Down Expand Up @@ -397,6 +407,7 @@ help:
@echo "x86-64-modern > x86 64-bit with popcnt support"
@echo "x86-32 > x86 32-bit with SSE support"
@echo "x86-32-old > x86 32-bit fall back for old hardware"
@echo "linux-ppc-64 > PPC-Linux 64 bit"
@echo "osx-ppc-64 > PPC-Mac OS X 64 bit"
@echo "osx-ppc-32 > PPC-Mac OS X 32 bit"
@echo "osx-x86-64 > x86-Mac OS X 64 bit"
Expand Down

0 comments on commit 67e5581

Please sign in to comment.