-
Notifications
You must be signed in to change notification settings - Fork 162
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
iOS build OK But I null #220
Comments
Can you provide more details? What's the backtrace? What does the filesystem tree look like? |
What should I do next? Re compile or something with my using way ? |
I have no idea. You still haven't provided any details. Try debugging the problem on your end. |
How Can I give you the code ?zip? |
What shuld I give it to you ? |
https://github.com/faithfracture/Apple-Boost-BuildScript this is the shell which I used to compile |
From the backtrace it looks like the directory iterator is located at an invalid location (or In your Boost build scripts you're defining Note that you should not need to define these macros. Boost.SmartPtr should detect an use a better implementation for atomic reference counters. |
faithfracture/Apple-Boost-BuildScript#50 I think this is the problem |
Closing as a duplicate of #147 then. |
When I Use the Version of 1.77.0 in my app ,It will crash ,
boost::filesystem::recursive_directory_iterator endIter;
for (boost::filesystem::recursive_directory_iterator iter(p); iter != endIter; iter++) {
if (boost::filesystem::is_directory(*iter)) {
std::cout << "key:EEEEEE " << std::endl;
std::cout << iter->path().string() << std::endl;
std::cout << "key:EEEEEE " << std::endl;
} else {
std::cout << "is a file" << std::endl;
std::cout << "key:EEEEEE " << std::endl;
std::cout << iter->path().string() << std::endl;
std::cout << "key:EEEEEE " << std::endl;
}
}
The text was updated successfully, but these errors were encountered: