CC := clang-18 --target=riscv64 -march=rv64imac_zba_zbb_zbc_zbs -g -nostdinc -nostdlib -Ickb-c-stdlib -Ickb-c-stdlib/libc
all: ckb-c-stdlib \
always_failure \
exec_callee \
exec_caller \
fib \
file_operations \
file_write \
out_of_memory \
print_log \
read_file \
spawn_callee_strcat \
spawn_caller_strcat \
timenow
all-via-docker:
docker run -e UID=`id -u` -e GID=`id -g` --rm -v `pwd`:/code cryptape/llvm-n-rust:20240630 bash -c "cd /code && make"
always_failure:
$(CC) -o $@ $@.c
ckb-c-stdlib:
git clone https://github.com/nervosnetwork/ckb-c-stdlib
cd ckb-c-stdlib && git checkout 7245b62
exec_callee:
$(CC) -o $@ $@.c
exec_caller:
$(CC) -o $@ $@.c
fib:
$(CC) -o $@ $@.c
file_write:
$(CC) -o $@ $@.c
file_operations:
$(CC) -Wno-builtin-requires-header -o $@ $@.c
out_of_memory:
$(CC) -o $@ $@.c
print_log:
$(CC) -o $@ $@.c
read_file:
$(CC) -o $@ $@.c
spawn_callee_strcat:
$(CC) -o $@ $@.c
spawn_caller_strcat:
$(CC) -o $@ $@.c
test:
bash MakefileTest.sh
timenow:
$(CC) -o $@ $@.c