Skip to content

Commit 7aaa985

Browse files
chore: fix macos build
1 parent aa6c354 commit 7aaa985

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

modules/mpi/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ target_link_libraries(
4242
nlsI18n
4343
nlsInterpreter
4444
nlsSparse
45+
nlsCharacters_encoding
4546
nlsTypes
4647
${MPI_C_LIBRARIES})
4748
# ==============================================================================

modules/mpi/src/cpp/MPI_helpers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ MPIErrorHandler(MPI_Comm* comm, int* errorcode, ...)
4141
MPI_Error_string(*errorcode, buffer, &resultlen);
4242
buffer[resultlen] = 0;
4343
std::string _msg(buffer);
44-
Error(utf8_to_wstring(_msg), L"Nelson:mpi:ERROR_MPI_ERROR");
44+
Error(utf8_to_wstring(_msg), L"nelson:mpi:mpiError");
4545
}
4646
//=============================================================================
4747
int

modules/slicot/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ target_link_libraries(${module_library_builtin_name}
9999
${module_library_name}
100100
nlsError_manager
101101
nlsI18n nlsInterpreter
102+
nlsCharacters_encoding
102103
nlsTypes)
103104
# ==============================================================================
104105
include(GNUInstallDirs)

0 commit comments

Comments
 (0)