-
Notifications
You must be signed in to change notification settings - Fork 10
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
Fix CI and update build configuration on Windows #57
Conversation
@mcflugen @samharrison7 Let me know if you have any thoughts on this. |
Sounds complicated! I've never used Flang in angst, don't often build on Windows, don't use CMake much these days and am not very good with GitHub Actions, so I might not have too much of relevance to add 😆 But just a couple of thoughts:
Sorry those points probably aren't too helpful! |
@samharrison7 Thanks for thinking about this. These are both good questions. I'll try to address them.
|
Yeah the Totally understand sticking with CMake - it's more mature and stable than fpm as well. |
This PR started as an attempt to force CMake to find the conda Fortran compiler, flang-new, on Windows instead of the gfortran that's packaged with the GitHub Actions runner. Setting the
FC
environment variable worked! But the NMake build backend failed. I changed the build backend to Ninja, which is used in Meson projects, but it also failed, although with a helpful message:The module file
bmif_2_0.mod
was being created twice, once when building the shared library and again when building the static library. This issue hadn't been raised by NMake. I modified the CMake build configuration to use a CMake object library as a base to build the shared and static libraries. This made only one version ofbmif_2_0.mod
. I also matched other libraries (e.g., bz2 and bzip2) in appending_static
to the static library name.Interestingly, flang-new creates different filenames than gfortran; e.g.,
bmif.lib
instead oflibbmif.a
. I updated the tests to work for the filenames generated by flang-new.This fixes #51.