summaryrefslogtreecommitdiff
path: root/platform/CMSIS/DSP_Lib/Source/GCC/getSizeInfo.bat
blob: 6ce4908c463f37fb18cd7f5675ee0baa8509bb13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@echo off

if .%1==. goto help
if exist %1 goto getSizeInfo
goto help

:getSizeInfo
arm-none-eabi-size -t %1 > %2
goto end

:help
echo   Syntax: getSizeInfo inFile outFile
echo.
echo   e.g.: getSizeInfo ..\..\..\Lib\GCC\arm_cortexM0l_math.lib  arm_cortexM0l_math.txt

:end