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
#9 (the fix for #8) broke the build when using the 10.9 SDK and older. You now unconditionally include a copy of vecLib.h that came from the macOS 11 SDK, which is substantially different from the version of that file required for earlier OS versions, causing this build failure:
vecLib-760.100.h:48:91: error: Accelerate/../Frameworks/vecLib.framework/Headers/LinearAlgebra/LinearAlgebra.h: No such file or directory
(There is no LinearAlgebra.h in 10.9 and earlier.)
Since that macOS 11 version of vecLib.h was added exclusively to fix build failure on the macOS 12 (or later?) SDK, I suggest you only include that file when using the macOS 12 (or later?) SDK. I'll submit a PR to fix it.
The text was updated successfully, but these errors were encountered:
ryandesign
added a commit
to ryandesign/vecLibFort
that referenced
this issue
Feb 10, 2022
Only include the local macOS 11 SDK copy of vecLib.h when using the
macOS 12 SDK or later to prevent build failure when using the OS X 10.9
SDK or older.
Fixesmcg1969#14
#9 (the fix for #8) broke the build when using the 10.9 SDK and older. You now unconditionally include a copy of vecLib.h that came from the macOS 11 SDK, which is substantially different from the version of that file required for earlier OS versions, causing this build failure:
(There is no LinearAlgebra.h in 10.9 and earlier.)
Since that macOS 11 version of vecLib.h was added exclusively to fix build failure on the macOS 12 (or later?) SDK, I suggest you only include that file when using the macOS 12 (or later?) SDK. I'll submit a PR to fix it.
The text was updated successfully, but these errors were encountered: