diff options
author | Patrick Roth <roth@stettbacher.ch> | 2019-10-04 10:41:17 +0200 |
---|---|---|
committer | Patrick Roth <roth@stettbacher.ch> | 2019-10-04 10:41:17 +0200 |
commit | 4b327f9787f0b2003862c679b52e55ffd1594b27 (patch) | |
tree | e07b0021566e24292dd89054b9cf2daaa8fa42bc /cmake | |
parent | Initial commit (diff) | |
download | o3000-driver-4b327f9787f0b2003862c679b52e55ffd1594b27.tar.gz o3000-driver-4b327f9787f0b2003862c679b52e55ffd1594b27.zip |
Compile instructions added
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/toolchain_file_template.cmake | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cmake/toolchain_file_template.cmake b/cmake/toolchain_file_template.cmake new file mode 100644 index 0000000..7e781e5 --- /dev/null +++ b/cmake/toolchain_file_template.cmake @@ -0,0 +1,17 @@ +# this one is important +SET(CMAKE_SYSTEM_NAME Linux) +#this one not so much +SET(CMAKE_SYSTEM_VERSION 1) + +# specify the cross compiler +SET(CMAKE_C_COMPILER /opt/eldk-2007-01-19/usr/bin/ppc_74xx-gcc) +SET(CMAKE_CXX_COMPILER /opt/eldk-2007-01-19/usr/bin/ppc_74xx-g++) + +# where is the target environment +SET(CMAKE_FIND_ROOT_PATH /opt/eldk-2007-01-19/ppc_74xx /home/alex/eldk-ppc74xx-inst) + +# search for programs in the build host directories +SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) +# for libraries and headers in the target directories +SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) |