-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
1 changed file
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# | ||
# CMake defines to cross-compile to ARM/Linux on BCM2708 using glibc. | ||
# | ||
|
||
SET(CMAKE_SYSTEM_NAME Linux) | ||
SET(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc) | ||
SET(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++) | ||
SET(CMAKE_ASM_COMPILER arm-linux-gnueabihf-gcc) | ||
SET(CMAKE_SYSTEM_PROCESSOR arm) | ||
|
||
#ADD_DEFINITIONS("-march=armv6") | ||
add_definitions("-mcpu=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard -marm") | ||
|
||
# rdynamic means the backtrace should work | ||
IF (CMAKE_BUILD_TYPE MATCHES "Debug") | ||
add_definitions(-rdynamic) | ||
ENDIF () | ||
|
||
# avoids annoying and pointless warnings from gcc | ||
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -U_FORTIFY_SOURCE") | ||
SET(CMAKE_ASM_FLAGS "${CMAKE_ASM_FLAGS} -c") |