C/C++ How can I easily install a C++ plot library on a Mac?

AI Thread Summary
The discussion revolves around difficulties in installing plotting tools compatible with OSX 10.8.5 and Xcode 5.1. The user has attempted multiple libraries, including MathGL, Plplot, Gnuplot, and VTK, but encountered various errors such as missing files and linker issues. A significant problem is the failure of the 'make' command to execute properly, which may be linked to incorrect PATH settings or missing programming tools. Suggestions include checking the PATH declaration and ensuring all necessary directories are included. The user is also attempting to modify the CMakeList.txt file to resolve specific errors related to garbage collection flags in VTK, but has not succeeded. The conversation emphasizes the need to resolve the 'make' command issue before progressing further with installations.
KleZMeR
Messages
125
Reaction score
0
Hi All,

Not sure if this is the right place for this thread but it seemed like it was.

I have been trying for two whole days to get some plotting tools up and running that will work with my:
OSX 10.8.5, Xcode 5.1.

I have tried MathGL, Plplot, Gnuplot, Chplot, matplotpp, etc.

I get errors that I can't seem to fix when installing and/or running these. There's either missing files, linker errors, etc
I think my main issue is upon install when I am supposed to run 'make' in the active directory it does nothing on my machine. I have looked up all my errors, including the build errors, and tried valiantly to get just ONE of these working. I don't think it should be this hard?

Does anyone have any suggestions as to an easy install of a C++ plot library?

I also have an Ubuntu machine which I may just switch to, but I was really hoping to use Xcode being that my thesis work will be on a Mac/Xcode platform.

Thanks in advance, any help is appreciated.
 
Technology news on Phys.org
OK, so, VTK seems to be installing... I got through the build and configure... fingers crossed
 
And it errors out at 45% during install... If anyone can help I'd appreciate it, this is becoming frustrating
 
One thing you might look at if you are having trouble running a make file is to see if your PATH declaration has all the directories in it that are required.
 
I've noticed that some of these builds have a cMakeList.txt file and if I run: cmake . command it will carry out the list. I've gotten past this just now in VTK but the error and an internet search is telling me that I must "simply remove the -fobjc-gc flag from VTK_REQUIRED_OBJCXX_FLAGS" . I'm trying to do this now I guess.
 
So I've tried to update my CMakeList.txt to fix this error but to no avail: still getting this: error: garbage collection is no longer supported. I was told to "
simply remove the -fobjc-gc flag from VTK_REQUIRED_OBJCXX_FLAGS." , which I did, and it does not fix the error
 
When I did a data mining class the lecturer used GNUplot.

If your make command doesn't do anything you need to make sure the programming tools are setup in your distribution and your user account.

I would get the make issue fixed before anything else is done.
 
Back
Top