ccs不能add webuploader addfiless to project是怎么回事

From Texas Instruments Wiki
A CCS project for embedded programs takes in source files or resources and generates an output executable file. A typical project consists of source files (C/C++/assembly), linker command file and a runtime support library, at a minimum. A SYS/BIOS project will additionally contain a BIOS configuration file. After the build process, an output executable file is created. In most cases a
linker map file is also generated by default. Depending on the project settings and options, other output files may be optionally generated. This page describes some of these files and their significance.
For more information on the build flow itself, please refer to .
When a new CCS project is created using the project wizard (File-&New-&CCS Project) some default files are typically added to the project. These files vary based on the type of project (BIOS or non-BIOS), the template chosen, and whether or not a Connection is specified. This is done merely to simplify the process for the user by adding some of the basic files required for building a program and loading it to the TI device.
One file that remains common no matter the type of project is the target configuration file(.ccxml). In CCS 5.3 and later, if a Connection is selected when creating the CCS project, a target configuration file (.ccxml) is added inside a folder named “targetConfigs”. The target configuration file defines the emulator connection and type of device it is connecting to. The creation of this file enables you to quickly start your debug session by the simple click of a button once you have built your project. This file is not required for the build process but comes into play when the program is ready to be loaded on to the target.
When a new non-RTSC project is created usually a linker command file (.cmd) and source file(s) (depending on the template chosen) is added to the project. You may choose to keep the source file or delete it and add your own source files.
The linker command file is a default file chosen based on the device selected for the project. The setting that allows this default linker command file to be added is under Advanced Settings in the New Project wizard. If the Linker command file field is set to &automatic& then the default file will be chosen. If you do not want a default linker command file chosen for you and would rather add a file of your own choice to the project, you can set the Linker command file field to &none&. Alternately, you can click on Browse and select a linker command file of your choice.
The linker command file is used during the linking stage of your application build where the linker combines object files and allocates sections into the target system's configured memory. The linker command file is an ASCII file that uses two linker directives, MEMORY and SECTIONS, to allocate sections into specific areas of memory. The MEMORY directive defines target memory configuration. The SECTIONS directive controls how sections are built and allocated. In addition, the linker command file can also include input filenames and linker options.
page covers the basics of linker command files, focusing on the MEMORY and SECTIONS directives.
Full details on linker command files can be found in the "Linker" chapter of the .
Linker command files play an important role in an embedded program as they specify where code and data sections get allocated into target memory. Without this file, the linker will not know the target memory configuration and how to properly allocate the sections. It will use default properties when allocating the sections of code. This may result in
errors or "Trouble Writing Memory Block" types of errors when loading code to the target. In some cases, it may still load without errors (for example, if loading to certain simulators) but it is never good practice, and more than often will cause the program to not work as expected when run on a target device. Hence it is very important to use a correct linker command file for your target.
To minimize load time and runtime errors that may arise due to missing linker command files, in CCS 5.2 and higher, the New Project wizard adds a default linker command file for most devices/boards. If a default linker command file is not added for your device, you may try one of the example files available at the linker command file .
The default file should work for many simple applications, however as application requirements get more stringent, the linker command file can be customized as needed. Also, if you already have a custom linker command file to use in your application, the default one added by CCS can simply be deleted.
When a new SYS/BIOS CCS project is created, usually a configuration file(.cfg) and source files(s)(depending on the template chosen) is added to the project. In this case, the target memory definition and section allocation is generally performed by a RTSC platform file that is selected by the user during project creation.
Note: An exception is for MCU devices (Stellaris, C2000, MSP430), where although a platform file is selected, the memory definition and section allocation come exclusively from a linker command file(.cmd) instead of the platform file.
The configuration file (.cfg) sets up BIOS objects and features required for the application.
When a SYS/BIOS project is built, the XDCtools take in the platform and configuration files and auto-generates these files (see
for build flow):
compiler.opt: that contains a set of options (typically include options and preprocessor defines) to be passed to the compiler when compiling user source files
linker.cmd: linker command file to be passed to the linker when linking the application
These files can be found in the \configPkg directory within the active build configuration directory, for example, &project_root&\Debug\configPkg directory.
In spite of the fact that a linker command file is auto-generated by SYS/BIOS, it is still possible for a user to additionally supply their own custom linker command file, if they have additional custom sections to allocate or if they wish to allocate one of the standard sections to a different memory region than the default. For more details and examples please refer to the following page:
For more details on the build flow of a typical SYS/BIOS application, please refer to the following page:
If you wish to change the default target memory definition (say when moving from a TI evaluation board to a custom board) you have to create a new RTSC platform since it is the platform that defines the target memory and section allocation. See the page
for steps to create a custom RTSC platform using the RTSC platform wizard in CCS.
The linker map file (.map) is an output from the linker that provides a summary of the memory configuration, section allocation, addresses of external symbols after they have been relocated, and more. This is the file where you can check the size of code and data sections in your program and where the sections and symbols are allocated in memory. To understand the different sections generated by the compiler (.text, .bss, .const etc) and differentiate between which ones are code and which ones are data, please see the
for the target processor you are working with.
A common misconception is that the size of the executable (.out) generated by a CCS build is an indication of the size of the program being loaded to the target. This is not true as the executable contains symbolic debug information that is not actually loaded to the target. To determine the actual size of code and data in the program, it is best to look at the link map file.
CCSv5 and CCSv6 projects generate a link map file by default in the active build configuration directory (\Debug by default).
To change the name or location of the link map file, go to Project Properties-&Build-&Linker-&Basic Options, and change the --map_file option.
For more details on the linker map file, please see the "Linker" chapter in the .
NEW IN CCSv6: Starting with CCSv6, there is a view called Memory Allocation view which you can also use to see a visual representation of how much memory is consumed by your application. Please see the quick video below.
The executable file (.out) that is output from the build process is the file that can be loaded and executed on a target device. It can be directly loaded and debugged using CCS or can be converted to a different format, such as a hex format and programmed to the target using a hex programmer.
CCSv5 projects generate the executable file by default in the active build configuration directory (\Debug by default).
To change the name or location of the executable file, go to Project Properties-&Build-&Linker-&Basic Options, and change the --output_file option.
The format of the executable is either COFF or ELF. A brief history of the two formats is in this page:
As of CCS 5.3, new projects default to ELF format for C66x, MSP430 and ARM (Cortex and ARM9)devices. C2000 and C5500 default to COFF. There is currently no ELF support for C2000 and C5500.
To check whether your project is set to create a ELF or COFF executable, right-click on the project and go to Properties-&General-&Advanced Settings. The Output format field will show the format. For devices that support both ELF and COFF it is possible to change the "Output format" setting if you wish. Keep in mind though that all object files and libraries being linked together should be of the same format. So if you are working with ELF you need to ensure that any libraries that you are linking into the project are also in ELF format. If not there will be an error at link time and an executable will not be created.
You may hear the terms ELF and EABI used interchangeably. While ELF is the file format, EABI (which stands for Embedded Application Binary Interface) is the set of rules followed by the compiler to create a cohesive executable.
These references elaborate more on EABI and migration details for moving from COFF to EABI:
The runtime support is a ANSI C/C++ standard library that takes care of system startup, provides support functions for things like string handling, input/output processing, and memory allocation among other things. Since these things are handled by the runtime support library, CCS projects should link in this library.
The compiler toolset comes with a set of prebuilt runtime support libraries. Since the library can be built with an explicit set of options (to denote device, endianness, abi mode etc) that can lead to a large number of combinations, hence we only include the more commonly-used libraries in the compiler release. You can take a look in the compiler release's \lib directory to see which libraries are pre-built for that particular release.
During CCS project build, if the linker requires a library that is not provided by default, it will automatically build the library as part of the project build, and place it in the \lib directory within the compiler tools installation. The library will then become available for subsequent compilations without requiring another rebuild.
Note that this library build step will cause a one-time delay when it is built for the first time. Build times of 1-5 minutes have been observed. This will depend on the power of the host (number of CPUs, etc).
The runtime library can also be built manually outside of CCS using the executable mklib, which is included with the compiler tools (starting with CCS 5.1). For more details on mklib, see the
wiki page.
When you create a new project in CCSv5, the appropriate runtime library for your device/settings will be automatically chosen. You can check this by right-clicking on the project and going to Properties-&CCS General-&Advanced Settings and verify that the Runtime support library field is set to &automatic&. It is best to leave this setting to &automatic& and let the linker choose the library that best matches your project options. If you still want to set it to use a specific runtime library, you may do so by selecting the appropriate one from the drop-down list in the Runtime support library field.温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!&&|&&
LOFTER精选
网易考拉推荐
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
阅读(1872)|
用微信&&“扫一扫”
将文章分享到朋友圈。
用易信&&“扫一扫”
将文章分享到朋友圈。
历史上的今天
loftPermalink:'',
id:'fks_086070',
blogTitle:'ccs使用错误的解决方法1',
blogAbstract:'收藏到口袋初学DSP软件CCS使用错误纠正\r\n我只作FPGA,已经忘却C的编写了,却发现别人,例如某博士DSP也很熟,编译码也很熟,所以我跟着身边的小滕同学学了怎么用DSP,初始的时候的错误最值得记录了,因为啥都不懂嘛。\r\n1)#error NO CHIP DEFINED 错误\r\nfatal error: #error NO CHIP DEFINED\r\n详细的出错信息:\r\n\"....\" -g -q -fr\"e:/proj',
blogTag:'',
blogUrl:'blog/static/',
isPublished:1,
istop:false,
modifyTime:0,
publishTime:5,
permalink:'blog/static/',
commentCount:0,
mainCommentCount:0,
recommendCount:0,
bsrk:-100,
publisherId:0,
recomBlogHome:false,
currentRecomBlog:false,
attachmentsFileIds:[],
groupInfo:{},
friendstatus:'none',
followstatus:'unFollow',
pubSucc:'',
visitorProvince:'',
visitorCity:'',
visitorNewUser:false,
postAddInfo:{},
mset:'000',
remindgoodnightblog:false,
isBlackVisitor:false,
isShowYodaoAd:false,
hostIntro:'',
hmcon:'0',
selfRecomBlogCount:'0',
lofter_single:''
{list a as x}
{if x.moveFrom=='wap'}
{elseif x.moveFrom=='iphone'}
{elseif x.moveFrom=='android'}
{elseif x.moveFrom=='mobile'}
${a.selfIntro|escape}{if great260}${suplement}{/if}
{list a as x}
推荐过这篇日志的人:
{list a as x}
{if !!b&&b.length>0}
他们还推荐了:
{list b as y}
转载记录:
{list d as x}
{list a as x}
{list a as x}
{list a as x}
{list a as x}
{if x_index>4}{break}{/if}
${fn2(x.publishTime,'yyyy-MM-dd HH:mm:ss')}
{list a as x}
{if !!(blogDetail.preBlogPermalink)}
{if !!(blogDetail.nextBlogPermalink)}
{list a as x}
{if defined('newslist')&&newslist.length>0}
{list newslist as x}
{if x_index>7}{break}{/if}
{list a as x}
{var first_option =}
{list x.voteDetailList as voteToOption}
{if voteToOption==1}
{if first_option==false},{/if}&&“${b[voteToOption_index]}”&&
{if (x.role!="-1") },“我是${c[x.role]}”&&{/if}
&&&&&&&&${fn1(x.voteTime)}
{if x.userName==''}{/if}
网易公司版权所有&&
{list x.l as y}
{if defined('wl')}
{list wl as x}{/list}请教:ccs5.4 编译DSPf2812 始终不能下载的问题~ - huawei19的日志 - 电子工程世界-论坛
请完成以下验证码
请教:ccs5.4 编译DSPf2812 始终不能下载的问题~
已有 9183 次阅读 21:38
|个人分类:
我是DSP菜鸟,这几天学习DSP时吧编译环境从CCS3.3变成CCS5.4,同样的例程代码,同样的操作,有的代码可以下载通过并运行成功。有的就是不能下载,这几个目前遇到的是dsp 2812内部ADC,SPI等,像定时器,中断,按键,之类的正常下载,编译时有警告,界面是这样,请高手帮助下,问了很多人,就是解决不了。。中国源创立的开发板,三兄弟的XDS100V2仿真器。。警告:Description Resource Path Location TypeBuild variable 'XDAIS_CG_ROOT' cannot be resolved.
SPILED properties ProblemsDescription Resource Path Location TypeInvalid project path: Include path not found (\packages\ti\xdais). SPILED pathentry Path Entry Problem还有这样的界面:**** Build of configuration Debug for project SPILED ****"C:\\ti\\ccsv5\\utils\\bin\\gmake" -k all&'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Adc.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Adc.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Adc.c""C:\Users\LHW\AppData\Local\Temp\0573610", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Adc.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0573610", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Adc.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Adc.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_CpuTimers.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_CpuTimers.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_CpuTimers.c""C:\Users\LHW\AppData\Local\Temp\0376010", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_CpuTimers.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0376010", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_CpuTimers.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_CpuTimers.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_DefaultIsr.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_DefaultIsr.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_DefaultIsr.c""C:\Users\LHW\AppData\Local\Temp\0444810", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_DefaultIsr.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0444810", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_DefaultIsr.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_DefaultIsr.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_ECan.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_ECan.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_ECan.c""C:\Users\LHW\AppData\Local\Temp\0063210", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_ECan.obj"&& Compilation failure& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0063210", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_ECan.objgmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_ECan.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Ev.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Ev.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Ev.c""C:\Users\LHW\AppData\Local\Temp\0446810", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Ev.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0446810", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Ev.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Ev.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_GlobalVariableDefs.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_GlobalVariableDefs.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_GlobalVariableDefs.c""C:\Users\LHW\AppData\Local\Temp\0118010", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_GlobalVariableDefs.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0118010", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_GlobalVariableDefs.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_GlobalVariableDefs.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Gpio.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Gpio.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Gpio.c""C:\Users\LHW\AppData\Local\Temp\0451210", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Gpio.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0451210", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Gpio.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Gpio.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_InitPeripherals.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_InitPeripherals.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_InitPeripherals.c""C:\Users\LHW\AppData\Local\Temp\0458010", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_InitPeripherals.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0458010", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_InitPeripherals.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_InitPeripherals.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Mcbsp.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Mcbsp.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Mcbsp.c""C:\Users\LHW\AppData\Local\Temp\0329210", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Mcbsp.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0329210", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :&& Compilation failure& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Mcbsp.objgmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Mcbsp.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_PieCtrl.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_PieCtrl.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_PieCtrl.c""C:\Users\LHW\AppData\Local\Temp\0352010", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_PieCtrl.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0352010", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_PieCtrl.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_PieCtrl.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_PieVect.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_PieVect.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_PieVect.c""C:\Users\LHW\AppData\Local\Temp\0415610", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_PieVect.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0415610", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :&& Compilation failure& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_PieVect.objgmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_PieVect.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Sci.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Sci.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Sci.c""C:\Users\LHW\AppData\Local\Temp\0215210", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Sci.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0215210", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Sci.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Sci.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Spi.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Spi.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Spi.c""C:\Users\LHW\AppData\Local\Temp\0588810", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Spi.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0588810", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Spi.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Spi.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_SysCtrl.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_SysCtrl.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_SysCtrl.c""C:\Users\LHW\AppData\Local\Temp\0434010", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_SysCtrl.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0434010", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_SysCtrl.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_SysCtrl.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_XIntrupt.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_XIntrupt.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_XIntrupt.c""C:\Users\LHW\AppData\Local\Temp\0441210", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_XIntrupt.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0441210", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_XIntrupt.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_XIntrupt.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Xintf.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="DSP28_Xintf.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/DSP28_Xintf.c""C:\Users\LHW\AppData\Local\Temp\0429610", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Xintf.obj"& & & & & &for writing"C:\Users\LHW\AppData\Local\Temp\0429610", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Xintf.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/DSP28_Xintf.obj] Error 1'Building file: D:/WorkSpace/DSP_2812/SourceCode04_SPILED/SPILED.c''Invoking: C2000 Compiler'"C:/ti/ccsv5/tools/compiler/c.3/bin/cl2000" -v28 -ml -g --include_path="C:/ti/ccsv5/tools/compiler/c.3/include" --include_path="C:/tidcs/c28/DSP281x/v120/DSP281x_headers/include" --include_path="/packages/ti/xdais" --define="_DEBUG" --define="LARGE_MODEL" --quiet --display_error_number --diag_wrap=off --obj_directory="J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug" --preproc_with_compile --preproc_dependency="SPILED.pp" &"D:/WorkSpace/DSP_2812/SourceCode04_SPILED/SPILED.c""D:/WorkSpace/DSP_2812/SourceCode04_SPILED/SPILED.c", line 25: warning #225-D: function declared implicitly"C:\Users\LHW\AppData\Local\Temp\0160010", ERROR! & at EOF: [E1500]& & & & &file access error: &failed to open& & & & & &"J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/SPILED.obj" for& & & & & &writing"C:\Users\LHW\AppData\Local\Temp\0160010", ERROR! &: [E1000] Failed to write& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &object file :& & & & & & & & & & & & & & & & & & & & & & & & & & & & & & &J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/SPILED.obj&& Compilation failuregmake: *** [J:/DSP2812_PRO_SourceCode/SourceCode04_SPILED/Debug/SPILED.obj] Error 1gmake: Target `all' not remade because of errors.**** Build Finished ****请问哪位高手遇到过这样的问题,能指点小弟下,谢谢各位~~
评论 ( 个评论)
EEWORLD 官方微信
EE福利 唾手可得
Powered by

我要回帖

更多关于 add message files 的文章

 

随机推荐