Skip to content

Commit

Permalink
VirtualMachine: run nacl_loader on FreeBSD Linuxulator the same way i…
Browse files Browse the repository at this point in the history
…t runs on Linux (using the helper)
  • Loading branch information
illwieckz committed Oct 1, 2024
1 parent 380eac2 commit d6387b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/engine/framework/VirtualMachine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,8 @@ static std::pair<Sys::OSHandle, IPC::Socket> CreateNaClVM(std::pair<IPC::Socket,
Log::Warn("NaCl loader not found: %s", nacl_loader);
if (!FS::RawPath::FileExists(irt))
Log::Warn("NaCl integrated runtime not found: %s", irt);
#ifdef __linux__

#if defined(__linux__) || defined(__FreeBSD__)
#if defined(DAEMON_ARCH_arm64)
bootstrap = FS::Path::Build(naclPath, "nacl_helper_bootstrap-armhf");
#else
Expand Down

0 comments on commit d6387b7

Please sign in to comment.