summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f96fd9d)
raw | patch | inline | side by side (parent: f96fd9d)
author | Mahesh Radhakrishnan <m-radhakrishnan2@ti.com> | |
Fri, 11 Jan 2019 21:18:55 +0000 (16:18 -0500) | ||
committer | Mahesh Radhakrishnan <m-radhakrishnan2@ti.com> | |
Fri, 11 Jan 2019 21:18:55 +0000 (16:18 -0500) |
build/buildlib.xs | patch | blob | history | |
config.bld | patch | blob | history | |
package.bld | patch | blob | history |
diff --git a/build/buildlib.xs b/build/buildlib.xs
index 4f0836dd9ed6ea4f7f1922b89af498290a715bac..fcf27e8320bc17cbd2dccc2b840bbf9f03af3f42 100644 (file)
--- a/build/buildlib.xs
+++ b/build/buildlib.xs
targetDir="c66";
targetname=C66LE;
break;
- case String(C66BE):
- tooldir="C6X_GEN_INSTALL_PATH";
- cmdprefix="";
- targetDir="c66";
- targetname=C66BE;
- break;
case String(A15LE):
tooldir="TOOLCHAIN_PATH_A15";
cmdprefix="CROSS_TOOL_PRFX";
diff --git a/config.bld b/config.bld
index d54842e94f328cb2179436726b1acec6de66de07..0c37bc509e7caef56edce126c0f3751724417771 100644 (file)
--- a/config.bld
+++ b/config.bld
if(extDbgFlags)
C66LE.ccOpts.prefix = C66LE.ccOpts.prefix + " " + extDbgFlags;
-/* C66 ELF compiler configuration for Big Endian Mode. */
-var C66BE = xdc.useModule('ti.targets.elf.C66_big_endian');
-C66BE.rootDir = c66ToolsBaseDir;
-C66BE.ccOpts.prefix = "-mo -o3 --gcc -q -k -eo.o -DBIGENDIAN";
-if(extDbgFlags)
- C66BE.ccOpts.prefix = C66BE.ccOpts.prefix + " " + extDbgFlags;
-
/* Check if we need to run the STATIC Analysis or not? */
var coverityAnalysis = java.lang.System.getenv("STATIC_ANALYZE");
C66LE.profiles["release"].filters[C66LE.profiles["release"].filters.length++] = makeC66LEFilter;
- var makeC66BEFilter = {
- moduleName: "build.filter.Make",
- params: {
- makefileName: "simpleC66BE.mak",
- }
- };
-
- C66BE.profiles["release"].filters[C66BE.profiles["release"].filters.length++] = makeC66BEFilter;
-
}
/* soc name (am?) is inserted between first an second element of this
/* Library options */
copts: "",
/* target list */
- targets: [ C66LE, C66BE]
+ targets: [ C66LE ]
},
k2h :
{
/* Library options */
copts: " -DDEVICE_K2H",
/* target list */
- targets: [ C66LE, C66BE]
+ targets: [ C66LE ]
},
k2k :
{
/* Library options */
copts: " -DDEVICE_K2K",
/* target list */
- targets: [ C66LE, C66BE]
+ targets: [ C66LE ]
},
k2e :
{
/* Library options */
copts: " -DDEVICE_K2E",
/* target list */
- targets: [ C66LE, C66BE]
+ targets: [ C66LE ]
},
k2l :
{
/* Library options */
copts: " -DDEVICE_K2L",
/* target list */
- targets: [ C66LE, C66BE]
+ targets: [ C66LE ]
}
};
diff --git a/package.bld b/package.bld
index 4b7e9355d90020cc157dd6fd22fdf2cbf2439ed1..10f9ce546215ac4cd77a848a5c64736fb007c789 100644 (file)
--- a/package.bld
+++ b/package.bld
print ("RTSC File Name : " + lldRTSCFileName);
print ("Fault Management Lib Path : " + lldPath);
print ("CC LE opts : " + C66LE.ccOpts.prefix);
-print ("CC BE opts : " + C66BE.ccOpts.prefix);
print ("***********************************************************");
/* Create the release package for the Fault Management Library */
if (miniBuild == "ON")
{
Pkg.makeEpilogue += "\t -$(RM) simpleC66LE.mak\n";
- Pkg.makeEpilogue += "\t -$(RM) simpleC66BE.mak\n";
}