-
Notifications
You must be signed in to change notification settings - Fork 52
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
Update Boost version to use Filesystem v4 #265
Comments
does the stage folder not exist? or just I often add a bunch of |
Yes, in fact I'm building locally so the files are already there.
maybe libboost_system is renamed libboost_atomic? |
@dimitre it might be that it is not an included lib by default anymore. on this line we aren't specifying it: But we are copying it: It might be safe to just do something like this for the copy phase: |
Thank you ! I'll be testing this as a separate PR, so maybe this allows us to use this macro on ofConstants.h #define BOOST_FILESYSTEM_VERSION 4 |
I've tried to update boost to latest (v1.81.0)
but I think maybe some .a changed names in the meantime
error
With this change we can use boost filesystem v4 which is much more similar to std::filesystem
Today for example of::filesystem::canonical throws error when using boost library and the file doesn't exist.
so when using try / catch we are dealing with unexpected behavior, because sometimes we have to solve canonical paths for non existent files, example: if we are creating a directory.
The text was updated successfully, but these errors were encountered: