this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

libc/gdtoa now included in build, correct strtold variant used

+5 -4
+2 -1
libc/CMakeLists.txt
··· 38 38 add_subdirectory(db) # produces libc-db 39 39 add_subdirectory(compat-43) # produces libc-compat 40 40 add_subdirectory(emulated) # produces libc-emulated 41 - #add_subdirectory(gdtoa) # produces libc-gdtoa 41 + add_subdirectory(gdtoa) # produces libc-gdtoa 42 42 add_subdirectory(gen) 43 43 add_subdirectory(gmon) 44 44 add_subdirectory(uuid) ··· 72 72 $<TARGET_OBJECTS:libc-compat> 73 73 $<TARGET_OBJECTS:libc-compat_cancelable> 74 74 $<TARGET_OBJECTS:libc-emulated> 75 + $<TARGET_OBJECTS:libc-gdtoa> 75 76 $<TARGET_OBJECTS:libc-gen> 76 77 $<TARGET_OBJECTS:libc-gen_cancelable> 77 78 $<TARGET_OBJECTS:libc-gmon>
+3 -3
libc/gdtoa/CMakeLists.txt
··· 29 29 FreeBSD/glue.c 30 30 FreeBSD/_hdtoa.c 31 31 FreeBSD/_ldtoa.c 32 - FreeBSD/machdep_ldisd.c 33 - FreeBSD/machdep_ldisdd.c 34 - FreeBSD/machdep_ldisQ.c 32 + #FreeBSD/machdep_ldisd.c # these are not for x86 33 + #FreeBSD/machdep_ldisdd.c 34 + #FreeBSD/machdep_ldisQ.c 35 35 FreeBSD/machdep_ldisx.c) 36 36 37 37 add_library(libc-gdtoa OBJECT ${gdtoa_sources})