BoxFort icon indicating copy to clipboard operation
BoxFort copied to clipboard

Convenient & cross-platform sandboxing C library

Results 20 BoxFort issues
Sort by recently updated
recently updated
newest added

LoongArch is a new RISC ISA, which is a bit like MIPS or RISC-V. LoongArch includes a reduced 32-bit version (LA32R), a standard 32-bit version (LA32S) and a 64-bit version...

I'm unable to use criterion on my ppc64 workstation.

``` Log of Meson test suite run on 2023-10-22T23:49:41.776019 Inherited environment: DEVELOPER_DIR=/Library/Developer/CommandLineTools TMPDIR=/opt/local/var/macports/build/_opt_svacchanda_SonomaPorts_devel_boxfort/boxfort/work/.tmp LIBRARY_PATH=/opt/local/lib SDKROOT=/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk NO_PROXY='*.local,169.254/16' USER=root CCACHE_DIR=/opt/local/var/macports/build/.ccache CPATH=/opt/local/include COLUMNS=80 PATH=/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin _=/opt/local/bin/meson CC_PRINT_OPTIONS=YES PWD=/opt/local/var/macports/build/_opt_svacchanda_SonomaPorts_devel_boxfort/boxfort/work/build LANG=en_US.UTF-8 CC_PRINT_OPTIONS_FILE=/opt/local/var/macports/build/_opt_svacchanda_SonomaPorts_devel_boxfort/boxfort/work/.CC_PRINT_OPTIONS LINES=24 HOME=/opt/local/var/macports/build/_opt_svacchanda_SonomaPorts_devel_boxfort/boxfort/work/.home SHLVL=2 MACOSX_DEPLOYMENT_TARGET=14.0...

Fixed arena memory allocation faillure on riscv64, see issue #44 . The allocation assumes 48bit address on linux, but most RISC-V machines use 39bit address by default currently. I tried...

Nearly all of `criterion` tests fail on `aarch64` with: ``` criterion: Could not initialize inheritable arena: Cannot allocate memory ``` That's because `BoxFort` assumes minimal address space for 64-bit hosts...

@MrAnno I recently attempt to package Criterion for Fedora, and the BoxFort is a dependency of it. The fedora packaging guidelines recommended using shared libraries instead of static libraries. Is...

I had an infinite loop in some of my criterion tests, so I was obliged to kill the processes in order to get going. With time I notice a considerable...

Using BoxFort with AddressSanitizer enabled caused alignment errors as structures are no longer aligned to proper boundaries. This is especially bad for loading pointers.

Building with `clang-cl` on Win-10, shows some important warnings: ```c src/sandbox-windows.c(370,9): warning: variable 'sync' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] if (!instance->waited) ^~~~~~~~~~~~~~~~~ src/sandbox-windows.c(584,9): note: uninitialized use...

Hi, I'm trying to add support for RISC-V to boxfort in Gentoo. I've backported c91d7181734ab2fd6d1299e8aa927297f0ddb754 into our package, the compilation phase looks fine, however I ran into two test failures:...