Kaydet (Commit) 4256ac0d authored tarafından Rene Engelhard's avatar Rene Engelhard

odk settings.mk: add various missing JAVA_PROC_TYPE overrides for Linux arches

... which were missing since ~ ever but now break the odk_build-examples test
with /usr/bin/ld: cannot find -ljawt

Change-Id: Ie504ce0c8e21c7d58f1b7e591505940a2f80a2ea
üst 89214e05
......@@ -275,6 +275,30 @@ ifeq "$(PROCTYPE)" "powerpc64"
JAVA_PROC_TYPE=ppc64
endif
ifeq "$(PROCTYPE)" "powerpc64_le"
JAVA_PROC_TYPE=ppc64le
endif
ifeq "$(PROCTYPE)" "arm_eabi"
JAVA_PROC_TYPE=arm
endif
ifeq "$(PROCTYPE)" "arm_oabi"
JAVA_PROC_TYPE=arm
endif
ifeq "$(PROCTYPE)" "mips_eb"
JAVA_PROC_TYPE=mips
endif
ifeq "$(PROCTYPE)" "mips_el"
JAVA_PROC_TYPE=mipsel
endif
ifeq "$(PROCTYPE)" "mips64_el"
JAVA_PROC_TYPE=mips64el
endif
ifeq "$(PROCTYPE)" "sparc64"
UNOPKG_PLATFORM=Linux_SPARC64
JAVA_PROC_TYPE=sparcv9
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment