Makefile:44: recipe for target 'get_mvcmd' failed make: *** [get_mvcmd] Error 1 - intel

I'm following this http://www.fpgadeveloper.com/2018/04/setting-up-the-pynq-z1-for-the-intel-movidius-neural-compute-stick.html to run yolov3 on Xilinx Pynq-Z1.
I am getting an error while running the make command in the /ncsdk/api/src folder.
Error_Screenshoot
Can some help me solve this? Or has anyone been able to run YOLOv3 on Pynq-z1 board? or a Zybo Board?
TIA.

Related

qt5: Error class QTextBrowser’ has no member named ‘setMarkdown

I am trying to build a code from github but it gives error when the run the command sudo make. Please help. Also my qmake --version is
Using Qt version 5.14.2 in /opt/qt514/lib```
AboutDialog.cc
/home/admin/delegate/Degate/src/GUI/Dialog/AboutDialog.cc: In constructor ‘degate::AboutDialog::AboutDialog(QWidget*)’:
/home/admin/delegate/Degate/src/GUI/Dialog/AboutDialog.cc:92:19: error: ‘class QTextBrowser’ has no member named ‘setMarkdown’
92 | changelog.setMarkdown(in_changelog.readAll());
| ^~~~~~~~~~~
make[2]: *** [CMakeFiles/DegateCore.dir/build.make:3419: CMakeFiles/DegateCore.dir/src/GUI/Dialog/AboutDialog.cc.o] Error 1
make[2]: Leaving directory '/home/admin/delegate/Degate/build'
make[1]: *** [CMakeFiles/Makefile2:132: CMakeFiles/DegateCore.dir/all] Error 2
make[1]: Leaving directory '/home/admin/delegate/Degate/build'
make: *** [Makefile:133: all] Error 2
This was introduced in Qt 5.14 according to this ticket.
So, you are most likely using an older version. I would, in any case, advise you to use at least Qt 5.15. Even that version is only getting P0/P1 fixes at this point in time, let alone older versions. It is also an LTS version.
Degate has also got a bug that they should set the required Qt version in their project so that there are no surprises for their consumers.

Yocto build fails to fetch sources for libtalloc, how to fix that?

I'm trying to build Yocto for Raspberrypi2, with qt5-image, and it gives me some build errors, most I have been able to resolve with:
bitbake -c cleansstate libname
bitbake libnam
but it failts in:
WARNING: libtalloc-2.1.8-r0 do_fetch: Failed........
......
code 4, output:
--2017-02-04 01:09:20-- http://samba.org/ftp/talloc/talloc-2.1.8.tar.gz
Resolving samba.org (samba.org)... 144.76.82.156, 2a01:4f8:192:486::443:2
Connecting to samba.org (samba.org)|144.76.82.156|:80... failed: Connection refused.
Connecting to samba.org (samba.org)|2a01:4f8:192:486::443:2|:80... failed: Network is unreachable.
How can i fix that?
I am new in Building custom image using Yocto for raspberrypi. Any your suggest is important form me.
Thank you in advance

TinyOS Mote to PC Communication Error in HplAtm128UartC

Good Morning,
I'm trying to use TinyOS for a WSN.
I'm using the app folder where there are:
- BaseStation
- BaseStation 15.4
- test/TestSerial
but for all app when i do "make iris" it generate the error:
In component HplAtm128UartC':
../../tos/chips/atm128/HplAtm128UartC.nc:59: cannot findHplUart0Config'
../../tos/chips/atm128/HplAtm128UartC.nc:64: cannot find `HplUart1Config'
make: *** [exe] Error 1
How can I fix that?
I resolve it by reinstall all of component.
But when I try to use this tutorial: Mote-PC tutorial I have this problem:
java.lang.ClassNotFoundException: TestSerialMsg
or the same error when I apply on the BlinkToRadio:
java.lang.ClassNotFoundException: BlinkToRadioMsg
How can i Solve this?

Installation of unimcrp on Asterisk

As per the instructions given in url below:
https://code.google.com/p/unimrcp/wiki/asteriskUniMRCP
[root#localhost uni-ast-package-1.0.0]# ls
asterisk get-answer.sh modules-install.sh
asterisk-install.sh INSTALL unimrcp
asterisk-unimrcp modules unimrcp-install.sh
./asterisk--install.sh
./unimrcp-install.sh
are successful.
But while running the script ./modules-install.sh
It displays the following error:
/usr/include/errno.h:55: error: declaration for parameter
âprogram_invocation_nameâ but no such parameter
/usr/include/bits/errno.h:47: error: declaration for parameter
â__errno_locationâ but no such parameter
res_speech_unimrcp.c:1433: error: expected â{â at end of input
make[1]: *** [res_speech_unimrcp.lo] Error 1
make[1]: Leaving directory
/Akatsuki/uni-ast-package-1.0.0/modules/res-speech-unimrcp'
make: *** [install-recursive] Error 1
Please check INSTALL document in directory. Very likly it is for other asterisk version.
Anyway this is not supported module and all question have be addressed to developers of this module(person who do install have be expert)

PyQt make error while compiling the source code

I want to install PyQt for Qt 4.7.4 and i downloaded the packages SIP and PyQt from riverbankcomputing.co.uk.
I configured and installed SIP successfully and configured PyQt successfully. But when i ran make in the terminal i got this error:
/home/user/Desktop/PyQt-x11-gpl-4.8.5/QtCore/sipQtCoreQThread.cpp: In function ‘PyObject* meth_QThread_currentThreadId(PyObject*, PyObject*)’:
/home/user/Desktop/PyQt-x11-gpl-4.8.5/QtCore/sipQtCoreQThread.cpp:325:50: error: invalid conversion from ‘void*’ to ‘long unsigned int’
/home/user/Desktop/PyQt-x11-gpl-4.8.5/QtCore/sipQtCoreQThread.cpp:325:50: error: initializing argument 1 of ‘PyObject* PyLong_FromUnsignedLong(long unsigned int)’
make[1]: *** [sipQtCoreQThread.o] Error 1
make[1]: Leaving directory `/home/user/Desktop/PyQt-x11-gpl-4.8.5/QtCore'
make: *** [all] Error 2
The full log is here: http://www.text-upload.com/read.php?id=176672&c=5376703
Can you help me fix this error, please? Thank you!
According to the build log, PyQt's configure script has found and is using the Simulator/embedded variant of Qt, and not the Desktop variant.
Try passing the path to qmake of the Desktop variant to the configure script:
python ./configure.py -q /home/user/.QtSDK/Desktop/Qt/4.7.4/gcc/bin/qmake
There are two choices
python ./configure.py -q /home/user/.QtSDK/Desktop/Qt/4.7.4/gcc/bin/qmake
or
python ./configure.py -q /home/user/.QtSDK/Simulator/Qt/gcc/bin/qmake
second will exit with some error code.
I'm trying first string right now.

Resources