From 12eb8a290f53a2fb15a5df41c2734ce6cc0e76eb Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 31 Jan 2011 23:29:03 +0000 Subject: [PATCH] [CMAKE] add ftol2_asm.s to crt and ci.c to msvcsup svn path=/branches/cmake-bringup/; revision=50584 --- lib/sdk/crt/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/sdk/crt/CMakeLists.txt b/lib/sdk/crt/CMakeLists.txt index 93850903370..8c65c6762d6 100644 --- a/lib/sdk/crt/CMakeLists.txt +++ b/lib/sdk/crt/CMakeLists.txt @@ -346,6 +346,7 @@ if(ARCH MATCHES i386) math/i386/floor_asm.s math/i386/floorf.S math/i386/ftol_asm.s + math/i386/ftol2_asm.s math/i386/log_asm.s math/i386/log10_asm.s math/i386/pow_asm.s @@ -620,10 +621,11 @@ if(MSVC) list(APPEND MSVCSUP_SOURCE misc/fltused.c except/i386/chkstk_asm.s + math/i386/ci.c math/i386/ftol2_asm.S) add_library(msvcsup ${MSVCSUP_SOURCE}) add_dependencies(msvcsup psdk buildno_header asm) endif() -add_subdirectory(printf) \ No newline at end of file +add_subdirectory(printf)