Kernel: Fix capitalization of MiniStdLib.cpp in CMakeLists.txt

Commit fd3e3d5e28 added this, however
misspelled MiniStdLib.cpp. CMake wasn't complaining about this, but the
flags were also not applied to the file.
This commit is contained in:
Timon Kruiper 2022-05-14 13:53:53 +02:00 committed by Linus Groh
commit 5fc66c6072
Notes: sideshowbarker 2024-07-17 10:44:32 +09:00

View file

@ -487,7 +487,7 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# Prevent naively implemented string functions (like strlen) from being "optimized" into a call to themselves.
set_source_files_properties(MiniStdlib.cpp
set_source_files_properties(MiniStdLib.cpp
PROPERTIES COMPILE_FLAGS "-fno-tree-loop-distribution -fno-tree-loop-distribute-patterns")
add_link_options(LINKER:-z,pack-relative-relocs)