Skip to content

Commit

Permalink
elfloader: remove attic compiler parameter
Browse files Browse the repository at this point in the history
With gcc 3.4, "-W" has become "-Wextra".

Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
axel-h committed May 30, 2024
1 parent 6789652 commit a4df039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elfloader-tool/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ config_option(

add_config_library(elfloader "${configure_string}")

add_compile_options(-D_XOPEN_SOURCE=700 -ffreestanding -Wall -Werror -W -Wextra)
add_compile_options(-D_XOPEN_SOURCE=700 -ffreestanding -Wall -Werror -Wextra)
set(linkerScript "${CMAKE_CURRENT_LIST_DIR}/src/arch-${KernelArch}/linker.lds")
if(KernelArchRiscV)
add_compile_options(-mcmodel=medany)
Expand Down

0 comments on commit a4df039

Please sign in to comment.