-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standalone version #83
Comments
After the sad news about the rejection for c++20, I think having a standalone version became more urgent. Boost aims to have many libraries inserted in the standard but many simple can't afford to add boost as a dependency or often the burden to add such big (compile time) dependency for just one package is simple not worth, for example in embedded platforms, ios/android development. |
It's not rejected, it just didn't get on time for C++20. C++23 is the new milestone (and only LWG review remains). If you want a standalone version - just do it :-) Fork and remove the Boost dependencies. I would provide a link in the Boost docs to the forked standalone version. |
@apolukhin : Do you think you could make it easier for us by pointing out "hitches" in yanking out the Boost dependencies? |
Most of the dependencies are in tests. It seems fine to leave tests dependent on Boost, while making the remaining parts of the library standalone. |
Well, some dependencies are not in tests. For example, in
|
Actually, there are lots of dependencies in the library includes. I've started working on getting rid of them (and made it easy for me by assuming C++11 or later), but some of that is not trivial (e.g. replacing NOINLINE and FORCE_INLINE, So, lots and lots of work. I'm working on this at my fork repo - whoever is interested is welcome to go there and either submit a PR or file an issue. |
Update: I'm making progress in removing Boost dependencies:
I could really use some help from people with Windows experience. |
What kind of help you need for the Windows part? |
@ceztko :
|
Has anyone ever managed to do this? |
@TomArrow : https://github.com/eyalroz/stacktrace and it was kinda-working. But I haven't kept it up-to-date. Also, stack traces are going into the standard in C++23, so not a lot of motivation to work on stand-alone just for older code I suppose. Still, you're welcome to try my repo. |
Is there a standalone version od the library? If no, how easy it would be to strip it from boost just using C++14 standard libraries?
The text was updated successfully, but these errors were encountered: