error loading after build - c++

I'm generally new to openCV and c++. I'm developing in Ceemple IDE and managed after some problems to get no errors during the compilation. the struggle though is not over as i get the following messages in the terminal
Compilation OK. Creating machine code... Code generating 'detectAndDisplay()'
Linking... [94;106mLinking OK.[39;49m [94;106mFinished compiling (0.21+0.22=0.42 sec) and linking (0.59 sec).[39;49m
11:21:19 Build Finished (took 1s.822ms) --
(!)Error loading
have you got any clue of what this mught be? thank you!

Which code are you trying to run?
Maybe the code tries to open some image file which isn't there?

Related

VS Code Error when compiling C++ Program: 'cmd' is not recognized as an internal or external command

I attempted to follow through on VS Code's method on making C++ code work on their editor. I did this successfully on my laptop but when I tried compiling it, I was met with the error:
* Executing task: C/C++: g++.exe build active file
Starting build...
C:\msys64\mingw64\bin\g++.exe -fdiagnostics-color=always -g "C:\Users\salty\Documents\Programming\C++ Scripts\myProgram\main.cpp" -o "C:\Users\salty\Documents\Programming\C++ Scripts\myProgram\main.exe"
'cmd' is not recognized as an internal or external command,
operable program or batch file.
Build finished with error(s).
* The terminal process failed to launch (exit code: -1).
* Terminal will be reused by tasks, press any key to close it.
This is the entire error message plus extra things in my editor.
If I try and copy and paste the command in the message into Windows Power Shell, it actually works (New .exe file appeared in the correct directory and runs without fault).
These are my environment variables for User, and these are my System variables.
I've tried uninstalling and re-installing and changing the paths around. I'm new to C++ programming and how compilers work in general, but I'm not sure why VS Studio says it doesn't recognize cmd among others it could've not recognized.
Why is it giving me this error?
Edit: I believe I didn't include a return 0; line in the program. Correcting this did not fix the issue.
I am not sure what I poked into place or if I just was too incompetent to realize something, however adding %SystemRoot%\system32 to my PSModulePath environment variables somehow fixed the issue, and since that action I have yet to replicate the compile error.
I don't know if adding that variable to my environments permanently fixed it or VS Studio needed a moment to process some things. Thanks anyways!

Cannot find Valgrind executable for use with CLion?

I am trying to connect Valgrind with CLion 2020.2.1 for testing purposes, but CLion (and perhaps I) cannot locate the Valgrind executable.
The path I am currently using is:
\\wsl$\Ubuntu\usr\bin\valgrind
But when I try to run anything with Valgrind using this path I get a message stating that it cannot run the program because of this error:
CreateProcess error=193, %1 is not a valid Win32 application
Which seemed to make sense upon further research, as what I am selecting (\usr\bin\valgrind) appears to be a .cpp source file and not an executable - as the error would indicate - but now I don't know what the issue is. If that isn't what CLion is looking for, then where is the file it is looking for?
Have also tried path '/usr/bin/valgrind/' which resulted in "Valgrind executable not found." when I tried to compile.
If anyone has any advice it would be greatly appreciated!!

Segmentation Fault when creating AllJoyn BusAttachment

I have built the latest Alljoyn sdk (version 16.04a) on Raspbian and generated the liballjoyn.so and liballjoyn.a without any errors or issues. Scons cmd: scons OS=linux CPU=arm OE_BASE=/usr BINDINGS=cpp BR=on BT=off ICE=off WS=off SERVICES="about" CROSS_COMPILE=/usr/bin/arm-linux-gnueabihf-
So in my program, which is a really simple one and just has several lines to create a busattachment.
When I started debugging, it threw a "Segmentation Fault" in a STL class.
I ran Valgrind to see what actually the problem is, and the result is something about "invalid read size of 4".
Any ideas? Did I miss anything during the building process? Or do I need to do anything with my codes?
Thanks a lot!
this is really a silly one... it ends up with I did not initialize Alljoyn correctly: I missed the AllJoynInit() method.

carbide c++ symbian compiler error

I have created a project on carbide c++ and I am getting an error
sbs returned with exit value = 1
I didn't make any changes on the code that carbide created.I am just created and build the project its throws the error.
I googled the error and could not find any solution. Does anyone get this error code before ?
I was taking the same error...
Try to change the options of build...
That occurs when I was trying to compile using the armv5 instead of GCCE.
Change it and your problem could be resolved.
I´m new on symbian/carbide but it solved my problem!

xcode build error

Command /Developer/usr/bin/g++-4.2 failed with exit code 1
build error
My project was working fine with no errors, and I went to run it again without changing anything and received this error (only this). Any ideas on how to fix it?
I had this error when certain .cpp files didn't exist, but it could be caused by any number of things. Clearly in your case it's something different, if you're sure you haven't changed anything in the project.
On the right of the build results list there should be a (well hidden) button with lines - that shows the raw build output, which should give you some idea about what went wrong. What does that say?