mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-26 19:43:37 +01:00
26 lines
552 B
TOML
26 lines
552 B
TOML
[project]
|
|
name = 'fxlibc'
|
|
type = 'app'
|
|
target = [
|
|
'superh'
|
|
]
|
|
|
|
[superh.build]
|
|
configure = """ \
|
|
cmake \
|
|
-B build-vhex \
|
|
-DFXLIBC_PIC=1 \
|
|
-DFXLIBC_TARGET=vhex-sh \
|
|
-DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-vhex.cmake
|
|
"""
|
|
build = 'cmake --build build-vhex'
|
|
install = 'cmake --install build-vhex'
|
|
uninstall = """ \
|
|
if [ -e build-vhex/install_manifest.txt ]; then \
|
|
xargs rm -f < build-vhex/install_manifest.txt; \
|
|
fi \
|
|
"""
|
|
|
|
[superh.dependencies]
|
|
vxOpenLibm = 'master@superh'
|
|
sh-elf-vhex = 'master@superh'
|