c478882b7f
FossilOrigin-Name: b05ebe6fe6f6c78682289eda20878891671974598be6027e25a1a10a6420edfe
14 lines
421 B
Text
14 lines
421 B
Text
You will need to compile the C source to a shared object. Pass
|
|
the same compiler flags as used when building the VM.
|
|
|
|
E.g.,
|
|
|
|
cc -DFAST -DENABLE_FLOATS -DENABLE_FILES -DENABLE_UNIX \
|
|
-DENABLE_RNG -DENABLE_CLOCK -DENABLE_SCRIPTING \
|
|
-DENABLE_SIGNALS -DENABLE_MULTICORE -DENABLE_FFI \
|
|
-DENABLE_UNSIGNED -O2 \
|
|
-shared test.c -o test.so
|
|
|
|
Then run the test sample:
|
|
|
|
../bin/retro ffi.retro
|