Skip to content

Commit fb36d6c

Browse files
mostafa-salmaankeith-packard
authored andcommitted
stdlib: Add ignore_handler_s.c to CMakeLists.txt and meson.build
The file `ignore_handler_s.c` was not included in the `stdlib` CMakeLists.txt and meson.build, causing it to be omitted from the build. This commit adds it to both build systems to ensure it is compiled and linked correctly. Signed-off-by: Mostafa Salman <mostafas@synopsys.com>
1 parent d44fa19 commit fb36d6c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

newlib/libc/stdlib/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ picolibc_sources(
117117
pico-onexit.c
118118
pico-cxa-atexit.c
119119
set_constraint_handler_s.c
120+
ignore_handler_s.c
120121
)
121122

122123
picolibc_sources_flags("-fno-builtin-malloc;-fno-builtin-free"

newlib/libc/stdlib/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ srcs_stdlib = [
163163
'wctomb.c',
164164
'wctomb_r.c',
165165
'set_constraint_handler_s.c',
166+
'ignore_handler_s.c',
166167
]
167168

168169
srcs_stdlib_stdio = [

0 commit comments

Comments
 (0)