You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
467 B
11 lines
467 B
|
7 months ago
|
set(CMAKE_SYSTEM_NAME Linux)
|
||
|
|
set(CMAKE_SYSTEM_PROCESSOR aarch64)
|
||
|
|
set(CMAKE_C_COMPILER aarch64-none-linux-gnu-gcc)
|
||
|
|
set(CMAKE_CXX_COMPILER aarch64-none-linux-gnu-g++)
|
||
|
|
# 필요 시 sysroot가 있다면 아래 주석을 해제하고 경로 지정
|
||
|
|
# set(CMAKE_SYSROOT /path/to/sysroot)
|
||
|
|
# set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT})
|
||
|
|
# set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||
|
|
# set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||
|
|
# set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|