diff options
author | Sven Gothel <[email protected]> | 2013-10-24 19:59:14 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-24 19:59:14 +0200 |
commit | a65cc99054a5a6684784bf9a9e8c13fe866b81ad (patch) | |
tree | 23348f898a34d48fb90ffeee67bf9660e68581bd /src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java | |
parent | 828c0e4ce45fb209ecf4355c8572ef3931228206 (diff) |
Fix Bug 871 - Add optional xcode.clang support for all modules (Extends Bug 837 w/ xcode's xcrun)
Add 'isXCoderun' into the OO chain CommanLine[Compiler|Linker]
up-to [Gcc|Gpp]Linker and GccCCompiler.
Xcode's xcrun is now triggered via using the commands (linker and compiler):
xcode.clang
xcode.clang++
More could be added later ..
+++
[Gcc|Gpp]Linker are derived from GnuLinker
to reuse common code and to fix GppLinker (align to GccLinker).
+++
Diffstat (limited to 'src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java')
-rw-r--r-- | src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java b/src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java index fda52fa..55f6682 100644 --- a/src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java +++ b/src/main/java/net/sf/antcontrib/cpptasks/arm/ADSLinker.java @@ -40,7 +40,7 @@ public class ADSLinker extends CommandLineLinker { } private ADSLinker(String outputSuffix) { super("armlink", "-vsn", new String[]{".o", ".lib", ".res"}, - new String[]{".map", ".pdb", ".lnk"}, outputSuffix, false, null); + new String[]{".map", ".pdb", ".lnk"}, outputSuffix, false, false, null); } /* * (non-Javadoc) |