Skip to content

Commit 0c562c8

Browse files
perazzclaude
andcommitted
fix(lapack): add missing string module dependencies (#1063)
The lapack library includes stdlib_io.fypp which uses the string_type constructor. This constructor is implemented in the submodule stdlib_string_type_constructor, which in turn depends on stdlib_strings and its submodule stdlib_strings_to_string. Without these files, linking fails on some platforms (e.g., PowerPC macOS) with undefined symbol errors for __stdlib_string_type_MOD_new_string. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent caa060c commit 0c562c8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/lapack/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ set(lapack_fppFiles
77
../stdlib_io.fypp
88
../stdlib_ascii.fypp
99
../stdlib_string_type.fypp
10+
../stdlib_string_type_constructor.fypp
11+
../stdlib_strings.fypp
12+
../stdlib_strings_to_string.fypp
1013
stdlib_lapack_base.fypp
1114
stdlib_lapack_solve.fypp
1215
stdlib_lapack_others.fypp

0 commit comments

Comments
 (0)