user706
user706
ok, now kindof working, but super-ugly: first run this (to be run on raspberry pi or in chroot -- the result is *only* for the sysroot! It will no longer...
One similar but better method, that leaves the raspberry pi image in a good state, is to copy `/sysroot/usr/bin/{h5cc,h5c++,h5fc}` to e.g. `/tools/` and then run `/sysroot/usr/bin/h5redeploy` in that folder and...
I simply mean: split the copying into max. 2 fast, simple linear fragments: ``` If idx_begin has 1 fragment) ``` If idx_end < idx_begin [ 0, 1, 2, idx_end, idx_begin,...
By the way... I'm a bit intregued by the iterators. At first I thought there is a bug here: https://github.com/martinmoene/ring-span-lite/blob/b8135cd85499a2d5482e048eb8fb6b354350d427/include/nonstd/ring_span.hpp#L982 ? Basically: What if you increment beyond the unsigned max...
And here's some "fast" code for you to experiment with: ```cpp template OutputIt copy(const const_iterator &beg, const const_iterator &end, OutputIt d_first ) { assert(this == beg.m_rs); assert(this == end.m_rs); if...
And this, when copying from ring_span into ring_span: ```cpp public: template typename ring_span::iterator copy(const const_iterator &beg, const const_iterator &end, ring_span &other, typename ring_span::iterator d_first ) { assert(this == beg.m_rs); assert(this...
Thanks for those pointers. Looks like I'll roll my own custom ring, to be honest. Reasons: a) I won't invest in segmented_iterator as I'm not on libc++, but on libstdc++....
ok, thank for the information. Would be nice if you find a way of improving it. (For now... I'm running docker engine instead, and it works)
Two things worth mentioning, about `ssvu::FastFunc` from @SuperV1234. (PS: I wonder what Vittorio Romeo is planning with this: [vrm::core::delegate](https://github.com/SuperV1234/vrm_core/tree/master/include/vrm/core/experimental/delegate). But I could not find examples and usage...
By the way, if I go ahead and use *ubuntu's own* crosscompiler `/usr/bin/arm-linux-gnueabihf-g++`, I then the thread-stuff works and I get: `-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success` Edit: not -...