Prevent linking to MSVCRT in case some CRT function isn't found. Modified: trunk/reactos/ntoskrnl/Makefile _____
Modified: trunk/reactos/ntoskrnl/Makefile --- trunk/reactos/ntoskrnl/Makefile 2005-02-03 15:43:51 UTC (rev 13393) +++ trunk/reactos/ntoskrnl/Makefile 2005-02-03 19:08:54 UTC (rev 13394) @@ -10,8 +10,6 @@
TARGET_NAME = ntoskrnl
-TARGET_BASE = 0xc0000000 - TARGET_BOOTSTRAP = yes
CONFIG := @@ -526,8 +524,11 @@ -Wl,--image-base,$(TARGET_BASE) \ -Wl,--file-alignment,0x1000 \ -Wl,--section-alignment,0x1000 \ - -Wl,--entry,_NtProcessStartup + -Wl,--entry,_NtProcessStartup \ + -nostdlib
+TARGET_GCCLIBS = gcc + TAGS: $(TAG_OBJECTS) etags $(addprefix -i , $(TAG_OBJECTS))