You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue was that CMake was passing -D chemistry=False (string) to Fypp,
but Fypp interprets the string "False" as truthy (non-empty string).
This caused Fypp to generate code that tried to use m_thermochem even when
MFC_CHEMISTRY=OFF, leading to compilation errors.
Solution: Pass 0/1 instead of False/True to Fypp, which correctly interprets
as boolean false/true.
Also explicitly import join_path in package.py for clarity.
0 commit comments