Skip to content

Commit

Permalink
[skip ci] internal umfpack workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
juhanikataja committed Sep 18, 2024
1 parent e4adc2a commit 778d9a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions umfpack/src/amd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ FOREACH(outfileName ${UMFPACK_AMD_CPP_SOURCES})
OUTPUT ${outfileName}
COMMAND ${CMAKE_C_COMPILER}
ARGS ${UMFPACK_AMD_INCLUDES} ${flags} ${CMAKE_CURRENT_SOURCE_DIR}/${infileName} > ${outfileName}
COMMAND sed # cray workaround
ARGS -i 's/__fsid_t/__fsid_t_/g' ${outfileName} # cray workaround
DEPENDS ${infileName}
)

Expand Down
2 changes: 2 additions & 0 deletions umfpack/src/umfpack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,8 @@ FOREACH(outfileName ${UMFPACK_CPP_SOURCES})
OUTPUT ${outfileName}
COMMAND ${CMAKE_C_COMPILER}
ARGS ${UMFPACK_INCLUDES} ${flags} ${CMAKE_CURRENT_SOURCE_DIR}/${infileName} > ${outfileName}
COMMAND sed # cray workaround
ARGS -i 's/__fsid_t/__fsid_t_/g' ${outfileName} # cray workaround
DEPENDS ${infileName}
)

Expand Down

0 comments on commit 778d9a3

Please sign in to comment.