gnieboer / GNURadio_Windows_Build_Scripts

A series of Powershell scripts to automatically download, build from source, and install GNURadio and -all- it's dependencies as 64-bit native binaries then package as an msi using Visual Studio 2015
GNU General Public License v3.0
89 stars 33 forks source link

Version 3.8.1.0 has been released... it addresses this issue. #53

Closed livep2000 closed 3 years ago

livep2000 commented 3 years ago

Hello Geof,

(reopening the issue about ending with that negative error code)

Sorry to inform you that 3.8.1.0/v still facing this problem. Had it installed on a AMD. Because this machine is spammed with developer tools, I reverted my laptop back to w10 stock (I7), and used the latest gnuradio_3.8.1.0_win64.msi

Got some extra info:

  1. Only adding qt.ui components to the graph (range, checkbox) works fine.
  2. Tried Python debugging, did not got that working. But used the blond method and narrowed down where the script is ending, please look at the following:

    ##################################################
    # Blocks
    ##################################################

    try: print("Try to assign the source block") self.blocks_null_source_0 = blocks.null_source(gr.sizeof_gr_complex*1) print("After asigning source block") except AssertionError as error: print(error) print("Asigning sink block failed") else: print("Else clause") finally: Print("finally")

    print("never came here")

Result:

prints: Try to assign the source block

And then steps out of the process, with no message at all.

I hope this will give some more hints.

Version 3.8.1.0 has been released... it addresses this issue.

_Originally posted by @gnieboer in https://github.com/gnieboer/GNURadio_Windows_Build_Scripts/issues/46#issuecomment-649112786_

gnieboer commented 3 years ago

Which AMD processor do you have?

livep2000 commented 3 years ago

The first attempt: AMD FX(tm)-9590 Eight-Core Processor WIN10 pro, 64

The seccond attempt: Intel I7 mobile CPU Fresh windows 10 home installation.

Both with the same result. Tried a few other blocks with the same results. Debugged the python script a bit deeper, in the 'null source -> null sink' scenario, it ends here:

c:\program files\gnuradio-3.8\lib\site-packages\gnuradio\blocks\blocks_swig0.py(1924)make() -> return _blocks_swig0.null_source_make(sizeof_stream_item)

gnieboer commented 3 years ago

OK, thanks, that's very helpful.

I'm deep in the middle of a major reorganization of the code to use python 3, which also then allows use of vcpkg and pip, so nearly everything in the scripts is being overhauled at the moment. I'm also completely eliminating the use of AVX2-unique optimizations, which provided negligible value in exchange for major headaches.

Hopefully this overhaul clears this issue up a side effect, but if not I'll focus on it after 3.8."next" release.

On Sun, Jan 3, 2021 at 7:47 PM Imre Biacsics notifications@github.com wrote:

The first attempt: AMD FX(tm)-9590 Eight-Core Processor WIN10 pro, 64

The seccond attempt: Intel I7 mobile CPU Fresh windows 10 home installation.

Both with the same result. Tried a few other blocks with the same results. Debugged the python script a bit deeper, in the 'null source -> null sink' scenario, it end here:

c:\program files\gnuradio-3.8\lib\site-packages\gnuradio\blocks\blocks_swig0.py(1924)make() -> return _blocks_swig0.null_source_make(sizeof_stream_item)

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gnieboer/GNURadio_Windows_Build_Scripts/issues/53#issuecomment-753704567, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAYSW2ODVH4PMDD43IQV2T3SYEFZPANCNFSM4VQHHOGQ .

gnieboer commented 3 years ago

The new installer I mentioned is release here. Please download and install it and see if it clears up your issue (it should).

livep2000 commented 3 years ago

Oops

"The resource you are looking for has been removed, had its name changed, or is temporarily unavailable"

Imre

Geof Nieboer notifications@github.com schreef op 19 januari 2021 03:00:29 CET:

The new installer I mentioned is release here. Please download and install it and see if it clears up your issue (it should).

-- You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub: https://github.com/gnieboer/GNURadio_Windows_Build_Scripts/issues/53#issuecomment-762552337

-- Verstuurd vanaf mijn Android apparaat met K-9 Mail. Excuseer mijn beknoptheid.

gnieboer commented 3 years ago

Use this link:

http://www.gcndevelopment.com/gnuradio/downloads/installers/v3.8.2.1/gnuradio_3.8.2.0_win64.msi

On Thu, Jan 21, 2021 at 5:01 AM Imre Biacsics notifications@github.com wrote:

Oops

"The resource you are looking for has been removed, had its name changed, or is temporarily unavailable"

Imre

Geof Nieboer notifications@github.com schreef op 19 januari 2021 03:00:29 CET:

The new installer I mentioned is release here. Please download and install it and see if it clears up your issue (it should).

-- You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub:

https://github.com/gnieboer/GNURadio_Windows_Build_Scripts/issues/53#issuecomment-762552337

-- Verstuurd vanaf mijn Android apparaat met K-9 Mail. Excuseer mijn beknoptheid.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/gnieboer/GNURadio_Windows_Build_Scripts/issues/53#issuecomment-764521346, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAYSW2PGZELF6DJG3CUZ4WTS273OVANCNFSM4VQHHOGQ .

livep2000 commented 3 years ago

Okay!

One small issue: It loads the block difinition twice, this results in a stream of messages like:

WARNING:gnuradio.grc.core.platform.block_loader:Block with id "zeromq_sub_source" loaded from C:\Program Files\GNURadio-3.8\share\gnuradio\grc\blocks\zeromq_sub_source.block.yml overwritten by C:\Program Files\GNURadio-3.8\share\gnuradio\grc\blocks\zeromq_sub_source.block.yml

And then starts fine. (happy) Snipping out the line in : \GNURadio-3.8\etc\gnuradio\conf.d\grc.conf solves it.

The cause could be that it is also installed by the 'conda' installer.

GOOD WORK! goef!