app module of simlator: rename librtthread.a to rtthread.lib after post-building

This commit is contained in:
prife 2013-02-27 02:04:43 +08:00
parent 5923b4abc8
commit a07b4a4396
1 changed files with 3 additions and 0 deletions

View File

@ -134,6 +134,9 @@ if GetDepend('RT_USING_MODULE'):
elif res == 'yes':
if rtconfig.PLATFORM == 'cl':
objs += ['rtthread.def']
elif rtconfig.PLATFORM == 'mingw':
rtconfig.POST_ACTION = 'del /Q rtthread.lib \n rename librtthread.a rtthread.lib\n'
# rtconfig.POST_ACTION = 'lib /machine:i386 /def:rtthread.def /out:rtthread.lib'
env.SharedLibrary("rtthread.dll", objs)
program = env.Program(TARGET, 'dummy.c', LIBS='rtthread', LIBPATH='.')
else: