Truenas installation "segmentation fault"

I’ve experminted in Truenas core a plugin install, and a jail install of the urbackup server. When trying to start the server in both instances, It starts the server successfully, then attempts to generate an ECDSA key and then faults with the segmentation fault. Here’s the output:

root@URBackup:/usr/local/bin # urbackupsrv run
2022-10-24 08:51:41: Starting HTTP-Server on port 55414
2022-10-24 08:51:41: HTTP: Server started up successfully!
2022-10-24 08:51:41: Generating Server private/public ECDSA key…
Segmentation fault

Any ideas anyone?

The only thing that works for me is to do a build with
./configure --enable-embedded-cryptopp
That latest Cryptopp gives a segmentation fault in FreeBSD.

Thanks for the tip. Installing from source and configuring the compile worked.

For laymen and to remember for the future, the whole update procedure that works for me. For future updates, change the file address and directory name accordingly. TrueNAS-13.0-U5.1
My processor has 4 threads, so to speed up the compilation I set the parameter -j4 with the make command

wget https://hndl.urbackup.org/Server/2.5.31/urbackup-server-2.5.31.tar.gz
tar xf urbackup-server-2.5.31.tar.gz
cd urbackup-server-2.5.31
./configure --enable-embedded-cryptopp --enable-embedded-zstd
make -j4
service urbackup_server stop
make install
service urbackup_server start