-
-
Notifications
You must be signed in to change notification settings - Fork 605
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
mkdir not working in Ubuntu 15.10 #691
Comments
I can reproduce this issue, compiling on Fedora 23 with gcc 5.3.1, although I see a different type of crash, not a GPF: Stack trace from gdb:
At frame 14, we have in api/file.cc a call to boost::filesystem::create_directories("/foo"), which we see in frame 13 as a call to create_directories(const path& p) with
But this crashes in a call to boost::filesystem::path::parent_path().. If this is not a straighforward Boost bug, could we have yet again a bug where we take parts of different versions of Boost? When I debug with gdb, it tells me about "/home/nyh/osv/external/x64/misc.bin/usr/include/boost/filesystem/operations.hpp:399" yet I thought I compiled with the system boost, not the one from external/. My guess is that the cli module is compiled with the wrong Boost.... |
I confirmed that this is a symptom of #687 - I modified module/httpserver to compile httpserver with the host's Boost instead of trying to use the one in external/, and mkdir started working correctly. |
In Ubuntu 15.10 mkdir command from the cli module is not working. The image has been compiled with just the cli module using the command
./scripts/build image=cli
Here is the error:The system just hangs at this point and the user is forced to kill the program. Rest of the commands seem to work fine.
OS version: Ubuntu 15.10
GCC version: 5.2.1 20151010
The text was updated successfully, but these errors were encountered: