-
-
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
18a5264
commit 51911fd
Showing
10 changed files
with
41 additions
and
33 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_C_COMPILER aarch64-linux-gnu-gcc) | ||
set(CMAKE_CXX_COMPILER aarch64-linux-gnu-g++) | ||
set(CMAKE_C_FLAGS "-m64 -march=armv8-a") | ||
set(CMAKE_CXX_FLAGS "-m64 -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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_C_COMPILER arm-linux-gnueabi-gcc) | ||
set(CMAKE_CXX_COMPILER arm-linux-gnueabi-g++) | ||
set(CMAKE_C_FLAGS "-m32 -march=armv7-a") | ||
set(CMAKE_CXX_FLAGS "-m32 -march=armv7-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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_C_COMPILER i686-linux-gnu-gcc) | ||
set(CMAKE_CXX_COMPILER i686-linux-gnu-g++) | ||
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_C_COMPILER gcc) | ||
set(CMAKE_CXX_COMPILER g++) | ||
set(CMAKE_C_FLAGS "-m64") | ||
set(CMAKE_CXX_FLAGS "-m64") |
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,4 @@ | ||
set(CMAKE_SYSTEM_NAME Darwin) | ||
set(CMAKE_C_COMPILER clang) | ||
set(CMAKE_CXX_COMPILER clang++) | ||
set(CMAKE_OSX_ARCHITECTURES "arm64") |
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,4 @@ | ||
set(CMAKE_SYSTEM_NAME Darwin) | ||
set(CMAKE_C_COMPILER clang) | ||
set(CMAKE_CXX_COMPILER clang++) | ||
set(CMAKE_OSX_ARCHITECTURES "x86_64") |
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,4 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER cl) | ||
set(CMAKE_CXX_COMPILER cl) | ||
set(CMAKE_GENERATOR_PLATFORM "ARM64") |
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,4 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER cl) | ||
set(CMAKE_CXX_COMPILER cl) | ||
set(CMAKE_GENERATOR_PLATFORM "Win32") |
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,4 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_C_COMPILER cl) | ||
set(CMAKE_CXX_COMPILER cl) | ||
set(CMAKE_GENERATOR_PLATFORM "x64") |