summaryrefslogtreecommitdiff
path: root/zephyr/cmake/toolchain/host/generic.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/cmake/toolchain/host/generic.cmake')
-rw-r--r--zephyr/cmake/toolchain/host/generic.cmake18
1 files changed, 0 insertions, 18 deletions
diff --git a/zephyr/cmake/toolchain/host/generic.cmake b/zephyr/cmake/toolchain/host/generic.cmake
deleted file mode 100644
index 4cc0fbd352..0000000000
--- a/zephyr/cmake/toolchain/host/generic.cmake
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 2022 The ChromiumOS Authors
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-set(CROSS_COMPILE_TARGET_posix x86_64-pc-linux-gnu)
-set(CROSS_COMPILE_TARGET_unit_testing x86_64-pc-linux-gnu)
-set(CROSS_COMPILE_TARGET ${CROSS_COMPILE_TARGET_${ARCH}})
-
-set(CC gcc)
-set(CROSS_COMPILE "/usr/bin/${CROSS_COMPILE_TARGET}-")
-
-set(COMPILER gcc)
-set(LINKER ld)
-set(BINTOOLS gnu)
-
-set(TOOLCHAIN_HAS_NEWLIB OFF CACHE BOOL "True if toolchain supports newlib")
-
-message(STATUS "Found toolchain: host ${ARCH} (gcc/ld)")