rt-thread/components/libc/compilers/common/readme.md

10 lines
246 B
Markdown
Raw Normal View History

2020-11-10 13:06:16 +08:00
## Attentions
2020-10-02 12:00:52 +08:00
2021-04-21 02:16:29 +08:00
1. This folder is "common" for all toolchains.
2020-10-02 12:00:52 +08:00
2021-02-23 11:28:25 +08:00
2. If you want to add new `.c` files, please do not forget to fix SConscript file too. eg:
2020-10-02 12:00:52 +08:00
```python
if GetDepend('RT_USING_POSIX') == False:
SrcRemove(src, ['unistd.c'])
```