-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
V1.7.8 build failed: error: no member named 'piecewise_construct' #999
Comments
Are you trying to build a library that doesn't support c++03? I just tried the following:
|
I just tried these: # 1
./bootstrap.sh
./b2 cxxflags="-std=c++03" # failed
# but if I run again with these
./b2 cxxflags="-std=c++11" # success
# 2
./bootstrap.sh
./b2 cxxflags="-std=c++11" # failed
# but if I run again with these
./b2 cxxflags="-std=c++03" # success
# 3
./bootstrap.sh
./b2 # failed
# but if I run again with these
./b2 cxxflags="-std=c++11" # success Is this a bug of the b2? But for version 1.7.5, I can compile successfully and don't need to set any flags.
|
I use |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've tried with these lines:
The error:
Any suggestions?
Thanks.
The text was updated successfully, but these errors were encountered: