diff options
author | Timon Kruiper <timonkruiper@gmail.com> | 2022-05-14 13:53:53 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-21 20:23:32 +0100 |
commit | 5fc66c6072ddd047ec0906098de770dbc48b2f7e (patch) | |
tree | adbce9b5da5e275e3bf14698f7dcb14b69c05bd3 /Kernel | |
parent | 9f3303c869ea9327defc1297b654ee0ee8bb062a (diff) | |
download | serenity-5fc66c6072ddd047ec0906098de770dbc48b2f7e.zip |
Kernel: Fix capitalization of MiniStdLib.cpp in CMakeLists.txt
Commit fd3e3d5e28f729c05427d1c3cfe95e1ae3f62e39 added this, however
misspelled MiniStdLib.cpp. CMake wasn't complaining about this, but the
flags were also not applied to the file.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index cbefd82de2..56821c98c9 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -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) |