Skip to content

Commit 9b8afce

Browse files
committedMar 16, 2022
8283260: gcc is not supported on mac
Reviewed-by: erikj
1 parent 08cadb4 commit 9b8afce

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed
 

‎make/autoconf/flags-ldflags.m4

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2021, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -95,13 +95,10 @@ AC_DEFUN([FLAGS_SETUP_LDFLAGS_HELPER],
9595
fi
9696
9797
# Setup OS-dependent LDFLAGS
98-
if test "x$TOOLCHAIN_TYPE" = xclang || test "x$TOOLCHAIN_TYPE" = xgcc; then
99-
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
100-
# Assume clang or gcc.
101-
# FIXME: We should really generalize SET_SHARED_LIBRARY_ORIGIN instead.
102-
OS_LDFLAGS_JVM_ONLY="-Wl,-rpath,@loader_path/. -Wl,-rpath,@loader_path/.."
103-
OS_LDFLAGS="-mmacosx-version-min=$MACOSX_VERSION_MIN"
104-
fi
98+
if test "x$OPENJDK_TARGET_OS" = xmacosx && test "x$TOOLCHAIN_TYPE" = xclang; then
99+
# FIXME: We should really generalize SET_SHARED_LIBRARY_ORIGIN instead.
100+
OS_LDFLAGS_JVM_ONLY="-Wl,-rpath,@loader_path/. -Wl,-rpath,@loader_path/.."
101+
OS_LDFLAGS="-mmacosx-version-min=$MACOSX_VERSION_MIN"
105102
fi
106103
107104
# Setup debug level-dependent LDFLAGS

‎make/autoconf/toolchain.m4

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ VALID_TOOLCHAINS_all="gcc clang xlc microsoft"
3939

4040
# These toolchains are valid on different platforms
4141
VALID_TOOLCHAINS_linux="gcc clang"
42-
VALID_TOOLCHAINS_macosx="gcc clang"
42+
VALID_TOOLCHAINS_macosx="clang"
4343
VALID_TOOLCHAINS_aix="xlc"
4444
VALID_TOOLCHAINS_windows="microsoft"
4545

@@ -901,8 +901,8 @@ AC_DEFUN_ONCE([TOOLCHAIN_SETUP_BUILD_COMPILERS],
901901
BUILD_LDCXX="$BUILD_LD"
902902
else
903903
if test "x$OPENJDK_BUILD_OS" = xmacosx; then
904-
UTIL_REQUIRE_PROGS(BUILD_CC, clang cc gcc)
905-
UTIL_REQUIRE_PROGS(BUILD_CXX, clang++ CC g++)
904+
UTIL_REQUIRE_PROGS(BUILD_CC, clang)
905+
UTIL_REQUIRE_PROGS(BUILD_CXX, clang++)
906906
else
907907
UTIL_REQUIRE_PROGS(BUILD_CC, cc gcc)
908908
UTIL_REQUIRE_PROGS(BUILD_CXX, CC g++)

0 commit comments

Comments
 (0)
Please sign in to comment.