Intallation

Viewing 3 reply threads
  • Author
    Posts
    • #16068

      slovas
      Participant

      I try to install genesis 1.6

      Here are my steps:

      1. tar -xvjf genesis-1.6.0.tar.bz2
      2. cd genesis-1.6.0
      3. ./configure –prefix=/usr/local/genesis1.6 >& configure.log &
      4. make -j 16

      And I have gotten the following error:

      …..

      mpif90 -I. -I../../src -I../lib -O3 -ffast-math -march=native -ffree-line-length-none -fopenmp -c pr_domain_index.f90
      pr_domain_index_mem.fpp:13:6:

      use pr_huge_molecule_mod
      1
      Fatal Error: Can’t open module file ‘pr_huge_molecule_mod.mod’ for reading at (1): No such file or directory
      compilation terminated.
      make[4]: *** [Makefile:958: pr_domain_index.o] Error 1
      make[4]: *** Waiting for unfinished jobs….
      f951: Fatal Error: Can’t rename module file ‘pr_huge_molecule_mod.mod0’ to ‘pr_huge_molecule_mod.mod’: No such file or directory
      compilation terminated.

      Any suggestion?

    • #16069

      ckobayashi
      Moderator

      Dear slovas,

      I think this is a dependency issue with the make command.

      Could you regenerate Makefile.depend by executing “make depend” command in src/spdyn/ and src/analysis/sp_analysis/libspana?

      % cd src/spdyn

      % make depend

      % cd ../analysis/sp_analysis/libspana

      % make depend

      % cd ../../../..

      % make -j16

      Or, please just execute “make” (without parallel execution).

      If it will not work, please let me know. Thank you.

       

      Kobayashi

    • #16070

      tmori
      Moderator

      Could you try using small number of CPU cores in Step 4?

      For example,

      make -j 2

      or

      make

       

      Takaharu Mori

    • #16071

      slovas
      Participant

      Thank you for the suggestions; The dependencies were OK, the problem, indeed, was using high number of CPUs with make.
      Eventually I have succeeded with compiling using only 1 CPU.
      Sandor

Viewing 3 reply threads

You must be logged in to reply to this topic.