-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support multi-arch compilation on OSX with CMAKE_OSX_ARCHITECTURES
- Loading branch information
Showing
9 changed files
with
69 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
#define FASTSIMD_MAX_FEATURE_SET ${feature_set} | ||
#include <FastSIMD/Utility/ArchDetect.h> | ||
|
||
#if ${feature_arch_detect} | ||
#include <FastSIMD/${simd_library_name}_config.h> | ||
|
||
#include "${FastSIMD_SOURCE_DIR}/dispatch/impl/DispatchClassImpl.h" | ||
#include "${simd_inl_full}" | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
fastsimd_create_dispatch_library(example_simd SOURCES "example.inl") | ||
fastsimd_create_dispatch_library(simd_example_dispatch_library SOURCES "example.inl") | ||
|
||
add_executable(example_dispatch_library "main.cpp") | ||
target_link_libraries(example_dispatch_library PRIVATE FastSIMD example_simd) | ||
target_link_libraries(example_dispatch_library PRIVATE FastSIMD simd_example_dispatch_library) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters