This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

binary works if compiled in CC3, crashes if compiled in CCS4 - same code and settings

Other Parts Discussed in Thread: CCSTUDIO

Hi,

I've got a conundrum here - I've been working on custom software for the DSP part of the EVMOMAPL-137 and a custom board with a C6745. Software was originally developed in CCS3.3. For the custom board we have gone with CCS4 to use the XDS100v2 emulator. If the binary i load to run is compiled in CCS3.3 but loaded with the XDS100 emulator in CCS4, everything works fine. But problem is, if I compile the binary in CCS4 with, as far as i can tell, everything the same, both boards crash when doing certain tasks while running. Does anyone know what might be different from CCS3.3 to CCS4 that might cause this? It is the case with our software on both the EVMOMAPL-137 and our custom board.

I'm pretty sure the problem is with the binaries not the emulator or debugging, because in both cases (EVM and custom board) the only difference between working code and non working code is the version of CCS is which it was compiled. I'm always loading, running and debugging with CCS4 (using XDS100v2 on the custom board and onboard emulator with EVM).

I think the problem has something to do with scheduling/multithreading because symptoms vary, and sometimes it takes several events of the kind that crash it to make it actually crash. Our software uses several TSKs managed in DSP/BIOS.

For both CCS3 (v3.3.81.11) and CCS4 (v4.2.3.00004 ) I am using:

The same C/C++ source code
The same version of code generation tools: 6.1.14
The same version of DSP/BIOS: 5.33.06
CCS4 project is an import of the CCS3.3 project, with the modifications as suggested in the TI wiki: http://processors.wiki.ti.com/index.php/GSG:Importing_projects_from_previous_versions, ie getting rid of the implicit include directories from CCS3.3, etc.

I have tried to make the compiler and linker and BIOS builder options as close as i can between the two environments so as to still have CCS4 compile without errors. Here are my compile options, lined up (and slightly re-ordered so they line up) for comparison with what i see as differences highlighted.

CCS4 project CCS3.3 project
Compiler options
-g
-O2
--include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb"
--include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc"
--include_path="C:/CCStudio_v3.3_DSK/MyProjects/util"
--include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl"
--include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/"
--include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools"
--include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include"
--include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages"
--include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages"
--include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc"
--include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12"
--include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include"
--define="CHIP_C6747"
--define="_INCLUDE_NIMU_CODE"
--define="_INCLUDE_IPv6_CODE"
--define="_NDK_EXTERN_CONFIG"
--define="USE_LINKSTAT_FOR_IPADDR"
--define="MIX_UNIT"
--define="REVERB_UNIT"
--define="PFL_ENABLE"
-mv6740

--diag_warning=225
--include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common"
--include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include"

-g
-o2
-fr"$(Proj_dir)\wReverb"
-i"C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\inc"
-i"C:\CCStudio_v3.3_DSK\MyProjects\util"
-i"C:\CCStudio_v3.3_DSK\MyProjects\stl"
-i"C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\"
-i"C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\example\tools"
-i"C:\CCStudio_v3.3_DSK\boards\evmomapl137_v1\dsp\include"
-i"C:\Program Files\Texas Instruments\edma3_lld_01_10_00_01\packages"
-i"C:\Program Files\Texas Instruments\pspdrivers_01_30_01\packages"
-i"C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\src\hal\evmomapl137\eth_omapl137\inc"
-i"C:\CCStudio_v3.3_DSK\c674x\dsplib_v12"
-i"C:\CCStudio_v3.3_DSK\C6000\cgtools\include"
-d"CHIP_C6747"
-d"_INCLUDE_NIMU_CODE"
-d"_INCLUDE_IPv6_CODE"
-d"_NDK_EXTERN_CONFIG"
-d"USE_LINKSTAT_FOR_IPADDR"
-d"MIX_UNIT"
-d"REVERB_UNIT"
-d"PFL_ENABLE"
-mv6740
Linker options
--absolute_exe
--rom_model
-m"TCPserver.map"

--warn_sections
--reread_libs
-i"C:/CCStudio_v3.3_DSK/C6000/cgtools"
-i"C:/CCStudio_v3.3/bios_5_33_06/packages/ti/rtdx/lib/c6000"
-i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages"
-i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages"
 
--xml_link_info="../debug/TCPserver.xml"

-i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/lib"
-i"C:/CCStudio_v3.3_DSK/C6000/cgtools/lib"
-i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/lib/c6000"
-z

-q
-a
-c
-m".\wReverb\TCPserver.map"
-o".\wReverb\TCPserver.out"
-w
-x
-i"C:\CCStudio_v3.3_DSK\C6000\cgtools"
-i"C:\CCStudio_v3.3\bios_5_33_06/packages/ti/rtdx/lib/c6000"
-i"C:\Program Files\Texas Instruments\pspdrivers_01_30_01\packages"
-i"C:\Program Files\Texas Instruments\edma3_lld_01_10_00_01\packages"
-l"TCPServerAudio_Debug.cmd"
--xml_link_info="$(Proj_dir)\debug\TCPserver.xml"

