summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-10-24 19:59:14 +0200
committerSven Gothel <[email protected]>2013-10-24 19:59:14 +0200
commita65cc99054a5a6684784bf9a9e8c13fe866b81ad (patch)
tree23348f898a34d48fb90ffeee67bf9660e68581bd /src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java
parent828c0e4ce45fb209ecf4355c8572ef3931228206 (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/hp/aCCLinker.java')
-rw-r--r--src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java b/src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java
index 94f7fc0..159cb37 100644
--- a/src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java
+++ b/src/main/java/net/sf/antcontrib/cpptasks/hp/aCCLinker.java
@@ -44,7 +44,7 @@ public final class aCCLinker extends AbstractLdLinker {
private aCCLinker(String command, String[] extensions,
String[] ignoredExtensions, String outputPrefix, String outputSuffix) {
super(command, "-help", extensions, ignoredExtensions, outputPrefix,
- outputSuffix, false, null);
+ outputSuffix, false, false, null);
}
public void addImpliedArgs(boolean debug, LinkType linkType, Vector args) {
if (debug) {