summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-11 05:36:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-11 05:36:56 +0000
commit751cbd7d3e2352eede5269ccb5aface299330e04 (patch)
treec06ca3e2ad4fe4d50b775948a277e863c646fb72
parenta53f6d710bbd4decd13807ef249495e5983e1102 (diff)
configure.in: link the DWARF debug information
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--Makefile.in1
-rw-r--r--configure.in9
2 files changed, 9 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 90a8aaf561..b1da163cb4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -225,6 +225,7 @@ miniruby$(EXEEXT):
@-if test -f $@; then $(MV) -f $@ $@.old; $(RM) $@.old; fi
$(ECHO) linking $@
$(Q) $(PURIFY) $(CC) $(LDFLAGS) $(XLDFLAGS) $(NORMALMAINOBJ) $(MINIOBJS) $(COMMONOBJS) $(MAINLIBS) $(LIBS) $(OUTFLAG)$@
+ $(Q) $(POSTLINK)
$(PROGRAM):
@$(RM) $@
diff --git a/configure.in b/configure.in
index 24035c7c1a..b846524fdc 100644
--- a/configure.in
+++ b/configure.in
@@ -1203,9 +1203,16 @@ main()
if test "$rb_cv_broken_crypt" = yes; then
AC_DEFINE(BROKEN_CRYPT, 1)
fi
+ POSTLINK=""
AC_CHECK_PROGS(codesign, codesign)
+ AC_CHECK_PROGS(dsymutil, dsymutil)
if test -n "$codesign"; then
- POSTLINK="test -z '\$(RUBY_CODESIGN)' || $codesign -s '\$(RUBY_CODESIGN)' -f \$@"
+ POSTLINK="{ test -z '\$(RUBY_CODESIGN)' || $codesign -s '\$(RUBY_CODESIGN)' -f \$@; }${POSTLINK:+; $POSTLINK}"
+ fi
+ if test -n "$dsymutil"; then
+ POSTLINK="$dsymutil \$@${POSTLINK:+; $POSTLINK}"
+ fi
+ if test -n "${POSTLINK}"; then
LINK_SO="$LINK_SO
\$(POSTLINK)"
fi