summaryrefslogtreecommitdiffstats
path: root/recipes-ti
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2020-05-22 00:05:22 +0000
committerDenys Dmytriyenko <denys@ti.com>2020-06-01 18:56:39 +0000
commitce65d05a39c9400f1965f0f39cdfe25fabda463e (patch)
tree30c9aa67e7229529d1bec449146367544cedf297 /recipes-ti
parent292aed84fbb83c6c7ff163f31a598711f738d8db (diff)
downloadmeta-ti-ce65d05a39c9400f1965f0f39cdfe25fabda463e.tar.gz
ti-xdctools: drop old unused patches
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti')
-rw-r--r--recipes-ti/devtools/ti-xdctools/arm-linker-hack.diff19
-rw-r--r--recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff21
2 files changed, 0 insertions, 40 deletions
diff --git a/recipes-ti/devtools/ti-xdctools/arm-linker-hack.diff b/recipes-ti/devtools/ti-xdctools/arm-linker-hack.diff
deleted file mode 100644
index 26debf8f..00000000
--- a/recipes-ti/devtools/ti-xdctools/arm-linker-hack.diff
+++ /dev/null
@@ -1,19 +0,0 @@
1--- a/packages/gnu/targets/arm/linkcmd.xdt 2010-12-30 19:33:53.000000000 +0100
2+++ b/packages/gnu/targets/arm/linkcmd.xdt 2010-12-30 19:42:55.000000000 +0100
3@@ -40,12 +40,13 @@
4
5 %if ("BINVERS" in prog.build.target) {
6 % var _utils = xdc.loadCapsule("gnu/targets/linkUtils.xs");
7+% if (prog.build.target.GCCVERS < "4.3.3") {
8 SECTIONS {
9 `_utils.genSections(prog)`
10 }
11-
12-% if (!prog.build.target.noStdLinkScript
13-% && prog.build.target.BINVERS >= "2.19") {
14+% }
15+% if (prog.build.target.noStdLinkScript
16+% && prog.build.target.BINVERS >= "2.19") {
17 INSERT BEFORE .gnu.attributes
18 % }
19
diff --git a/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff b/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff
deleted file mode 100644
index 36142c47..00000000
--- a/recipes-ti/devtools/ti-xdctools/fix-hardcoded-paths.diff
+++ /dev/null
@@ -1,21 +0,0 @@
1diff -ur a/packages/gnu/targets/ITarget.xs b/packages/gnu/targets/ITarget.xs
2--- a/packages/gnu/targets/ITarget.xs 2011-08-06 13:24:44.000000000 +0200
3+++ b/packages/gnu/targets/ITarget.xs 2011-08-06 13:23:37.000000000 +0200
4@@ -251,7 +251,7 @@
5
6 function askLd(target)
7 {
8- var ldCmd = target.rootDir + "/" + target.GCCTARG + "/bin/ld";
9+ var ldCmd = target.rootDir + "/" + target.GCCTARG + "-ld";
10 /* If the ld executable cannot be found, and the prefix is not used,
11 * it's probably a misspelled directory path.
12 */
13@@ -486,7 +486,7 @@
14 tool2cmd["link"] = cmd;
15
16 /* define the ar command template */
17- cmd = prefix + target.ar.cmd
18+ cmd = prefix + target.GCCTARG + "-ar"
19 + " $(AROPTS_P) " + target.ar.opts
20 + " $@ $(AROPTS_S) $(aropts) $(files)";
21 tool2cmd["ar"] = cmd;