aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/toolchain_file_template.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/toolchain_file_template.cmake')
-rw-r--r--cmake/toolchain_file_template.cmake17
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)