FreeBSD: Upgrade to FreeBSD-releng-13.0 compiled, to be tested.
When compiling with GCC we hit compilation error of taking addressof packed member.This adds -Wno-address-of-packed-member to avoid this warning.
Fix f_stack -Werror=unused-but-set-variable errors with gcc compilers
Add arch arm64 compiler options
Use `KMOD_SRCS` to pass extra kernel module sourcs.For example, if you have an extra FreeBSD kernel module, and want tocompile it into F-Stack, you can do it like this:```cd f-stack/libexport "
Use `KMOD_SRCS` to pass extra kernel module sourcs.For example, if you have an extra FreeBSD kernel module, and want tocompile it into F-Stack, you can do it like this:```cd f-stack/libexport "KMOD_SRCS=/your/kmod/path/a.c /your/kmod/path/b.c"export "CONF_CFLAGS=-I/your/kmod/path"make```
show more ...
init