* Fix to qvm compilation on big endian architectures
This commit is contained in:
parent
8f43965e13
commit
6dffd08e74
4 changed files with 24 additions and 104 deletions
8
Makefile
8
Makefile
|
@ -44,12 +44,12 @@ PLATFORM=$(COMPILE_PLATFORM)
|
|||
endif
|
||||
export PLATFORM
|
||||
|
||||
ifndef ARCH
|
||||
ARCH=$(COMPILE_ARCH)
|
||||
ifeq ($(COMPILE_ARCH),powerpc)
|
||||
COMPILE_ARCH=ppc
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),powerpc)
|
||||
ARCH=ppc
|
||||
ifndef ARCH
|
||||
ARCH=$(COMPILE_ARCH)
|
||||
endif
|
||||
export ARCH
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue