Prevent linking to MSVCRT in case some CRT function isn't found.

svn path=/trunk/; revision=13394
This commit is contained in:
Filip Navara 2005-02-03 19:08:54 +00:00
parent 8b7ac2780a
commit 56b11588c4

View file

@ -10,8 +10,6 @@ TARGET_TYPE = kernel
TARGET_NAME = ntoskrnl
TARGET_BASE = 0xc0000000
TARGET_BOOTSTRAP = yes
CONFIG :=
@ -526,7 +524,10 @@ TARGET_LFLAGS = \
-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))