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

Click For Summary
SUMMARY

The discussion focuses on the challenges of installing C++ plotting libraries on a Mac running OSX 10.8.5 and Xcode 5.1. Users reported issues with various libraries including MathGL, Plplot, Gnuplot, and VTK, primarily encountering errors during installation and build processes. A key recommendation is to ensure that the PATH declaration includes all necessary directories and to utilize CMake for builds. Specific advice includes removing the -fobjc-gc flag from VTK_REQUIRED_OBJCXX_FLAGS to resolve garbage collection errors.

PREREQUISITES
  • Familiarity with C++ programming and compilation processes
  • Understanding of Xcode 5.1 and its configuration on OSX 10.8.5
  • Knowledge of CMake and its usage for building C++ projects
  • Basic troubleshooting skills for resolving linker and build errors
NEXT STEPS
  • Research how to configure PATH variables on OSX for development tools
  • Learn about CMakeLists.txt file configuration and common issues
  • Explore alternative C++ plotting libraries compatible with OSX
  • Investigate GNUplot installation and usage for C++ projects
USEFUL FOR

Developers working on C++ projects in a Mac environment, particularly those needing plotting capabilities for data visualization, as well as students and researchers using Xcode for academic work.

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.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 15 ·
Replies
15
Views
8K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
7
Views
2K
Replies
2
Views
2K
Replies
3
Views
2K
  • · Replies 13 ·
Replies
13
Views
5K