Legend:
- Unmodified
- Added
- Removed
-
trunk/FAQ
r339 r340 1 1 Frequently Asked Questions 2 2 3 -- Latest revision : 1 2/03/2009 --3 -- Latest revision : 18/03/2009 -- 4 4 -- See also Delphes website: 5 5 -- http://www.fynu.ucl.ac.be/users/s.ovyn/Delphes/faq.html … … 41 41 me@mylaptop:~$ ./frog 42 42 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 43 47 44 48 (Q) How should I know which external libraries I need for FROG ? 45 49 (A) Please refer to this page on the FROG website: 46 http://projects.hepforge.org/frog/ index.php?page=Starting.php50 http://projects.hepforge.org/frog/Visualization.html 47 51 you will need OpenGL, GLUT, X11-devel, Curl. For instance: 48 52 OpenGL : … … 84 88 You should find your *vis and *geom files when it has ended. 85 89 90 91 (Q) Delphes is not compiling properly on Mac OS-X 92 (A) One modification is required in the Makefile 93 In Delphes' genMakefile.tcl, you should add "-Dmacos " in the CXXFLAGS definition (line 219): 94 95 CXXFLAGS += $(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 100 Open Utilities/FROG/Makefile. There, you should link the libcurl library in the compilation line of libfrog: 101 102 Utilities/FROG/Makefile: 103 libfrog.dylib : $(OBJS) 104 $(CXX) ... $(ARCHDEPENDENT) -lcurl -lX11 -lz -lpng -o $(LIBDIR)/$@ 105 Do 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.