diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-29 13:27:05 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-29 13:27:05 +0000 |
commit | de15e46e415fc67cd644c28d187b8d5fbcd6105f (patch) | |
tree | 6d84d9b7c3e5c0abc2ffb6e8e6b9c4f899c5b957 /extra/Configs/Config.powerpc | |
parent | 4e164bd909dd7cd32a3709fb9f926a0d77ccbad0 (diff) |
Make it so powerpc can work despite lacking brk().
Diffstat (limited to 'extra/Configs/Config.powerpc')
-rw-r--r-- | extra/Configs/Config.powerpc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extra/Configs/Config.powerpc b/extra/Configs/Config.powerpc index 91b874f04..432d835c5 100644 --- a/extra/Configs/Config.powerpc +++ b/extra/Configs/Config.powerpc @@ -102,6 +102,11 @@ LOCALE_DIR = "/usr/share/uClibc-locale/" MALLOC = malloc #MALLOC = malloc-930716 +# This architecture currently does not implement the brk syscall +# Having brk allows one to use malloc-930716, which is an order +# of magnitude faster then "malloc" for most allocations.... +EXCLUDE_BRK=true + # If you want to collect common syscall code into one function, set to this to # `true'. Set it to false otherwise. # On i386 this saves about than 2.8k over all syscalls. |