
I am trying to cross compile boost 1.63 for Raspberry Pi, i.e. for an ARM core. But the build fails for boost-coroutine and boost-context. Here is my build log http://sprunge.us/NVDd As far as I can see from development files in https://github.com/ boostorg/context/tree/develop/src/asm ARM is supported at least by boost-context. Is there anything I can do about or any progress for this issue? If not, is there an older version I should try? Regards

http://www.boost.org/doc/libs/1_63_0/libs/context/doc/html/context/architect... architecture=arm <address-model>=32 <binary-format>=elf <abi>=aapcs

Thanks Oliver, this helped to get rid of platform not supported error. But I am still struggling with another error: 'exception_ptr' is not a member of 'std'. Build log: http://sprunge.us/hMVe I am pretty sure it is defined for arm: $ sed -n "64p" ../arm-unknown-linux-gnueabihf/arm-unknown-linux-gnueabihf/include/c++/6.3.0/bits/exception_ptr.h exception_ptr current_exception() _GLIBCXX_USE_NOEXCEPT; Any ideas on how to solve this? 2017-05-13 13:39 GMT+02:00 Oliver Kowalke via Boost-users < boost-users@lists.boost.org>:

exception_ptr is part of C++11 but not used in boost.coroutine (and the fcontext-API of boost.context) - you could apply -std=c++11(cxxflags) or check why C++11 code is used

No matter if I add -std=c++11 to the flags, I still get the error message: http://sprunge.us/gSXb This is my compiler's configuration: http://sprunge.us/iaWZ I'm not sure how to check why C++11 code is used though. 2017-05-13 15:02 GMT+02:00 Oliver Kowalke via Boost-users < boost-users@lists.boost.org>:

Since you're using GCC 6.3, which defaults to -std=c++14, specifying -std=c++11 explicitly should not be necessary. But what's shown by `b2` in your previous post (http://sprunge.us/hMVe) suggests many of C++11 features are not supported by your compiler ('Boost.Config Feature Check: cxx11_..: no'). So I think you may want to check which compiler is called by `b2`, there may be some other old compiler being called.

Sorry about my previous post, it should be irrelevant here since you tried to compile `execution_context.cpp` by calling GCC directly in the shell and still failed. Still not clear why `b2` believes many of C++11 features are absent and why std::exception_ptr is not recognized though..

Try compiling it with '-v' (g++ -v t.cpp) so that the include search paths are printed ('#include <...> search starts here: ...'), and examine them to see if there is some other implementation (which presumably does not implement std::exception_ptr) of STL is included and takes precedence over the libstdc++ coming with GCC 6.3. If there is, I suggest you do a clean build of your cross-compiling toolchain. I also noticed that this time you're using `arm-unknown-linux-gnueabihf-gcc` (an unknown version) instead of `arm-unknown-linux-gnueabi-gcc` (which should be 6.3.0 from your previous post), and they seems to be two different installations. I'm not sure if this is related, but there's a chance that the two installations are messed together in some way, which may cause some problems.

Thank you again for your responses. First of all to clarify the my different logs with gnueabihf and gnueabi. The one of them runs in my native environment, i.e. in Cygwin, the other one in a Virtual Box on a Linux. To make sure that the errors are not Cygwin related. So these installations aren't mixed.
From compiling the example with '-v' I learned the location of the included exception header. At the end of this header I saw:
#if (__cplusplus >= 201103L) && (ATOMIC_INT_LOCK_FREE > 1)
#include

I have to add that it seems to have nothing to do with my cross compiler
though. I must have bumped into a known gcc bug, which was fixed only in
version 7.0.0: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58938
Marked as duplicate std::future must be affected as well:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64735
I am a bit surprised the code compiled on Pi, but I think they fixed that
somehow in their own branch of gcc (since its version is 4.9.2*-10*)
pi@rpi1 ~ $ g++ -v
...
gcc version 4.9.2 (Raspbian 4.9.2-10)
2017-05-13 20:15 GMT+02:00 Daniel Estermann

According to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58938, configure GCC with '-with-arch=armv7-a' should do the job (setting __GCC_ATOMIC_INT_LOCK_FREE / ATOMIC_INT_LOCK_FREE to 2), IIUC. FWIW, as pointed out by frankhb1989 in that post (#11), the behavior of GCC 6.3 should be a violation of the standard. Also, starting from GCC 7.1, ATOMIC_INT_LOCK_FREE is no longer tested for exception-related stuffs. You may give it a try as well. ps: It seems that in GCC 6.3, 'future' is also relying on ATOMIC_INT_LOCK_FREE to be 2. This restrictions is removed in GCC 7.1 as well.

According to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58938, configure GCC with '-with-arch=armv7-a' should do the job (setting __GCC_ATOMIC_INT_LOCK_FREE / ATOMIC_INT_LOCK_FREE to 2), IIUC. Forgot to mention that use -with-arch=armv7-a (or whatever ISA on which atomic_int is always lock free) only if your target supports it, otherwise GCC 7.1 may be the only choice.

On Sat, May 13, 2017 at 12:11 PM, Daniel Estermann via Boost-users
First, why in the world do you want to declare an exception variable apart from a try/catch block? Second, more obvious, that std::exception_ptr may not actually be defined. That's up to you. http://www.cplusplus.com/reference/exception/exception/ Otherwise, you're probably really close to building for ARM.
participants (5)
-
d25fe0be@outlook.com
-
Daniel Anderson
-
Daniel Estermann
-
Michael Powell
-
Oliver Kowalke