summaryrefslogtreecommitdiffstats
path: root/make/lib/cpptasks_gcclinker.patch
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-03-06 19:35:48 +0100
committerSven Gothel <[email protected]>2012-03-06 19:35:48 +0100
commitb31f1885fab139fb3dde9f04304406402650eb83 (patch)
treead4ce006199d30889fc854092daf2cc7040ebe74 /make/lib/cpptasks_gcclinker.patch
parentbb698e7d5157857c728c11ffc46f0cd2ff79b345 (diff)
Update and cleanup cpptasks build & archive.
Including Edwin Vane's work in commit d51d2aaad01d1c8188193a7913c6ef0fc38ea798
Diffstat (limited to 'make/lib/cpptasks_gcclinker.patch')
-rw-r--r--make/lib/cpptasks_gcclinker.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/make/lib/cpptasks_gcclinker.patch b/make/lib/cpptasks_gcclinker.patch
deleted file mode 100644
index 0eb4c76..0000000
--- a/make/lib/cpptasks_gcclinker.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: src/main/java/net/sf/antcontrib/cpptasks/gcc/GccLinker.java
-===================================================================
---- src/main/java/net/sf/antcontrib/cpptasks/gcc/GccLinker.java (revision 177)
-+++ src/main/java/net/sf/antcontrib/cpptasks/gcc/GccLinker.java (working copy)
-@@ -78,6 +78,12 @@
- */
- public String decorateLinkerOption(StringBuffer buf, String arg) {
- String decoratedArg = arg;
-+ if (arg.startsWith("--sysroot")) {
-+ return arg;
-+ }
-+ if (arg.startsWith("-nostdlib")) {
-+ return arg;
-+ }
- if (arg.length() > 1 && arg.charAt(0) == '-') {
- switch (arg.charAt(1)) {
- //