Skip to content
Snippets Groups Projects
Commit 008cd0c4 authored by deuce's avatar deuce
Browse files

Define __BIG_ENDIAN__ for Power Macintosh CPUs.

parent 9c60f8cc
No related branches found
No related tags found
No related merge requests found
......@@ -171,6 +171,9 @@ machine := $(shell if uname -m | egrep -v "(i[3456789]|x)86" > /dev/null; then
ifeq ($(machine),sun4u)
CFLAGS += -D__BIG_ENDIAN__
endif
ifeq ($(machine),power_macintosh)
CFLAGS += -D__BIG_ENDIAN__
endif
ifeq ($(machine),)
machine := $(os)
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment