mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
10 lines
368 B
10 lines
368 B
4 years ago
|
set(CMAKE_SYSTEM_NAME "Linux")
|
||
|
set(CMAKE_C_COMPILER riscv64-unknown-linux-gnu-gcc)
|
||
|
set(CMAKE_CXX_COMPILER riscv64-unknown-linux-gnu-g++)
|
||
|
|
||
|
set(CMAKE_CXX_FLAGS "" CACHE STRING "")
|
||
|
set(CMAKE_C_FLAGS "" CACHE STRING "")
|
||
|
|
||
|
set(CMAKE_CXX_FLAGS "-static -march=rv64gcvxthead -mabi=lp64v -pthread")
|
||
|
set(CMAKE_C_FLAGS "-static -march=rv64gcvxthead -mabi=lp64v -pthread")
|