Hiroyasu Yasuda wrote:

>Hi all; 
>
>I'm beginner of Unix system on Mac OSX. I really want to use 
>PLplot libraries.
>
>I read 'INSTALL' and then I conducted installation 
>procedures. I think probably installation of the libraries 
>was succeeded. Because 'Make check' did not return error 
>message, the libraries files were copied in /usr/local/,  
>and compiled execute files existed.
>
>I have two primitive questions.
> 1) How to check the success of installation ?
> 2) How to use the installed PLplot libraries with gfort ?
> I could find some builded file in /usr/local/lib/*.dylib. 
>Which do I use lib files ? And how to compile with the 
>libraies file and gfort fortran ? 
>
>Thank you very much,
>with best wishes.
>
>
>  
>
Hello,

I would like to ask you a few questions first:
- Are you using the latest release (PLplot 5.7.1) or version 5.6.1?
- Are you using the ./configure script to build the libraries or are you
  using the CMake build system?

This matters as far as several details are concerned.

However, the general procedure is:

(Autotools, PLplot version 5.6.1 and 5.7.1):
./configure --with-prefix=/my/own/install/dir
make
make install

(CMake, PLplot 5.7.1, build in a different directory than the source):
cd /my/own/install/dir
cmake /my/source/dir
make
make install

During the make phase, the system will produce a lot of messages, but
to check if it was successful, just look at the last few. Similarly for the
make install part.

Try running the examples first to make sure everything was successful.

As I have no access to OSX, I can not help out with the details for
that platform, but this is the general idea.

Regards,

Arjen

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Plplot-devel mailing list
Plplot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/plplot-devel

Reply via email to