diff options
author | Iain Sandoe <iain@sandoe.co.uk> | 2021-11-12 16:36:25 +0000 |
---|---|---|
committer | Iain Sandoe <iain@sandoe.co.uk> | 2021-11-15 19:27:24 +0000 |
commit | b7f0147833a302d654bf95a9c89f77c7ba4c7148 (patch) | |
tree | 251e467dbe3e6e5c5cf4d9e326d2fdf855f3b9d8 /gcc | |
parent | d10b863fa3de8b202aadbdef1b012188ab0868d8 (diff) | |
download | gcc-b7f0147833a302d654bf95a9c89f77c7ba4c7148.zip gcc-b7f0147833a302d654bf95a9c89f77c7ba4c7148.tar.gz gcc-b7f0147833a302d654bf95a9c89f77c7ba4c7148.tar.bz2 |
Ada, Darwin : Use DSYMUTIL_FOR_TARGET in libgnat/gnarl builds.
Most of the time we get away with using the dsymutil that is
installed with the latest Xcode, however for some cross-compilation
cases that does not work.
We now have the ability to specify the correct dsymutil to use for
the toolchain (--with-dsymutil=) and we should use that specified
tool for debug link. Fixes cross-compilers from x86-64 to powerpc.
Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
gcc/ada/ChangeLog:
* gcc-interface/Makefile.in: Use DSYMUTIL_FOR_TARGET in
libgnat/libgnarl recipies.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/gcc-interface/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/gcc-interface/Makefile.in b/gcc/ada/gcc-interface/Makefile.in index 9df8809..53d0739 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -800,8 +800,8 @@ gnatlib-shared-darwin: libgnat$(soext) cd $(RTSDIR); $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \ libgnarl$(soext) - cd $(RTSDIR); dsymutil libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) - cd $(RTSDIR); dsymutil libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) + cd $(RTSDIR); $(DSYMUTIL_FOR_TARGET) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) + cd $(RTSDIR); $(DSYMUTIL_FOR_TARGET) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) gnatlib-shared: $(MAKE) $(FLAGS_TO_PASS) \ |