Changes between Version 1 and Version 2 of HowotoinstallMadGRpahonSuSe102
- Timestamp:
- Apr 6, 2012, 4:33:03 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowotoinstallMadGRpahonSuSe102
v1 v2 11 11 To solve this issue symlink the libgcc_s.so where is missing i.e. when you run locate libg cc_s.so you should match the following list (for x86_64 system). 12 12 13 {{{ 13 {{{ 14 14 ~>locate libgcc_s.so 15 15 /lib/libgcc_s.so.1 … … 29 29 To understand what's hppening go to the HELAS folder and issue "make" 30 30 you should get a 31 {{{ 31 {{{ 32 32 ~/MG_ME_V4.1.24/HELAS> make 33 33 f77 -O -I. -c httsxx.F … … 37 37 38 38 This is related to the missing compiler cc1, you just need to put into the PATH. Again a symlink is enough to make MG 39 {{{n -s /usr/lib/gcc/i586-suse-linux/4.1.2/cc1 /bin/cc1}}} 39 {{{ 40 n -s /usr/lib/gcc/i586-suse-linux/4.1.2/cc1 /bin/cc1 41 }}} 40 42 should work on most 10.2-i586. 41 43 … … 49 51 If you still have this problem then change to HELAS folder and issue 50 52 make. You should get 51 {{{ 53 {{{ 52 54 ~/MG_ME_V4.1.24/HELAS> make 53 55 f77 -O -I. -c httsxx.F … … 59 61 To fix it you have to edit /usr/lib/gcc-lib/i586-suse-linux/3.3.5/specs 60 62 Open this file and look for: 61 {{{ 63 {{{ 62 64 *cpp_options: 63 65 %(cpp_unique_options) %1 %{m*} %{std*} %{ansi} %{W*&pedantic*} %{w} %{f*} %{g*} %{O*} %{undef} … … 73 75 change to MG_ME_V4.1.24/pythia-pgs/libraries/stdhep/mcfio 74 76 find 75 {{{ 77 {{{ 76 78 FFLAGS= $(DFLG) -fdebug-kludge -fno-second-underscore 77 79 }}} … … 79 81 80 82 83