forked from LostRuins/koboldcpp
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/concedo'
- Loading branch information
Showing
169 changed files
with
2,638,808 additions
and
178,490 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
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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
set( CMAKE_SYSTEM_NAME Darwin ) | ||
set( CMAKE_SYSTEM_PROCESSOR arm64 ) | ||
|
||
set( target arm64-apple-darwin-macho ) | ||
|
||
set( CMAKE_C_COMPILER clang ) | ||
set( CMAKE_CXX_COMPILER clang++ ) | ||
|
||
set( CMAKE_C_COMPILER_TARGET ${target} ) | ||
set( CMAKE_CXX_COMPILER_TARGET ${target} ) | ||
|
||
set( arch_c_flags "-march=armv8.4-a -fvectorize -ffp-model=fast -fno-finite-math-only" ) | ||
set( warn_c_flags "-Wno-format -Wno-unused-variable -Wno-unused-function" ) | ||
|
||
set( CMAKE_C_FLAGS_INIT "${arch_c_flags} ${warn_c_flags}" ) | ||
set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags} ${warn_c_flags}" ) |
Oops, something went wrong.