This website requires JavaScript.
Explore
Help
Sign In
RIOT-OS
/
RIOT
Watch
1
Star
0
Fork
0
You've already forked RIOT
mirror of
https://github.com/RIOT-OS/RIOT.git
synced
2024-12-29 04:50:03 +01:00
Code
Releases
Activity
d9480cadfc
RIOT
/
cpu
/
msp430-common
/
Makefile.include
4 lines
86 B
Makefile
Raw
Normal View
History
Unescape
Escape
make: replace MAKEBASE with RIOTBASE closes https://github.com/RIOT-OS/RIOT/issues/959
2014-04-01 16:37:07 +02:00
INCLUDES
+=
-I
$(
RIOTBASE
)
/cpu/msp430-common/include/
msp430: provide oneway-malloc implicitly For MSP430 boards oneway-malloc is already used *if* `malloc.h` was included. The problem is that `malloc.h` is not a standard header, even though it is common. `stdlib.h` in the right place to look for `malloc()` and friends. This change removes this discrepancy. `malloc()` is just named like that, without the leading underscore. The symbols now are weak, which means that they won't override library functions if MSP's standard library will provide these functions at some point. (Unlikely, since using `malloc()` on tiny systems is less then optimal ...) Closes #1061 and #863.
2014-05-15 16:30:47 +02:00
DEFAULT_MODULE
+=
oneway_malloc
Copy Permalink