Re: OOT Binding problem

2022-01-08 Thread Fabien PELLET
Working actualy with 3.9.5rc1 with kernel 5.15 PREEMPT-RT on RPI4 4G. Best regards, Fabien, F4CTZ jmfriedt a écrit >GNU Radio 3.9 is now available for embedded boards (including Raspberry >Pis) in the BR2_EXTERNAL repository at >https://github.com/oscimp/oscimp_br2_external >and has

Re: OOT Binding problem

2022-01-08 Thread Fabien PELLET
Hello, Thanks for the suggestion. Au the moment, as binding is not architecture dependent, I transfer the project on my computer and do the binding. After that I copy back the project to the RPI. As soon I get time, I will try the 64bit OS. Any chance the 64bits architecture help to gain some

Re: OOT Binding problem

2022-01-08 Thread jmfriedt
GNU Radio 3.9 is now available for embedded boards (including Raspberry Pis) in the BR2_EXTERNAL repository at https://github.com/oscimp/oscimp_br2_external and has been tested (on Raspberry Pi 4) with the 3.9 port of gr-acars and gr-rpitx as will be presented at FOSDEM. Of course further testing

Re: OOT Binding problem

2022-01-08 Thread Ron Economos
This is just a shot in the dark, but you may want to try a 64-bit OS. https://ubuntu.com/download/raspberry-pi Ron On 1/7/22 2:23 AM, Fabien PELLET wrote: Hello and happy new year ! I rebuild all my SDCard based on the lastest Raspios bullseye which natively provided with python 3.9.2,

Re: OOT Binding problem

2022-01-07 Thread Josh Morman
Happy New Year to you as well! If your bindings are simple you can rely on the regex parsing that is used when pygccxml is not installed. To try this out, just uninstall pygccxml and re-run gr_modtool bind Josh On Fri, Jan 7, 2022 at 5:28 AM Fabien PELLET wrote: > Hello and happy new year !

Re: OOT Binding problem

2022-01-07 Thread Fabien PELLET
Hello and happy new year ! I rebuild all my SDCard based on the lastest Raspios bullseye which natively provided with python 3.9.2, rebuild all (UHD, VOLK, GNURADIO, CASTXML, etc.) and I always have the same issue with "gr_modtool bind" command... Any other idea to manage make it working on

Re: OOT Binding problem

2021-12-14 Thread Fabien PELLET
Si how to use the command "gr_modtool bind" ? Marcus Müller a écrit >You can't, GNU Radio links against that. >I'd recommend not updating Python, you essentially can't. > >On 14.12.21 14:44, Fabien PELLET wrote: >> castxml was installed, pygccxml also in v1.9.1. I upgrade pygccxml to

Re: OOT Binding problem

2021-12-14 Thread Marcus Müller
You can't, GNU Radio links against that. I'd recommend not updating Python, you essentially can't. On 14.12.21 14:44, Fabien PELLET wrote: castxml was installed, pygccxml also in v1.9.1. I upgrade pygccxml to 2.2.1 without success. How to update python version (3.7 actually) without having to

Re: OOT Binding problem

2021-12-14 Thread Fabien PELLET
castxml was installed, pygccxml also in v1.9.1. I upgrade pygccxml to 2.2.1 without success. How to update python version (3.7 actually) without having to recompile gnuradio ? Le 14/12/2021 à 12:44, Josh Morman a écrit : Sounds like castxml could be playing a role here.  Along the same

Re: OOT Binding problem

2021-12-14 Thread Josh Morman
Sounds like castxml could be playing a role here. Along the same lines Ron suggested, you could try installing both pygccxml and castxml from pip3 Josh On Tue, Dec 14, 2021 at 6:23 AM Ron Economos wrote: > I've tried it on both Ubuntu 18.04 and 20.04, so I don't think it's due > to the Python

Re: OOT Binding problem

2021-12-14 Thread Ron Economos
I've tried it on both Ubuntu 18.04 and 20.04, so I don't think it's due to the Python version. You could try the latest pygccxml. Use pip or pip3 to install. You could also try building CastXML from source. That's where some of the compiler dirty work is being done. For example, you need the

Re: OOT Binding problem

2021-12-14 Thread Fabien PELLET
Is that could be an incompatibility between Python3.7 that is provide by RaspiOS repo and Pybind11 ? Fabien. Le 14/12/2021 à 11:54, Marcus Müller a écrit : Uh, since bindtool is Python-only, this should really not be platform-dependent. Unless we've got a problem with pygccxml, that is...

Re: OOT Binding problem

2021-12-14 Thread Marcus Müller
Uh, since bindtool is Python-only, this should really not be platform-dependent. Unless we've got a problem with pygccxml, that is... On 14/12/2021 11.51, Ron Economos wrote: I've never been able to get gr_modtool bind to work on 32-bit ARM architecture (Ubuntu on a Beagleboard-X15). I get the

Re: OOT Binding problem

2021-12-14 Thread Ron Economos
I've never been able to get gr_modtool bind to work on 32-bit ARM architecture (Ubuntu on a Beagleboard-X15). I get the same error message. Ron On 12/14/21 2:15 AM, Fabien PELLET wrote: Hello, I'm trying to write a simple OOT module. For exemple, I create a module "test" (gr-modtool newmod

OOT Binding problem

2021-12-14 Thread Fabien PELLET
Hello, I'm trying to write a simple OOT module. For exemple, I create a module "test" (gr-modtool newmod test) and I create a general block inside (gr-modtool add blablamodule) : everything fine up to this point. If now I modify the file "blablamodule.h" I have do a "gr_modtool bind