I downloaded clutter from LFS (Ver 1.12.2) and tried running the example from Netbeans .
I have included libclutter in the project but i am getting following error :
undefined symbol: clutter_actor_set_pivot_point
Any suggestions or experience ?
Problem was something weird ... Finally found Might be useful for somebody later
Mint already had some files in /usr/lib/i386-linux-gnu for libclutter .. Netbeans was reading from there .. a quick readelf showed clutter_actor_set_pivot_point is not there ..
But after fresh installation of libclutter1.12.2 files went to /usr/local/lib/libclutter-1.0.so.0
Just remove the files in i386-linux-gnu folder and copy paste from usr>local>lib
Related
I'm trying to setup the 1.2.13 version of SDL library (windows:CodeBlocks),I've started an SDL project and I copied the file "SDL.dll" In my project folder, so everything is supposed to be fine, but after the compilation the error "cannot find -lSDLmain ..." is beeing displayed ( the joined image )
What is your version of CodeBlocks?
The same thing happened to me in the latest version of CodeBlocks (20.03). You should install the CodeBlocks 17.02 release, which worked fine for me.
See if that works for you.
Here is the link for Codeblocks 17.02.
I am using Exlipse in Win10-64bit to right a simple "Hello World" in C
Here is my steps :
Donwload Eclipse-inst-win64 then execute
In exlipse -> Help -> Eclipse Marketspace, update Eclipse C/C++ IDE CDT 9.11 and install all the package
Download mingw-get-setup and install with all the package in Basic Setup
Set the path of bin of Mingw for system
Run Eclipse, create C project "Hello World ANSI C Project" with Toolchain "Mingw GCC"
Click "Build", then "Debug"
And I got the error as the photo :
Could anyone help me?
Thank you very much!
If you Google this problem, you’ll find tutorials that can help you and possibly explain this error 5. Setting up and IDE is just a basic process if you got any problem with your program or code instead, we are always here to help you. By the way, refer here to resolve your problem.
I solved the problem by shut down the anti-virus real time scanning. I found this solution because even in cmd I got "Access Refused" when execute .exe file after compiling. Hope this can help people with this issue.
I have problem when I try to build project for STM32F4 in eclipse on linux system. The error says: arm-none-eabi-gcc: error trying to exec '/home/abcd/.p2/pool/plugins/fr.ac6.mcu.externaltools.arm-none.linux64_1.13.1.201703061524/tools/compiler/bin/../lib/gcc/arm-none-eabi/5.4.1/cc1': execv: No such file or directory. I have found the file under mentioned directory and it exists. I also tried to reinstall and update packages related to gcc and cc1 as mentioned on stackoverflow, but I still cannot build the project. I am feeling helpless, so I will be thankful for any suggestions.
Recently I started coding in C and I tried to find a way to compile with notepad++. After thouroughly installing minGW with some basic upgrades I tried to use a specific code that allows me to compile.
This code is can be found on thise webpage:
http://www.thecrazyprogrammer.com/2015/08/configure-notepad-to-run-c-cpp-and-java-programs.html
So you can see what I am trying to do.
However when I try to execute the command, it gives me the warning that several .dll files are missing.
These are the ones: libgmp-10.dll ; libiconv-2.dll ; libmpc-3.dll and libmpfr-4.dll
After some research, I added those files to the bin, lib and libexec folders of the minGW headfolder and it resulted in giving me another missing lib file:
libgcc_s_dw2-1.dll
Ok I added that one too and now it starts over saying it is missing libiconv-2.dll
I added all the folders to my PATH and there is nothing else I can think of that is wrong =(
If u find a solution, please explain it in detail since I am not a programmer and only have little experience with going this 'deep' into files and paths etc ...
Thanks in advance!
Oh I found it myself I think.
I read somewhere that using gcc in stead of g++ could help and after copying the missing files to a bunch of folders it worked :D
Gnuplot experts or anyone who is willing to help me - I have explained what I have done in very simple words and in a detailed manner. Thanks for your time and patience in advance.
My aim is to develop a new feature in Gnuplot by adding a new terminal to it. I did the following steps in the order mentioned
I formatted my system and reinstalled Windows 7. (no antivirus installed)
Installed Visual Studio 2008
Downloaded the source code of Gnuplot
Now, am supposed to set up the compiling environment for Gnuplot in Windows. So, I did the following steps as per the instructions in "README" and "INSTALL" files in the source code package.
Opened up Visual Studio 2008 Command Prompt
changed directory to the "src" folder in the source code
Then I ran the nmake tool (the make tool meant for Visual Studio) using the file makefile.nt (which is for Windows)
nmake -f C:\Users.........\config\makefile.nt
It compiled successfully and gave the wgnuplot.exe and gnuplot.exe files as output. Also the manifest files were created. (Note: I have not changed any piece of code from the original source code package)
When I tried to open the exe file generated from the compilation, it threw me this error
The program can't start because MSVCR90.DLL is missing from your computer. Try re-installing the program to fix this problem.
This MSVCR90.dll should be installed already when Visual Studio was installed. I checked the C:\Windows\winsxs\x86_microsoft.vc90... folder and the MSVCR90.DLL was alread there. Then, I tried 2 things to solve this -
Anything to do with PATH variable? I made the PATH variable point to that directory. It threw me a new error that says
Microsoft Visual C++ Library. Run time error. R6034. Here is the detailed picture of the error
So, I reset my path variable back to the old value and followed the steps in THIS FORUM POST to fix the missing dll problem by copying the dll files to the C:\Windows\system32 folder. Again it threw me the same run time error
AM STUCK AT THIS POINT. Please advise me on how to rectify this
problem. THANKS A MILLION :) Advance thanks to you :)
Is there any reason you need to use VS2008?
If not I'd recommend to use the current VC release.
Your problem looks like some sort of version mismatch/incompablilty issue to me ...