Initial commit
Change-Id: I26f6fdfd4962e2c724bf6b68893156f11d37d4b1
diff --git a/toolchains/host/gnu.cmake b/toolchains/host/gnu.cmake
new file mode 100644
index 0000000..f470d1b
--- /dev/null
+++ b/toolchains/host/gnu.cmake
@@ -0,0 +1,17 @@
+#
+# SPDX-License-Identifier: BSD-3-Clause
+# SPDX-FileCopyrightText: Copyright LibTL Contributors.
+#
+
+include_guard()
+
+include(${CMAKE_CURRENT_LIST_DIR}/common_host.cmake)
+
+find_program(CMAKE_C_COMPILER
+ NAMES "gcc"
+ DOC "Path to gcc."
+ REQUIRED)
+
+set(CMAKE_ASM_COMPILER ${CMAKE_C_COMPILER})
+
+string(APPEND CMAKE_EXE_LINKER_FLAGS_INIT "-Wl,--build-id=none ")