Can't build PortAudio with msys (Windows 7 x86_64) - build

I'm trying to build PortAudio on my Windows 7 with msys and he doesn't build in the specified directory.
I do: "./configure --prefix="C:\Tools\PortAudio_build" and then "make". But he doesn't build in this folder and he shows an error.
What can I do? I'm following the official PortAduio tutorial.
Thank you.

Related

Netbeans don't read header of libssh

I install libssh with Homebrew, add path to netbeans, but when I try run project I get fatal error 'libssh/legacy.h' file not found. At the same time I can open legacy.h in Netbeans by command+click. When I put entire path to libssh.h, libssh_version.h IDE don't show any issue, but when I still not run.
When I try install lib with install instruction with cmaker 2.6.0 or newer I get many errors
Netbeans 13 (and 12.6), Apple silicon

how to install nasm on mingw for build openh264 library for windows application using pjsip library

I am struggling with build openh264 library in mingw . showing some error like nasm not INSTALLED ERROR found ..How to resolve the issues..
actually i want to add video settings in pjsip library for running call applications..
I have put command in mingw like >>make install .
Anyone know the issues or correct command to build the library.
Any help.thanks in advance...
https://trac.pjsip.org/repos/wiki/Getting-Started/Windows#BuildPreparationforWindows
https://trac.pjsip.org/repos/ticket/1947
I ran into this issue as well, and I had to install NASM on MinGW. The latest version of NASM wouldn't install for me, so I used this version:
https://www.nasm.us/pub/nasm/releasebuilds/2.12.03rc1/
I copied nasm-2.12.03rc1.zip and unzipped it to /MinGW/msys/1.0/nasm-2.12.03rc1/ from Windows Explorer, then I installed it using the steps here:
https://github.com/letolabs/nasm/blob/master/INSTALL
Within the MinGW shell, I then ran "cd /openh264-master/" and "make" to install OpenH264.
Hope this helps!

No configure file to make static version of qt

I want to deploy my qt program using static linking following this documentation:
http://doc.qt.io/qt-5/linux-deployment.html
When I try the command "./configure -static -prefix /usr/bin", I get an error:
"bash: ./configure: No such file or directory"
I understand that happens because there is no configure file. In the documentation it says "/path/to/Qt". /usr/bin seems to be the path where qt is installed.
Why is it not working? Am I in the wrong directory?
I wrote the application in C++ using the Qt Creator on a Raspberry Pi 2 with Raspbian Jessie. I want to deploy it so I can use it on another Raspberry that has minimal functionality without desktop-gui or qtcreator installed. I am using Raspbian Jessie Lite on that one.
I had this same problem after installing qt creator 5.10.
The qt directory does not have a configure file. However, the source directory for qt does.
In my installation, that is:
~/qt/5.10.1/Src
If you cd into that directory, you can run the ./configure command. At least i am able to.

opencv2/opencv.hpp: No such file or directory using Eclipse IDE

I'm trying to test OpenCV (3.0.0) with Eclipse IDE (Version: Mars Release (4.5.0)) but for some reason I fail to successfully include all the library path.
Can you tell me how is it possible that the include directory is in the project explorer with the file *opencv.hpp* in it but still fails to find it during the build process? And how can I fix it?
I'm not sure what operating system you are using or how you installed OpenCV but I faced the same problem when installing OpenCV 3.1.0 on Ubuntu 15.10. I was following these instructions.
It turns out that after I ran make I forgot to run make install to actually install the compiled libraries.
I'm not sure if this problem has anything to do with Eclipse.

QT Project unable to compile, no compiler available to build

I'm running Mountain Lion and I've installed QT Library 4.8
From this page...
Qt libraries 4.8.4 for Mac (185 MB)
I've also installed Qt Creator 2.6.1 for Mac (Intel 32/64bit) (51 MB) from the same page.
When I attempt to run, I get this error:
18:14:01: Could not start process "make" -w Error while
building/deploying project WebBrowser (target: Desktop) When executing
step 'Make'
I will include my build setup in three screenshots
Any ideas?
It seems like you didn't install the UNIX command line tools package of XCode. Install that and it should work. See here on how to install the UNIX tools in XCode:
https://stackoverflow.com/a/9329325/856199
There are also stand-alone versions of the UNIX command line development tools if you don't want to install XCode. You can find them here:
https://developer.apple.com/downloads/index.action
Look for "Command Line Tools (OS X Mountain Lion) for XCode". Get the latest version.