Building export template for/on FreeBSD

Versions

Godot 3.5.3
FreeBSD 14.1

Question

I’m trying to build the export template for FreeBSD, but can’t get the files being generated. I’m using the following steps (following this):

git clone https://github.com/godotengine/godot.git
cd godot
git checkout 3.5.3-stable
scons platform=x11 module_webm_enabled=no
scons module_webm_enabled=no plaform=x11 tools=no target=release bits=64
scons module_webm_enabled=no plaform=x11 tools=no target=release_debug bits=64
find . -type f -name linux_x11_64_release
[nothing here]

However, no files called linux_x11_64_release or linux_x11_64_debug are generated. What’s the issue? Or am I misunderstanding something?

Greetings,
Fabiano

PS: Specifying module_webm_enabled=no was necessary to build without an error I will deal with in a separate thread as soon as this issue is resolved!

The documentation was misleading. The following steps solved my issue:

cp bin/godot.x11.opt.debug.64 ~/.local/share/godot/templates/3.5.3-stable/linux_x11_64_debug
cp bin/godot.x11.opt.64 ~/.local/share/godot/templates/3.5.3-stable/linux_x11_64_release
strip ~/.local/share/godot/templates/3.5.3-stable/linux_x11_64_*

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.