We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be3e39 commit 6f7bb79Copy full SHA for 6f7bb79
make/autoconf/basic_tools.m4
@@ -390,6 +390,17 @@ AC_DEFUN_ONCE([BASIC_SETUP_COMPLEX_TOOLS],
390
391
if test "x$OPENJDK_TARGET_OS" = "xmacosx"; then
392
UTIL_REQUIRE_PROGS(DSYMUTIL, dsymutil)
393
+ AC_MSG_CHECKING([if dsymutil supports --reproducer option])
394
+ if $DSYMUTIL --help | $GREP -q '\--reproducer '; then
395
+ AC_MSG_RESULT([yes])
396
+ # --reproducer option is supported
397
+ # set "--reproducer Off" to prevent unnecessary temporary
398
+ # directories creation
399
+ DSYMUTIL="$DSYMUTIL --reproducer Off"
400
+ else
401
+ # --reproducer option isn't supported
402
+ AC_MSG_RESULT([no])
403
+ fi
404
UTIL_REQUIRE_PROGS(MIG, mig)
405
UTIL_REQUIRE_PROGS(XATTR, xattr)
406
UTIL_LOOKUP_PROGS(CODESIGN, codesign)
0 commit comments