mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
996b2b8ded
@update > malloc : do not use syscall, involve kmalloc > realloc : do not use syscall, involve krealloc > free : do not use syscall, involve kfree @fix > _Exit : remove syscall
14 lines
411 B
TOML
14 lines
411 B
TOML
[project]
|
|
name = 'fxlibc'
|
|
version = '1.4.1'
|
|
type = 'app'
|
|
|
|
[build]
|
|
configure = 'cmake -DFXLIBC_PIC=1 -DFXLIBC_TARGET=vhex-sh -B build-vhex -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-vhex.cmake'
|
|
build = 'make -C build-vhex'
|
|
install = 'make -C build-vhex install'
|
|
uninstall = """ \
|
|
if [ -e build-vhex/install_manifest.txt ]; then \
|
|
xargs rm -f < build-vhex/install_manifest.txt; \
|
|
fi \
|
|
"""
|