Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 1982432

Browse files
committedJul 15, 2020
Merge
2 parents 590de67 + d7c1bb1 commit 1982432

File tree

992 files changed

+2141
-2080
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

992 files changed

+2141
-2080
lines changed
 

‎make/autoconf/basic.m4

+5-4
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,18 @@ AC_DEFUN_ONCE([BASIC_SETUP_PATHS],
8686
AC_SUBST(TOPDIR)
8787
AC_SUBST(CONFIGURE_START_DIR)
8888
89+
# We can only call UTIL_FIXUP_PATH after BASIC_CHECK_PATHS_WINDOWS.
90+
UTIL_FIXUP_PATH(TOPDIR)
91+
UTIL_FIXUP_PATH(CONFIGURE_START_DIR)
92+
8993
if test "x$CUSTOM_ROOT" != x; then
94+
UTIL_FIXUP_PATH(CUSTOM_ROOT)
9095
WORKSPACE_ROOT="${CUSTOM_ROOT}"
9196
else
9297
WORKSPACE_ROOT="${TOPDIR}"
9398
fi
9499
AC_SUBST(WORKSPACE_ROOT)
95100
96-
# We can only call UTIL_FIXUP_PATH after BASIC_CHECK_PATHS_WINDOWS.
97-
UTIL_FIXUP_PATH(CONFIGURE_START_DIR)
98-
UTIL_FIXUP_PATH(TOPDIR)
99-
100101
# Locate the directory of this script.
101102
AUTOCONF_DIR=$TOPDIR/make/autoconf
102103

‎make/modules/java.desktop/lib/Awt2dLibraries.gmk

+7
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,13 @@ else
277277
BUILD_LIBLCMS_INCLUDE_FILES :=
278278
endif
279279

280+
ifeq ($(TOOLCHAIN_TYPE), clang)
281+
ifeq ($(TOOLCHAIN_VERSION), 10.1)
282+
# Work around an optimizer bug seen with Xcode 10.1, but fixed by 10.3
283+
BUILD_LIBLCMS_cmsopt.c_CFLAGS := -O0
284+
endif
285+
endif
286+
280287
$(eval $(call SetupJdkLibrary, BUILD_LIBLCMS, \
281288
NAME := lcms, \
282289
INCLUDE_FILES := $(BUILD_LIBLCMS_INCLUDE_FILES), \

0 commit comments

Comments
 (0)
This repository has been archived.