From a07b4a43965f8d9edc57490ca5ab03d976d8d3a2 Mon Sep 17 00:00:00 2001 From: prife Date: Wed, 27 Feb 2013 02:04:43 +0800 Subject: [PATCH] app module of simlator: rename librtthread.a to rtthread.lib after post-building --- bsp/simulator/SConstruct | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/simulator/SConstruct b/bsp/simulator/SConstruct index 6f35921ba9..4514e850e4 100755 --- a/bsp/simulator/SConstruct +++ b/bsp/simulator/SConstruct @@ -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: -- GitLab