mirror of
https://github.com/reactos/reactos.git
synced 2025-03-30 17:10:22 +00:00
[CMAKE] Disable INIT section ld scripts for now. CORE-16183 ROSBE-154
This commit is contained in:
parent
818d660868
commit
36e9a6f8dd
2 changed files with 4 additions and 2 deletions
|
@ -38,7 +38,8 @@ else()
|
|||
else()
|
||||
set_image_base(ntoskrnl 0x80800000)
|
||||
endif()
|
||||
add_linker_script(ntoskrnl ${REACTOS_SOURCE_DIR}/sdk/cmake/init-section.lds)
|
||||
#Disabled due to LD bug: ROSBE-154
|
||||
#add_linker_script(ntoskrnl ${REACTOS_SOURCE_DIR}/sdk/cmake/init-section.lds)
|
||||
endif()
|
||||
|
||||
target_link_libraries(ntoskrnl cportlib csq ${PSEH_LIB} cmlib ntlsalib rtl ${ROSSYM_LIB} libcntpr wdmguid ioevent)
|
||||
|
|
|
@ -318,7 +318,8 @@ function(set_module_type_toolchain MODULE TYPE)
|
|||
if(${TYPE} STREQUAL "wdmdriver")
|
||||
add_target_link_flags(${MODULE} "-Wl,--wdmdriver")
|
||||
endif()
|
||||
add_linker_script(${MODULE} ${REACTOS_SOURCE_DIR}/sdk/cmake/init-section.lds)
|
||||
#Disabled due to LD bug: ROSBE-154
|
||||
#add_linker_script(${MODULE} ${REACTOS_SOURCE_DIR}/sdk/cmake/init-section.lds)
|
||||
endif()
|
||||
|
||||
if(STACK_PROTECTOR)
|
||||
|
|
Loading…
Reference in a new issue