Skip to content

Commit

Permalink
Signed-off-by: Meco Man <920369182@qq.com>
Browse files Browse the repository at this point in the history
  • Loading branch information
mysterywolf committed Jan 24, 2021
1 parent e9b031a commit 5014f8c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Qfplib-M0-tiny:

# a free ARM Cortex-M0 floating-point library in 1 kbyte
## A free ARM Cortex-M0 floating-point library in 1 kbyte



## Introduction

Expand Down
20 changes: 20 additions & 0 deletions SConscript
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Import('rtconfig')
from building import *

cwd = GetCurrentDir()
src = Glob('*.c')

if rtconfig.PLATFORM == 'armcc':
src += Glob('*_rvds.S')

if rtconfig.PLATFORM == 'gcc':
src += Glob('*_gcc.S')

if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S')

CPPPATH = [cwd]

group = DefineGroup('Qfplib-M0-tiny', src, depend = ['PKG_USING_QFPLIB_M0_TINY'], CPPPATH = CPPPATH)

Return('group')
File renamed without changes.
File renamed without changes.

0 comments on commit 5014f8c

Please sign in to comment.