aboutsummaryrefslogtreecommitdiff
path: root/platform/ext/target/stm/common/stm32l5xx/boards/scripts/armclang/preprocess.sh
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ext/target/stm/common/stm32l5xx/boards/scripts/armclang/preprocess.sh')
-rw-r--r--platform/ext/target/stm/common/stm32l5xx/boards/scripts/armclang/preprocess.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/platform/ext/target/stm/common/stm32l5xx/boards/scripts/armclang/preprocess.sh b/platform/ext/target/stm/common/stm32l5xx/boards/scripts/armclang/preprocess.sh
deleted file mode 100644
index a243bc2d8b..0000000000
--- a/platform/ext/target/stm/common/stm32l5xx/boards/scripts/armclang/preprocess.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash -
-#******************************************************************************
-# * @attention
-# *
-# * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
-# * All rights reserved.</center></h2>
-# *
-# * This software component is licensed by ST under BSD 3-Clause license,
-# * the "License"; You may not use this file except in compliance with the
-# * License. You may obtain a copy of the License at:
-# * opensource.org/licenses/BSD-3-Clause
-# *
-# ******************************************************************************
-# arg1 is the build directory
-# arg2 is the file to preprocess
-# arg3 is output file beeing preprocessed
-function preprocess
-(
-armclang --target=arm-arm-none-eabi -march=armv8-m.main -E -P -xc -I$1 $2 -o $3
-)