From: Mahesh Radhakrishnan Date: Thu, 10 Jan 2019 16:11:13 +0000 (-0500) Subject: Descoping c6x big endian targets X-Git-Tag: DEV.WDTIMER.01.00.00.04A X-Git-Url: https://git.ti.com/gitweb?p=keystone-rtos%2Fwdtimer.git;a=commitdiff_plain;h=5c382014ed02fdf054beb1dd0263758eb17c34e2 Descoping c6x big endian targets --- diff --git a/build/buildlib.xs b/build/buildlib.xs index 49900ed..4678136 100644 --- a/build/buildlib.xs +++ b/build/buildlib.xs @@ -236,12 +236,6 @@ function createLibMake(device, makelibname,targetname, objectPath) 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 695f848..fd080f9 100644 --- a/config.bld +++ b/config.bld @@ -44,13 +44,6 @@ C66LE.ccOpts.prefix = "-mo -o3 --gcc -q -k -eo.o"; 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"); @@ -91,15 +84,6 @@ if (miniBuild == "ON") 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; - } /* Create the SoC List */ @@ -125,7 +109,7 @@ var socs = { /* Library options */ copts: " -DSOC_K2H", /* target list */ - targets: [ C66LE, C66BE] + targets: [ C66LE] }, k2k : { @@ -136,7 +120,7 @@ var socs = { /* Library options */ copts: " -DSOC_K2K", /* target list */ - targets: [ C66LE, C66BE] + targets: [ C66LE ] }, k2e : { @@ -147,7 +131,7 @@ var socs = { /* Library options */ copts: " -DSOC_K2E", /* target list */ - targets: [ C66LE, C66BE] + targets: [ C66LE ] }, k2l : { @@ -158,7 +142,7 @@ var socs = { /* Library options */ copts: " -DSOC_K2L", /* target list */ - targets: [ C66LE, C66BE] + targets: [ C66LE ] } }; diff --git a/package.bld b/package.bld index 819f8a9..bb668a0 100644 --- a/package.bld +++ b/package.bld @@ -56,7 +56,6 @@ print ("C66 Tools Directory : " + c66ToolsBaseDir); print ("RTSC File Name : " + lldRTSCFileName); print ("Watchdog Timer Path : " + lldPath); print ("CC LE opts : " + C66LE.ccOpts.prefix); -print ("CC BE opts : " + C66BE.ccOpts.prefix); print ("***********************************************************"); /* Create the release package for the Watchdog Timer Module */ @@ -189,5 +188,4 @@ if (lldInstallType == "SETUP") if (miniBuild == "ON") { Pkg.makeEpilogue += "\t -$(RM) simpleC66LE.mak\n"; - Pkg.makeEpilogue += "\t -$(RM) simpleC66BE.mak\n"; }