aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Nilsson <mans.nilsson@arm.com>2022-03-23 08:57:51 +0100
committerMåns Nilsson <mans.nilsson@arm.com>2022-03-24 08:47:36 +0100
commit3a3d6fa1b7fd848637353694cc9922b4fc724cde (patch)
tree2c9c8325ee233340b558bfd9057b68f73c6c56c5
parent59096ef275ab1ef7dd1f38706e628370bdc44a86 (diff)
downloadethos-u-core-software-3a3d6fa1b7fd848637353694cc9922b4fc724cde.tar.gz
Update tflite micro cmake build setting
Since tensorflow/lite/c/common.c has changed name to tensorflow/lite/c/common.cc. Change-Id: Ib2ad4a02e3c78f9a0dac841f45b430e88d1a0e94
-rw-r--r--tflite_micro.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/tflite_micro.cmake b/tflite_micro.cmake
index 3d02524..fea4e1a 100644
--- a/tflite_micro.cmake
+++ b/tflite_micro.cmake
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2021 Arm Limited. All rights reserved.
+# Copyright (c) 2021-2022 Arm Limited.
#
# SPDX-License-Identifier: Apache-2.0
#
@@ -171,7 +171,7 @@ tensorflow_target_sources_glob(tflu GLOB TRUE
${TFLU_PATH}/kernels/*.cc)
tensorflow_target_sources_glob(tflu GLOB_RECURSE FALSE
- ${TFLU_PATH}/../c/*.c
+ ${TFLU_PATH}/../c/*.cc
${TFLU_PATH}/../core/*.cc
${TFLU_PATH}/../kernels/*.cc
${TFLU_PATH}/../schema/*.cc)