-
Hi all, I would like to build examples but keep running into errors with asio and boost. Is there a way to turn it off? I am able to see that the configuration file allows for enabling boost, but not to turn it off.
I run into problems with asio, so I ran the following:
Any help would be appreciated. Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Similar to what @securitykernel explained in your other discussion, examples are currently built as all-or-nothing. The With #3787, But frankly, now that they are part of the "official" build scripts, perhaps we should actually clean this up and only build examples that fit the build configuration selected by the user. |
Beta Was this translation helpful? Give feedback.
Similar to what @securitykernel explained in your other discussion, examples are currently built as all-or-nothing. The
examples
build target is currently not integrated with Botan's module system and simply assumes that all modules required are available.With #3787,
./configure.py
will at least refuse to allow theexamples
build target without--with-boost
. But for a minimized build one still runs into compile errors, as you pointed out. Initially, we added the build target mostly to have all examples build in CI as a cross check.But frankly, now that they are part of the "official" build scripts, perhaps we should actually clean this up and only build examples that fit the build confi…