Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions wireless/bluetooth/nimble/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ if(CONFIG_NIMBLE)

target_include_directories(nimble PUBLIC include ${INCLUDES})

target_compile_options(nimble PUBLIC -Wno-pointer-to-int-cast -Wno-undef
-Wno-format -Wno-unused-but-set-variable)
target_compile_options(nimble PUBLIC -Wno-undef -Wno-format
-Wno-unused-but-set-variable)

target_sources(nimble PRIVATE ${SRCS})
endif()
2 changes: 1 addition & 1 deletion wireless/bluetooth/nimble/Makefile.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ CXXFLAGS += $(addprefix ${INCDIR_PREFIX}, $(NIMBLE_ALL_INC))

# NimBLE assumes this flag since it expects undefined macros to be zero value

CFLAGS += -Wno-pointer-to-int-cast -Wno-undef
CFLAGS += -Wno-undef

# disable printf format checks

Expand Down
Loading