Skip to content

Commit

Permalink
Fix Eigen include on Linux.
Browse files Browse the repository at this point in the history
Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Sep 13, 2024
1 parent 685d911 commit 56ac462
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Sources/Eigen/include/Eigen/AccelerateSupport
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,10 @@
* \endcode
*/

#if defined(__APPLE__)
// IWYU pragma: begin_exports
#include "src/AccelerateSupport/AccelerateSupport.h"
# include "src/AccelerateSupport/AccelerateSupport.h"
#endif // defined(__APPLE__)
// IWYU pragma: end_exports

#include "src/Core/util/ReenableStupidWarnings.h"
Expand Down
3 changes: 3 additions & 0 deletions Sources/MetaversalDemo/Creator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ class Creator
PyBundler.shared.pyInit()
PyBundler.shared.pyInfo()
#endif // canImport(Python)
print("app launched.")

C = Creator()

Expand Down Expand Up @@ -253,6 +254,8 @@ class Creator

window = .init()

print("app launched succesfully.")

return true
}

Expand Down

0 comments on commit 56ac462

Please sign in to comment.