note: the equivalent of -l"TCPServerAudio_Debug.cmd" should be here - it is specified in the properties in CCS4 but for some reason doesn't show up here in the textual options list - could this be a problem? - ie the linker never actually gets the message? I also tried just including it in the build to be sure - did not help.
note: z = link as part of compilation
q = suppress banner
c = rom_model
x = reread libs, exhaustivelread libs...
a = absolute executable
w = --warn_sections
DspBiosBuilder options
-Dconfig.importPath="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc/tci;C:/CCStudio_v3.3_DSK/bios_5_33_06/packages;"
-Dconfig.importPath="C:\CCStudio_v3.3\ndk_2_0_0/packages/ti/ndk/inc/tci;" -v6x

 

 

I also tried building the CCS4 version with DSP/BIOS 5.41 and code gen tools 7.2.2 (and removing the code gen tools includes from the CCS3.3 folder), and with and without the newest standalone version of the fastmath67x library, but those changes did not help.

Many thanks if anyone could point me in a direction for figuring out what is wrong!

  • Hello,

    Arvid Tomayko-Peters said:
    both boards crash when doing certain tasks while running

    Could you explain the "crash"? Does the program counter go "off into the weeds" and the the target is running junk? Is there an error message displayed?

    Arvid Tomayko-Peters said:
    note: the equivalent of -l"TCPServerAudio_Debug.cmd" should be here - it is specified in the properties in CCS4 but for some reason doesn't show up here in the textual options list - could this be a problem? - ie the linker never actually gets the message? I also tried just including it in the build to be sure - did not help.

    In think this is find. In v4, CCS now automatically handles generated files during the build (like tconf generated linker command files). It is handled "under the hood" from what I understand.

    Arvid Tomayko-Peters said:
    Many thanks if anyone could point me in a direction for figuring out what is wrong!

    Any chance you can provide both working and non-working executables for me to examine?

    Thanks

    ki

  • Thanks ki,

    Ki-Soo Lee said:
    Could you explain the "crash"? Does the program counter go "off into the weeds" and the the target is running junk? Is there an error message displayed?

    sure - what happens is it just stops responding to any input, TCP or otherwise and all processing stops (audio thread, which is one TSK function that never exists using the PSPiom audio drivers) and i get a stuck buffer. RTA functions (like CPU usage and logPrintf) stop getting data

    When i press halt sometimes it drops me off at a synbol called C$L1:

                C$L1:
    0xC1FBD1C8:   0002A120            BNOP.S1       C$L1 (PC+8 = 0xc1fbd1c8),5

    It does not place me at any position in the source code. ( Is there a better way i could go about trying to find out what happens when it crashes? )

    and sometimes it can't halt the CPU (i get this message)

    C674X_0: Trouble Halting Target CPU: (Error -1060 @ 0x0) Device is not responding to the request. Reset the device, and retry the operation. If error persists, confirm configuration, power-cycle the board, and/or try more reliable JTAG settings (e.g. lower TCLK). (Release 5.0.333.0)

    and I have to terminate the debug session and re-connect.

    Ki-Soo Lee said:
    Any chance you can provide both working and non-working executables for me to examine?

    I'll have to check with my co-workers as there is some proprietary code in it - but i assume that would not really be reverse engineer-able from the binary without serious effort... I'll get back to you on that.

    The .map files are quite different.

    Also, I was trying to find a listing of all files used in the compilation process - Code Composer 3.3 has the menu item Project > Show File Dependencies, which is a great way to list all used files. Does CCS4 have something similar? i cannot find it. I tried looking at the .pp files in the output directory of the CCS4 project - looks like that is the same thing - is that true?

    Thanks!

  • Ki - I PM'd you the binaries. I assume you wont, but please don't distribute them or anything :)

    And i discovered some more information from looking at the .map files ---

    the CCS3.3 compile contains these additional global symbols that don't appear in the CCS4 build:

    • c1f75f04   _exp10
    • c1f75f04   _exp10dp
    • c1f75ee0   _exp2
    • c1f75ee0   _exp2dp
    • c1f75f20   _expdp
    • c1f70200   _log
    • c1f70160   _log10
    • c1f70160   _log10dp
    • c1f700c0   _log2
    • c1f700c0   _log2dp
    • c1f70200   _logdp
    • c1fbe058   _nmnL2
    • c1f7dee0   _divdp
    • c1f7e140   _divsp
    • c1f782f0   _powdp
    • c1f21a68   _printlog
    • c1f7e4c0   _puts
    • c1f7bcc0   _sqrtdp

    and the CCS4 compile contains these additional global symbols that don't appear in the CCS3.3 build:

    • c1f756e0   __frcmpyd_div
    • c1f7d2a0   __frcmpyf_div
    • c1f7d340   __nround
    • c1f7ea20   __trunc
    • c1f7a3a0   _frexp
    • c1f78e80   _ldexp
    • c1f7d840   _modf

    these all look like math functions of various types - looks like i'm somehow getting different math headers or libraries or something cpompiled or linked in in the two different CCS versions... where could these differences be coming from? Maybe a difference in the priority of how CCS4 and 3.3 look at different includes? Maybe one is successfully using fastmath67x.h/.lib and the other is not?

  • Thanks for sending the executables.

    Could you send me the full build output? I'm looking for all the messages that appear in the build console when you build the project. For v4 if there are a lot of messages, you can right-click in the console and increase the amount of lines that the console can store. In v3 you can stream your build messages to a file. Just right-click in the console and select 'Save Output to File' and select the 'Build' option and build again. I'm pretty sure the differences in the executables are due to different libraries being linked in. I would like to see exactly what options get passed to the linker from CCSv4

    Thanks

    ki

  • Ki-Soo Lee said:
    In v3 you can stream your build messages to a file. Just right-click in the console and select 'Save Output to File' and select the 'Build' option and build again.

    For v3, also provide the 'Debug.lkf' file.

    Thanks

  • Sure thing.

    --------------------------  TCPserver.pjt - wReverb  --------------------------
    [evmboard.tcf] "C:\CCStudio_v3.3_DSK\bios_5_33_06\xdctools\tconf" -b -Dconfig.importPath="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc/tci;C:/CCStudio_v3.3_DSK/bios_5_33_06/packages"  evmboard.tcf
    
    [Gpio.c]
     "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../../../../../../../../CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wR
    everb.lkf" "Gpio.c"
    
    [audio_io.cpp] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "audio_io.cpp"
    "audio_io.cpp", line 265: warning: variable "lanaSz" was declared but never referenced
    
    [compressor.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "compressor.c"
    "compressor.c", line 30: warning: variable "delta" was declared but never referenced
    "compressor.c", line 31: warning: variable "i" was declared but never referenced
    "compressor.c", line 56: warning: variable "delta" was declared but never referenced
    "compressor.c", line 57: warning: variable "i" was declared but never referenced
    
    [ethdriver.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "ethdriver.c"
    "ethdriver.c", line 870: warning: a value of type "void (*)(void)" cannot be assigned to an entity of type "void (*)(void *)"
    "ethdriver.c", line 882: warning: a value of type "void (*)(void)" cannot be assigned to an entity of type "void (*)(void *)"
    
    [reverb_mod.cpp] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "reverb_mod.cpp"
    "PlateClass_Reverb_Iterbuf.c", line 48: warning: external/internal linkage conflict with previous declaration
    "PlateClass_Reverb_Iterbuf.c", line 49: warning: external/internal linkage conflict with previous declaration
    "PlateClass_Reverb_Iterbuf.c", line 50: warning: external/internal linkage conflict with previous declaration
    "PlateClass_Reverb_Iterbuf.c", line 51: warning: external/internal linkage conflict with previous declaration
    "PlateClass_Reverb_Iterbuf.c", line 53: warning: external/internal linkage conflict with previous declaration
    "PlateClass_Reverb_Iterbuf.c", line 61: warning: external/internal linkage conflict with previous declaration
    "PlateClass_Reverb_Iterbuf.c", line 918: warning: pragma DATA_ALIGN can only be applied to a file level symbol definition, not "scratch" (declared at line 919)
    "PlateClass_Reverb_Iterbuf.c", line 930: warning: pragma DATA_ALIGN can only be applied to a file level symbol definition, not "scratch" (declared at line 931)
    "PlateClass_Reverb_Iterbuf.c", line 958: warning: pragma DATA_ALIGN can only be applied to a file level symbol definition, not "sample1" (declared at line 959)
    "PlateClass_Reverb_Iterbuf.c", line 1102: warning: variable "i" was declared but never referenced
    
    [stune_if.cpp] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "stune_if.cpp"
    "ccache2.h", line 11: warning: declaration requires a typedef name
    "ccache2.h", line 17: warning: declaration requires a typedef name
    "stune_if.cpp", line 80: warning: variable "recModePrevious" was set but never used
    "stune_if.cpp", line 162: warning: variable "beatLengthFloat" was declared but never referenced
    "stune_if.cpp", line 62: warning: variable "MAX_TOTAL_TIME" was declared but never referenced
    
    [TCPserver_coef.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "TCPserver_coef.c"
    "TCPserver_coef.h", line 62: warning: incompatible redefinition of macro "STACK_USE_ARP" (declared at line 25)
    "TCPserver_coef.h", line 117: warning: declaration requires a typedef name
    "netprotocol.h", line 252: warning: unrecognized character escape sequence
    "netprotocol.h", line 252: warning: unrecognized character escape sequence
    "netprotocol.h", line 252: warning: unrecognized character escape sequence
    "PlateClass_Reverb.h", line 357: warning: declaration is not visible outside of function
    "globals.h", line 273: warning: unrecognized #pragma
    "globals.h", line 284: warning: incompatible redefinition of macro "CH_BEAT_LOOP" (declared at line 39 of "stune_common.h")
    "ccache2.h", line 11: warning: declaration requires a typedef name
    "ccache2.h", line 17: warning: declaration requires a typedef name
    "globals.h", line 434: warning: unrecognized #pragma
    "globals.h", line 474: warning: unrecognized preprocessing directive
    "globals.h", line 504: warning: unrecognized #pragma
    "globals.h", line 760: warning: unrecognized #pragma
    "globals.h", line 763: warning: unrecognized #pragma
    "globals.h", line 788: warning: unrecognized #pragma
    "globals.h", line 790: warning: unrecognized #pragma
    "getcoefdsp.c", line 5: warning: unrecognized #pragma
    "getcoefdsp.c", line 148: warning: unrecognized #pragma
    "getcoefdsp.c", line 240: warning: variable "i" was declared but never referenced
    "getcoefdsp.c", line 280: warning: unrecognized #pragma
    "getcoefdsp.c", line 316: warning: variable "i" was declared but never referenced
    "getcoefdsp.c", line 316: warning: variable "j" was declared but never referenced
    "getcoefdsp.c", line 316: warning: variable "k" was declared but never referenced
    "getcoefdsp.c", line 318: warning: variable "add" was declared but never referenced
    "getcoefdsp.c", line 363: warning: variable "i" was declared but never referenced
    "getcoefdsp.c", line 363: warning: variable "j" was declared but never referenced
    "getcoefdsp.c", line 423: warning: unrecognized preprocessing directive
    "getcoefdsp.c", line 428: warning: unrecognized preprocessing directive
    "getcoefdsp.c", line 465: warning: unrecognized preprocessing directive
    "getcoefdsp.c", line 466: warning: unrecognized preprocessing directive
    "getcoefdsp.c", line 500: warning: unrecognized #pragma
    "getcoefdsp.c", line 504: warning: variable "i" was set but never used
    "getcoefdsp.c", line 605: warning: unrecognized #pragma
    "getcoefdsp.c", line 626: warning: unrecognized #pragma
    "getcoefdsp.c", line 631: warning: variable "i" was declared but never referenced
    "getcoefdsp.c", line 632: warning: variable "tab_gc" was declared but never referenced
    "getcoefdsp.c", line 730: warning: unrecognized #pragma
    "getcoefdsp.c", line 736: warning: variable "atemp" was declared but never referenced
    "getcoefdsp.c", line 883: warning: unrecognized #pragma
    "getcoefdsp.c", line 888: warning: unrecognized #pragma
    "getcoefdsp.c", line 905: warning: variable "remain_i_hi" was declared but never referenced
    "getcoefdsp.c", line 938: warning: variable "atemp" was declared but never referenced
    "getcoefdsp.c", line 1311: warning: unrecognized #pragma
    "kit.c", line 5: warning: unrecognized #pragma
    "kit.c", line 43: warning: enumerated type mixed with another type
    "kit.c", line 94: warning: variable "kitdata" was declared but never referenced
    "kit.c", line 173: warning: variable "i" was declared but never referenced
    "kit.c", line 229: warning: variable "isnotequal" was declared but never referenced
    "mixer_if.c", line 48: warning: variable "submL" was declared but never referenced
    "mixer_if.c", line 48: warning: variable "submR" was declared but never referenced
    "mixer_if.c", line 213: warning: variable "i" was declared but never referenced
    "mixer_if.c", line 380: warning: enumerated type mixed with another type
    "mixer_if.c", line 333: warning: variable "data" was declared but never referenced
    "mixer_if.c", line 333: warning: variable "i" was declared but never referenced
    "TCPserver_coef.c", line 207: warning: argument of type "char *" is incompatible with parameter of type "unsigned char *"
    "TCPserver_coef.c", line 217: warning: argument of type "char *" is incompatible with parameter of type "unsigned char *"
    "TCPserver_coef.c", line 188: warning: variable "temp_chr" was declared but never referenced
    "TCPserver_coef.c", line 369: warning: missing return statement at end of non-void function "DSP_stune"
    "TCPserver_coef.c", line 370: warning: missing return statement at end of non-void function "DSP_query"
    "TCPserver_coef.c", line 372: warning: missing return statement at end of non-void function "DSP_reverb"
    "TCPserver_coef.c", line 378: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "TCPserver_coef.c", line 538: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "TCPserver_coef.c", line 445: warning: variable "kit_id" was declared but never referenced
    "TCPserver_coef.c", line 445: warning: variable "ch" was declared but never referenced
    "TCPserver_coef.c", line 816: warning: enumerated type mixed with another type
    "TCPserver_coef.c", line 1118: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "TCPserver_coef.c", line 1214: warning: argument of type "int8 *" is incompatible with parameter of type "char *"
    "TCPserver_coef.c", line 1214: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "TCPserver_coef.c", line 1215: warning: argument of type "int8 *" is incompatible with parameter of type "const char *"
    "TCPserver_coef.c", line 1249: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "TCPserver_coef.c", line 1136: warning: variable "ascii_ptr" was declared but never referenced
    "TCPserver_coef.c", line 1138: warning: variable "temp_ptr" was declared but never referenced
    "TCPserver_coef.c", line 1519: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "TCPserver_coef.c", line 1522: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "TCPserver_coef.c", line 1522: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "TCPserver_coef.c", line 1523: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "TCPserver_coef.c", line 1381: warning: variable "ascii_ptr" was declared but never referenced
    "TCPserver_coef.c", line 76: warning: variable "hUart_coef" was declared but never referenced
    
    [TCPserver_eth.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "TCPserver_eth.c"
    "TCPserver_coef.h", line 62: warning: incompatible redefinition of macro "STACK_USE_ARP" (declared at line 25)
    "TCPserver_coef.h", line 117: warning: declaration requires a typedef name
    "TCPserver_eth.c", line 124: warning: variable "tok_ptr" was declared but never referenced
    "TCPserver_eth.c", line 824: warning: variable "cfgDHCPentry" was declared but never referenced
    "TCPserver_eth.c", line 965: warning: variable "prev_addr" was declared but never referenced
    "TCPserver_eth.c", line 1093: warning: variable "j" was declared but never referenced
    "TCPserver_eth.c", line 1211: warning: variable "j" was declared but never referenced
    "TCPserver_eth.c", line 915: warning: function "TCPCompStatusTsk" was declared but never referenced
    "TCPserver_eth.c", line 1070: warning: variable "audio_bsy" was set but never used
    
    [tftp_spi_flash_writer.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "tftp_spi_flash_writer.c"
    "davinci_spi.h", line 102: warning: incompatible redefinition of macro "offsetof" (declared at line 33 of "C:/CCStudio_v3.3_DSK/C6000/cgtools/include/stddef.h")
    "tftp_spi_flash_writer.c", line 92: warning: variable "tftpCheck" was declared but never referenced
    
    [webpage.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"../evmomapl137/wReverb.lkf" "webpage.c"
    "ccache2.h", line 11: warning: declaration requires a typedef name
    "ccache2.h", line 17: warning: declaration requires a typedef name
    "TCPserver_coef.h", line 62: warning: incompatible redefinition of macro "STACK_USE_ARP" (declared at line 25)
    "TCPserver_coef.h", line 117: warning: declaration requires a typedef name
    
    [evminit.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"wReverb.lkf" "evminit.c"
    "evminit.c", line 38: warning: variable "i" was declared but never referenced
    
    [evmboardcfg.s62] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"wReverb.lkf" "evmboardcfg.s62"
    
    [evmboardcfg_c.c] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -g -o2 -fr"C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/wReverb" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" -i"C:/CCStudio_v3.3_DSK/MyProjects/util" -i"C:/CCStudio_v3.3_DSK/MyProjects/stl" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" -i"C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" -i"C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/include" -d"CHIP_C6747" -d"_INCLUDE_NIMU_CODE" -d"_INCLUDE_IPv6_CODE" -d"_NDK_EXTERN_CONFIG" -d"USE_LINKSTAT_FOR_IPADDR" -d"MIX_UNIT" -d"REVERB_UNIT" -d"PFL_ENABLE" -mv6740 -@"wReverb.lkf" "evmboardcfg_c.c"
    
    [Linking...] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.14\bin\cl6x" -@"wReverb.lkf"
    <Linking>
    
    Build Complete,
      0 Errors, 117 Warnings, 0 Remarks.
    

    -z -q -a -c -m"./wReverb/TCPserver.map" -o"./wReverb/TCPserver.out" -w -x -i"C:/CCStudio_v3.3_DSK/C6000/cgtools" -i"C:/CCStudio_v3.3/bios_5_33_06/packages/ti/rtdx/lib/c6000" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/CCStudio_v3.3_DSK/C6000/csl/lib" -i"C:/CCStudio_v3.3_DSK/C6000/xdais/lib" -i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/lib" -i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/lib/c6000" -i"C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/lib" -l"TCPServerAudio_Debug.cmd" --xml_link_info="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/evmomapl137/debug/TCPserver.xml"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\TCPserver_eth.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\audio_io.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\compressor.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\ethdriver.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\evmboardcfg.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\evmboardcfg_c.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\evminit.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\Gpio.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\reverb_mod.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\stune_if.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\TCPserver_coef.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\tftp_spi_flash_writer.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\wReverb\webpage.obj"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\C64plus\hal\hal_ser_stub.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\C64plus\hal\hal_timer_bios.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\C64plus\hal\hal_userled_stub.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\c64plus\miniPrintf.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\c64plus\netctrl.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\c64plus\nettool.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\c64plus\os.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\c64plus\stack.lib"
    "C:\CCStudio_v3.3\ndk_2_0_0\packages\ti\ndk\lib\hal\evm6747\hal_eth_c6747.lib"
    "C:\CCStudio_v3.3_DSK\boards\evmomapl137_v1\dsp\lib\evmomapl137bsl.lib"
    "C:\CCStudio_v3.3_DSK\C6000\cgtools\lib\fastmath67x.lib"
    "C:\CCStudio_v3.3_DSK\c674x\dsplib_v12\dsplib674x.lib"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\davinci_spi.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\spi_flash.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\winbond.obj"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\evmomapl137\TCPserver.cmd"
    

    **** Build of configuration wReverb for project TCPserver ****
    
    C:\Program Files\Texas Instruments\ccsv4\utils\gmake\gmake -k all 
    'Building file: ../evmboard.tcf'
    'Invoking: TConf Script Compiler'
    "C:/CCStudio_v3.3_DSK/bios_5_33_06/xdctools/tconf" -b -Dconfig.importPath="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc/tci;C:/CCStudio_v3.3_DSK/bios_5_33_06/packages;" "../evmboard.tcf"
    'Finished building: ../evmboard.tcf'
    ' '
    'Building file: C:/Program Files/Texas Instruments/pspdrivers_01_30_00_05/packages/ti/pspiom/gpio/src/Gpio.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="Gpio.pp"  "C:/Program Files/Texas Instruments/pspdrivers_01_30_00_05/packages/ti/pspiom/gpio/src/Gpio.c"
    'Finished building: C:/Program Files/Texas Instruments/pspdrivers_01_30_00_05/packages/ti/pspiom/gpio/src/Gpio.c'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="TCPserver_coef.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\TCPserver_coef.h", line 62: warning: incompatible redefinition of macro "STACK_USE_ARP" (declared at line 25)
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\TCPserver_coef.h", line 117: warning: declaration requires a typedef name
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\netprotocol.h", line 252: warning: unrecognized character escape sequence
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\netprotocol.h", line 252: warning: unrecognized character escape sequence
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\netprotocol.h", line 252: warning: unrecognized character escape sequence
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb.h", line 357: warning: declaration is not visible outside of function
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 273: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 284: warning: incompatible redefinition of macro "CH_BEAT_LOOP" (declared at line 39 of "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\stune_common.h")
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\ccache2.h", line 11: warning: declaration requires a typedef name
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\ccache2.h", line 17: warning: declaration requires a typedef name
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 434: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 474: warning: unrecognized preprocessing directive
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 504: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 760: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 763: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 788: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\globals.h", line 790: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 5: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 148: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 249: warning: function declared implicitly
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 240: warning: variable "i" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 280: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 316: warning: variable "i" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 316: warning: variable "j" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 316: warning: variable "k" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 318: warning: variable "add" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 363: warning: variable "i" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 363: warning: variable "j" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 423: warning: unrecognized preprocessing directive
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 428: warning: unrecognized preprocessing directive
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 465: warning: unrecognized preprocessing directive
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 466: warning: unrecognized preprocessing directive
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 500: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 504: warning: variable "i" was set but never used
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 605: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 626: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 631: warning: variable "i" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 632: warning: variable "tab_gc" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 730: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 736: warning: variable "atemp" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 883: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 888: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 905: warning: variable "remain_i_hi" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 938: warning: variable "atemp" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\getcoefdsp.c", line 1311: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\kit.c", line 5: warning: unrecognized #pragma
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\kit.c", line 43: warning: enumerated type mixed with another type
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\kit.c", line 94: warning: variable "kitdata" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\kit.c", line 173: warning: variable "i" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\kit.c", line 229: warning: variable "isnotequal" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\mixer_if.c", line 48: warning: variable "submL" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\mixer_if.c", line 48: warning: variable "submR" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\mixer_if.c", line 213: warning: variable "i" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\mixer_if.c", line 380: warning: enumerated type mixed with another type
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\mixer_if.c", line 333: warning: variable "data" was declared but never referenced
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\mixer_if.c", line 333: warning: variable "i" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 207: warning: argument of type "char *" is incompatible with parameter of type "unsigned char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 217: warning: argument of type "char *" is incompatible with parameter of type "unsigned char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 188: warning: variable "temp_chr" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 369: warning: missing return statement at end of non-void function "DSP_stune"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 370: warning: missing return statement at end of non-void function "DSP_query"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 372: warning: missing return statement at end of non-void function "DSP_reverb"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 378: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 513: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 538: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 445: warning: variable "kit_id" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 445: warning: variable "ch" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 816: warning: enumerated type mixed with another type
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1118: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1214: warning: argument of type "int8 *" is incompatible with parameter of type "char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1214: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1215: warning: argument of type "int8 *" is incompatible with parameter of type "const char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1217: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1249: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1136: warning: variable "ascii_ptr" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1138: warning: variable "temp_ptr" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1519: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1522: warning: argument of type "unsigned char *" is incompatible with parameter of type "char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1522: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1523: warning: argument of type "unsigned char *" is incompatible with parameter of type "const char *"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 1381: warning: variable "ascii_ptr" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c", line 76: warning: variable "hUart_coef" was declared but never referenced
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_coef.c'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="TCPserver_eth.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\TCPserver_coef.h", line 62: warning: incompatible redefinition of macro "STACK_USE_ARP" (declared at line 25)
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\TCPserver_coef.h", line 117: warning: declaration requires a typedef name
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 124: warning: variable "tok_ptr" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 824: warning: variable "cfgDHCPentry" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 965: warning: variable "prev_addr" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 1093: warning: variable "j" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 1211: warning: variable "j" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 915: warning: function "TCPCompStatusTsk" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c", line 1070: warning: variable "audio_bsy" was set but never used
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/TCPserver_eth.c'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/audio_io.cpp'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="audio_io.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/audio_io.cpp"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/audio_io.cpp", line 265: warning: variable "lanaSz" was declared but never referenced
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/audio_io.cpp'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="compressor.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c", line 30: warning: variable "delta" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c", line 31: warning: variable "i" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c", line 70: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c", line 75: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c", line 56: warning: variable "delta" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c", line 57: warning: variable "i" was declared but never referenced
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/compressor.c'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/ethdriver.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="ethdriver.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/ethdriver.c"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/ethdriver.c", line 486: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/ethdriver.c", line 870: warning: a value of type "void (*)(void)" cannot be assigned to an entity of type "void (*)(void *)"
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/ethdriver.c", line 882: warning: a value of type "void (*)(void)" cannot be assigned to an entity of type "void (*)(void *)"
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/ethdriver.c'
    ' '
    'Building file: evmboardcfg.s??'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="evmboardcfg.pp"  "evmboardcfg.s62"
    'Finished building: evmboardcfg.s??'
    ' '
    'Building file: evmboardcfg_c.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="evmboardcfg_c.pp"  "evmboardcfg_c.c"
    'Finished building: evmboardcfg_c.c'
    ' '
    'Building file: ../evminit.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="evminit.pp"  "../evminit.c"
    "../evminit.c", line 38: warning: variable "i" was declared but never referenced
    'Finished building: ../evminit.c'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/reverb_mod.cpp'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="reverb_mod.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/reverb_mod.cpp"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 48: warning: external/internal linkage conflict with previous declaration
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 49: warning: external/internal linkage conflict with previous declaration
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 50: warning: external/internal linkage conflict with previous declaration
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 51: warning: external/internal linkage conflict with previous declaration
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 53: warning: external/internal linkage conflict with previous declaration
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 61: warning: external/internal linkage conflict with previous declaration
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 918: warning: pragma DATA_ALIGN can only be applied to a file level symbol definition, not "scratch" (declared at line 919)
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 930: warning: pragma DATA_ALIGN can only be applied to a file level symbol definition, not "scratch" (declared at line 931)
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 958: warning: pragma DATA_ALIGN can only be applied to a file level symbol definition, not "sample1" (declared at line 959)
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\PlateClass_Reverb_Iterbuf.c", line 1102: warning: variable "i" was declared but never referenced
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/reverb_mod.cpp'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/stune_if.cpp'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="stune_if.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/stune_if.cpp"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\ccache2.h", line 11: warning: declaration requires a typedef name
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\ccache2.h", line 17: warning: declaration requires a typedef name
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/stune_if.cpp", line 80: warning: variable "recModePrevious" was set but never used
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/stune_if.cpp", line 162: warning: variable "beatLengthFloat" was declared but never referenced
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/stune_if.cpp", line 62: warning: variable "MAX_TOTAL_TIME" was declared but never referenced
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/stune_if.cpp'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/tftp_spi_flash_writer.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="tftp_spi_flash_writer.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/tftp_spi_flash_writer.c"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\davinci_spi.h", line 102: warning: incompatible redefinition of macro "offsetof" (declared at line 33 of "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include/stddef.h")
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/tftp_spi_flash_writer.c", line 142: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/tftp_spi_flash_writer.c", line 143: warning: function declared implicitly
    "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/tftp_spi_flash_writer.c", line 92: warning: variable "tftpCheck" was declared but never referenced
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/tftp_spi_flash_writer.c'
    ' '
    'Building file: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/webpage.c'
    'Invoking: Compiler'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --include_path="C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --include_path="C:/CCS4-workspace-DQE/TCPserver/wReverb" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/inc" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/util" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/stl" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/example/tools" --include_path="C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/include" --include_path="C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" --include_path="C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" --include_path="C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/src/hal/evmomapl137/eth_omapl137/inc" --include_path="C:/CCStudio_v3.3_DSK/c674x/dsplib_v12" --include_path="C:/CCStudio_v3.3_DSK/C6000/cgtools/include" --include_path="C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/include" --include_path="C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/include/c6000" --diag_warning=225 --preproc_with_compile --preproc_dependency="webpage.pp"  "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/webpage.c"
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\ccache2.h", line 11: warning: declaration requires a typedef name
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\ccache2.h", line 17: warning: declaration requires a typedef name
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\TCPserver_coef.h", line 62: warning: incompatible redefinition of macro "STACK_USE_ARP" (declared at line 25)
    "C:\CCStudio_v3.3_DSK\MyProjects\TCPserv_evm6747\common\TCPserver_coef.h", line 117: warning: declaration requires a typedef name
    'Finished building: C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/common/webpage.c'
    ' '
    'Building target: TCPserver.out'
    'Invoking: Linker'
    'Flags: -mv6740 -g -O2 --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" --diag_warning=225 -z -m"TCPserver.map" --warn_sections -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/lib" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools" -i"C:/CCStudio_v3.3/bios_5_33_06/packages/ti/rtdx/lib/c6000" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/lib" -i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/lib/c6000" -i"C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/lib" -i"C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" --reread_libs --xml_link_info="../debug/TCPserver.xml" --absolute_exe --rom_model'
    "C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/bin/cl6x" -@"ccsLinker.opt" -o "TCPserver.out"
    <Linking>
    'Finished building target: TCPserver.out'
    ' '
    Build complete for project TCPserver
    

  • Could you also attach the v4 'ccsLinker.opt' file? Sorry, I forgot to mention that one. It should be in your configuration subfolder.

    ki

  • here it is

    -mv6740 
    -g 
    -O2 
    --define="CHIP_C6747" --define="_INCLUDE_NIMU_CODE" --define="_INCLUDE_IPv6_CODE" --define="_NDK_EXTERN_CONFIG" --define="USE_LINKSTAT_FOR_IPADDR" --define="MIX_UNIT" --define="REVERB_UNIT" --define="PFL_ENABLE" 
    --diag_warning=225 
    -z 
    -m"TCPserver.map" 
    --warn_sections 
    -i"C:/CCStudio_v3.3_DSK/C6000/cgtools/lib" -i"C:/CCStudio_v3.3_DSK/C6000/cgtools" -i"C:/CCStudio_v3.3/bios_5_33_06/packages/ti/rtdx/lib/c6000" -i"C:/Program Files/Texas Instruments/pspdrivers_01_30_01/packages" -i"C:/Program Files/Texas Instruments/edma3_lld_01_10_00_01/packages" -i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/bios/lib" -i"C:/CCStudio_v3.3_DSK/bios_5_33_06/packages/ti/rtdx/lib/c6000" -i"C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/lib" -i"C:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.14/include" 
    --reread_libs 
    --xml_link_info="../debug/TCPserver.xml" 
    --absolute_exe 
    --rom_model 
    -l"./evmboardcfg.cmd" "C:/CCStudio_v3.3_DSK/C6000/cgtools/lib/fastmath67x.lib" -l"rts6740.lib" "./TCPserver_eth.obj" "./webpage.obj" "./tftp_spi_flash_writer.obj" "./stune_if.obj" "./reverb_mod.obj" "./evminit.obj" "./evmboardcfg_c.obj" "./evmboardcfg.obj" "./ethdriver.obj" "./compressor.obj" "./audio_io.obj" "./TCPserver_coef.obj" "./Gpio.obj" "../TCPServerAudio_Debug.cmd" "../TCPserver.cmd" "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/davinci_spi.obj" "C:/CCStudio_v3.3_DSK/c674x/dsplib_v12/dsplib674x.lib" "C:/CCStudio_v3.3_DSK/boards/evmomapl137_v1/dsp/lib/evmomapl137bsl.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/hal/evm6747/hal_eth_c6747.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/hal/hal_ser_stub.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/hal/hal_timer_bios.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/hal/hal_userled_stub.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/miniPrintf.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/netctrl.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/nettool.lib" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/os.lib" "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/spi_flash.obj" "C:/CCStudio_v3.3/ndk_2_0_0/packages/ti/ndk/lib/C64plus/stack.lib" "C:/CCStudio_v3.3_DSK/MyProjects/TCPserv_evm6747/winbond.obj" 

  • Hi Ki,

    did you figure anything out about this? Thanks a bunch.

  • <<< *polite bump* >>>

    No one has any ideas about this?

    cheers,

    Arvid