-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overhaul CMake build rules for AMD and UMFPACK. #587
base: devel
Are you sure you want to change the base?
Conversation
The build error on the macOS runners doesn't look related to the changes from this PR. Homebrew updated their HDF5 package recently: Homebrew/homebrew-core@961f7dc And it looks like ElmerFEM is not the only "victim" of that change: Homebrew/homebrew-core#170959 (comment) Let's hope they'll find a proper solution for this issue. |
All CI runners have passed in the last run. Is it ok to merge this? |
@juhanikataja: Does this change fix the issue you were seeing when building the bundled UMFPACK with a Cray compiler? |
Avoid manually preprocessing the source files. Some compiler flags can easily be missed which can lead to compilation issues with the preprocessed sources (see ElmerCSC#578). Instead, use object libraries to build the same source files with different flags. Potentially fixes the build issues described in ElmerCSC#578.
Avoid manually preprocessing the source files. Some compiler flags can easily be missed which can lead to compilation issues with the preprocessed sources.
Instead, use object libraries to build the same source files with different flags.
Potentially fixes the build issues described in #578.