mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-30 05:50:22 +08:00
update bsp/simulator, add component head path, fix atoi redefinition compile error in application.c
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2370 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
e956eedc20
commit
61bec5b560
@ -91,7 +91,12 @@ int rt_application_init()
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <stdlib.h>
|
#ifndef _CRT_TERMINATE_DEFINED
|
||||||
|
#define _CRT_TERMINATE_DEFINED
|
||||||
|
_CRTIMP __declspec(noreturn) void __cdecl exit(__in int _Code);
|
||||||
|
_CRTIMP __declspec(noreturn) void __cdecl _exit(__in int _Code);
|
||||||
|
_CRTIMP void __cdecl abort(void);
|
||||||
|
#endif
|
||||||
void rt_hw_exit(void)
|
void rt_hw_exit(void)
|
||||||
{
|
{
|
||||||
rt_kprintf("RT-Thread, bye\n");
|
rt_kprintf("RT-Thread, bye\n");
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories=".\;..\..\include;..\..\bsp\vs2008;..\..\components\finsh;..\..\components\dfs\include;..\..\components\dfs\filesystems\uffs\src\inc\;..\..\components\dfs\filesystems\uffs;..\..\components\drivers\include;..\..\components\dfs\filesystems\jffs2\src;..\..\components\dfs\filesystems\jffs2\kernel;..\..\components\dfs\filesystems\jffs2\include;..\..\components\dfs\filesystems\jffs2\;..\..\components\dfs\filesystems\jffs2\cyg\compress"
|
AdditionalIncludeDirectories=".\;..\..\include;..\..\bsp\vs2008;..\..\components\finsh;..\..\components\dfs\include;..\..\components\dfs\filesystems\uffs\src\inc\;..\..\components\dfs\filesystems\uffs;..\..\components\drivers\include;..\..\components\dfs\filesystems\jffs2\src;..\..\components\dfs\filesystems\jffs2\kernel;..\..\components\dfs\filesystems\jffs2\include;..\..\components\dfs\filesystems\jffs2\;..\..\components\dfs\filesystems\jffs2\cyg\compress;..\..\components\init"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;MSVC;_TIME_T_DEFINED"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;MSVC;_TIME_T_DEFINED"
|
||||||
MinimalRebuild="true"
|
MinimalRebuild="true"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user