mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
Prevent linking to MSVCRT in case some CRT function isn't found.
svn path=/trunk/; revision=13394
This commit is contained in:
parent
8b7ac2780a
commit
56b11588c4
1 changed files with 4 additions and 3 deletions
|
@ -10,8 +10,6 @@ TARGET_TYPE = kernel
|
||||||
|
|
||||||
TARGET_NAME = ntoskrnl
|
TARGET_NAME = ntoskrnl
|
||||||
|
|
||||||
TARGET_BASE = 0xc0000000
|
|
||||||
|
|
||||||
TARGET_BOOTSTRAP = yes
|
TARGET_BOOTSTRAP = yes
|
||||||
|
|
||||||
CONFIG :=
|
CONFIG :=
|
||||||
|
@ -526,7 +524,10 @@ TARGET_LFLAGS = \
|
||||||
-Wl,--image-base,$(TARGET_BASE) \
|
-Wl,--image-base,$(TARGET_BASE) \
|
||||||
-Wl,--file-alignment,0x1000 \
|
-Wl,--file-alignment,0x1000 \
|
||||||
-Wl,--section-alignment,0x1000 \
|
-Wl,--section-alignment,0x1000 \
|
||||||
-Wl,--entry,_NtProcessStartup
|
-Wl,--entry,_NtProcessStartup \
|
||||||
|
-nostdlib
|
||||||
|
|
||||||
|
TARGET_GCCLIBS = gcc
|
||||||
|
|
||||||
TAGS: $(TAG_OBJECTS)
|
TAGS: $(TAG_OBJECTS)
|
||||||
etags $(addprefix -i , $(TAG_OBJECTS))
|
etags $(addprefix -i , $(TAG_OBJECTS))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue