diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-06-17 20:01:42 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-05-08 09:02:27 +0200 |
commit | 93402309e96c915b6ad979ec0daa3b501ecd85e8 (patch) | |
tree | e0a8740c612ca89c789e7138ca6200fc87ff1b2e | |
parent | e22ffe51834f916a8a4d3d466077b6dde27d4254 (diff) |
added additional CMake variableslinksys3200ac-master
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rwxr-xr-x | sdkenv.sh | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -23,7 +23,7 @@ echo "* libc......: ${LIBC}" TOOLCHAIN_DIR="$(realpath ${OWRT}/staging_dir/toolchain-${ARCH}_${CPU_TYPE}_gcc-${GCC_VER}_${LIBC}_*)" echo "* Toolchain.: ${TOOLCHAIN_DIR}" -export PATH="${TOOLCHAIN_DIR}/bin:${PATH}" +export PATH="${TOOLCHAIN_DIR}/bin:${OWRT}/staging_dir/host/bin:${OWRT}/staging_dir/host/usr/bin:${OWRT}/staging_dir/hostpkg/bin:${OWRT}/staging_dir/hostpkg/usr/bin:${PATH}" export STAGING_DIR="${OWRT}/staging_dir" TARGET_DIR="$(realpath ${STAGING_DIR}/target-${ARCH}_${CPU_TYPE}*)" echo "* Target dir: ${TARGET_DIR}" @@ -38,6 +38,23 @@ export PKG_CONFIG="${STAGING_DIR}/host/bin/pkg-config.real" export PKG_CONFIG_PATH="${TARGET_DIR}/usr/lib/pkgconfig" export PKG_CONFIG_LIBDIR="${TARGET_DIR}/usr/lib/pkgconfig" +# CMake variables +export CMAKE_C_COMPILER_AR="${HOST}-ar" +export CMAKE_C_COMPILER_RANLIB="${HOST}-ranlib" +export CMAKE_LINKER="${HOST}-ld" +export CMAKE_NM="${HOST}-nm" +export CMAKE_OBJCOPY="${HOST}-objcopy" +export CMAKE_OBJDUMP="${HOST}-objdump" +export CMAKE_RANLIB="${HOST}-ranlib" +export CMAKE_STRIP="${HOST}-strip" + +export CMAKE_FIND_ROOT_PATH="${OWRT} ${TARGET_DIR} ${TOOLCHAIN_DIR}" +# search for programs in the build host directories +export CMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER +# for libraries and headers in the target directories +export CMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY +export CMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY + # set some optional CGO vars for xcompile export CGO_ENABLED=1 export GO_EXTLINK_ENABLED=1 |