Fork me on GitHub

Changeset 340 in svn for trunk/FAQ


Ignore:
Timestamp:
Mar 18, 2009, 9:45:01 PM (15 years ago)
Author:
Xavier Rouby
Message:

update Mac OS-X

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FAQ

    r339 r340  
    11Frequently Asked Questions
    22
    3 -- Latest revision : 12/03/2009 --
     3-- Latest revision : 18/03/2009 --
    44-- See also Delphes website:
    55--  http://www.fynu.ucl.ac.be/users/s.ovyn/Delphes/faq.html
     
    4141        me@mylaptop:~$ ./frog
    4242
     43(Q) frog executable is not found! ./Utilities/FROG/frog: No such file or directory
     44(A) you should have compiled FROG first.
     45        me@mylaptop:~$ cd Utilities/FROG
     46        me@mylaptop:~$ make
    4347
    4448(Q) How should I know which external libraries I need for FROG ?
    4549(A) Please refer to this page on the FROG website:
    46         http://projects.hepforge.org/frog/index.php?page=Starting.php
     50        http://projects.hepforge.org/frog/Visualization.html
    4751    you will need OpenGL, GLUT, X11-devel, Curl. For instance:
    4852        OpenGL :
     
    8488You should find your *vis and *geom files when it has ended.
    8589
     90
     91(Q) Delphes is not compiling properly on Mac OS-X
     92(A) One modification is required in the Makefile
     93In Delphes' genMakefile.tcl, you should add "-Dmacos " in the CXXFLAGS definition (line 219):
     94
     95CXXFLAGS += $(ROOTCFLAGS) -Dmacos -DDROP_CGAL -I. -Iinterface ...
     96
     97
     98(Q) FROG is not compiling properly on Mac OS-X
     99(A) One modification is required in FROG's Makefile
     100Open Utilities/FROG/Makefile. There, you should link the libcurl library in the compilation line of libfrog:
     101
     102Utilities/FROG/Makefile:
     103libfrog.dylib : $(OBJS)
     104        $(CXX) ... $(ARCHDEPENDENT) -lcurl -lX11 -lz -lpng -o $(LIBDIR)/$@
     105Do not forget to recompile FROG from its directory (Utilities/FROG)
     106        me@mylaptop:~$ cd Utilities/FROG
     107        me@mylaptop:~$ make
Note: See TracChangeset for help on using the changeset viewer.