mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8200213: Configure broken on MIPS
Reviewed-by: erikj, stuefe, dholmes, ihse
This commit is contained in:
parent
187bf57418
commit
fe57cd2f3d
1 changed files with 5 additions and 1 deletions
|
@ -237,7 +237,11 @@ AC_DEFUN_ONCE([FLAGS_PRE_TOOLCHAIN],
|
||||||
MACHINE_FLAG="-q${OPENJDK_TARGET_CPU_BITS}"
|
MACHINE_FLAG="-q${OPENJDK_TARGET_CPU_BITS}"
|
||||||
elif test "x$TOOLCHAIN_TYPE" != xmicrosoft; then
|
elif test "x$TOOLCHAIN_TYPE" != xmicrosoft; then
|
||||||
if test "x$OPENJDK_TARGET_CPU" != xaarch64 &&
|
if test "x$OPENJDK_TARGET_CPU" != xaarch64 &&
|
||||||
test "x$OPENJDK_TARGET_CPU" != xarm; then
|
test "x$OPENJDK_TARGET_CPU" != xarm &&
|
||||||
|
test "x$OPENJDK_TARGET_CPU" != xmips &&
|
||||||
|
test "x$OPENJDK_TARGET_CPU" != xmipsel &&
|
||||||
|
test "x$OPENJDK_TARGET_CPU" != xmips64 &&
|
||||||
|
test "x$OPENJDK_TARGET_CPU" != xmips64el; then
|
||||||
MACHINE_FLAG="-m${OPENJDK_TARGET_CPU_BITS}"
|
MACHINE_FLAG="-m${OPENJDK_TARGET_CPU_BITS}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue