-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb15e44
commit 94cbad9
Showing
4 changed files
with
5 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER clang) | ||
set(CMAKE_CXX_COMPILER clang++) | ||
set(CMAKE_STATIC_LIBRARY_PREFIX "") | ||
set(CMAKE_C_FLAGS "-march=armv8-a") | ||
set(CMAKE_CXX_FLAGS "-march=armv8-a") |
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,6 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER i686-w64-mingw32-gcc-win32) | ||
set(CMAKE_CXX_COMPILER i686-w64-mingw32-g++-win32) | ||
set(CMAKE_STATIC_LIBRARY_PREFIX "") | ||
set(CMAKE_C_FLAGS "-m32 -march=i386") | ||
set(CMAKE_CXX_FLAGS "-m32 -march=i386") |
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,6 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc-win32) | ||
set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++-win32) | ||
set(CMAKE_STATIC_LIBRARY_PREFIX "") | ||
set(CMAKE_C_FLAGS "-m64") | ||
set(CMAKE_CXX_FLAGS "-m64") |