Closed fmiceli24 closed 5 years ago
This is my g++ version:
g++ (Raspbian 6.3.0-18+rpi1+deb9u1) 6.3.0 20170516
I haven't tried to do that yet. Will give it a try now..
On Wed, May 1, 2019, 1:27 PM Franco Miceli notifications@github.com wrote:
This is my g++ version:
g++ (Raspbian 6.3.0-18+rpi1+deb9u1) 6.3.0 20170516
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488408472, or mute the thread https://github.com/notifications/unsubscribe-auth/AAB5SIKTWMFI6DCVOZFAX4DPTH4LRANCNFSM4HJXP6ZA .
Thanks Chris!
If I can do something on my end please let me know.
Cheers.
El mié., 1 may. 2019 a las 17:39, Chris Taylor (notifications@github.com) escribió:
I haven't tried to do that yet. Will give it a try now..
On Wed, May 1, 2019, 1:27 PM Franco Miceli notifications@github.com wrote:
This is my g++ version:
g++ (Raspbian 6.3.0-18+rpi1+deb9u1) 6.3.0 20170516
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488408472, or mute the thread < https://github.com/notifications/unsubscribe-auth/AAB5SIKTWMFI6DCVOZFAX4DPTH4LRANCNFSM4HJXP6ZA
.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488414135, or mute the thread https://github.com/notifications/unsubscribe-auth/AEFSMGY4X6VN4NQDBN2JOBDPTH5WXANCNFSM4HJXP6ZA .
Doesn't look like I added a CMakeLists file for this project. It seems to work fine if I add pktalloc:: in front of the symbol that is missing.
On Wed, May 1, 2019, 2:06 PM Franco Miceli notifications@github.com wrote:
Thanks Chris!
If I can do something on my end please let me know.
Cheers.
El mié., 1 may. 2019 a las 17:39, Chris Taylor (<notifications@github.com
) escribió:
I haven't tried to do that yet. Will give it a try now..
On Wed, May 1, 2019, 1:27 PM Franco Miceli notifications@github.com wrote:
This is my g++ version:
g++ (Raspbian 6.3.0-18+rpi1+deb9u1) 6.3.0 20170516
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488408472, or mute the thread <
https://github.com/notifications/unsubscribe-auth/AAB5SIKTWMFI6DCVOZFAX4DPTH4LRANCNFSM4HJXP6ZA
.
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488414135, or mute the thread < https://github.com/notifications/unsubscribe-auth/AEFSMGY4X6VN4NQDBN2JOBDPTH5WXANCNFSM4HJXP6ZA
.
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488427047, or mute the thread https://github.com/notifications/unsubscribe-auth/AAB5SIOFJMHNVAX5CS7MWE3PTIA4PANCNFSM4HJXP6ZA .
So I should change, in PacketAllocator.h:
PKTALLOC_FORCE_INLINE unsigned NextAlignedOffset(unsigned offset)
for
PKTALLOC_FORCE_INLINE unsigned pktalloc::NextAlignedOffset(unsigned offset)
Or in the invocation in SiameseDecoder.h?
I changed the one in SiameseDecoder.h to get it working
On Wed, May 1, 2019, 3:33 PM Franco Miceli notifications@github.com wrote:
So I should change, in PacketAllocator.h:
PKTALLOC_FORCE_INLINE unsigned NextAlignedOffset(unsigned offset)
for
PKTALLOC_FORCE_INLINE unsigned pktalloc::NextAlignedOffset(unsigned offset)
Or in the invocation in SiameseDecoder.h?
— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/catid/siamese/issues/1#issuecomment-488464402, or mute the thread https://github.com/notifications/unsubscribe-auth/AAB5SIO5FHD6GLQU7VQ5NLDPTILDFANCNFSM4HJXP6ZA .
Excellent. Will try that tomorrow.
Thanks!
Pushed a CMakeLists and that code change
Excellent.
Got it built using your changes.
Thanks!!
Hi.
I am trying to build a test program with siamese on a raspberry pi using the following g++ command:
I had to define LINUX_ARM for it to detect the OS and architecture. Still the compiler gives the following error:
The problem seems to be with NextAlignedOffset. I have checked but cannot find why. The function is used in SiameseDecoder.h and this file includes PacketAllocator.h.
The test program builds correctly osx with clang++.
Is there a recommended way to build Siamese on linux ARM?
Thanks.