Skip to content

Commit

Permalink
Apply the NODEBUG environment variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
klendathu2k committed May 15, 2024
1 parent 383a1ce commit e6b4a73
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions mgr/config/v0.3.0-rhel7-root6.24.06.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,18 @@ endif
module load star-env-0.3.0-root-6.24.06

if ( $USE_64BITS == 1 ) then
module load geant4-10.5.1
module load geant4-data-10.5.1
module load geant4-vmc-5-0-p5-root-6.24.06
module load geant3-3-9-p1-root-6.24.06
module load clhep-2.4.5.1
module load clhep-2.4.5.1
module load geant4-data-10.5.1
# If NODEBUG is not set, load debug versions, otherwise, optimized
if (! $?NODEBUG) then
module load geant4-10.5.1-debug
module load geant4-vmc-5-0-p5-root-6.24.06-debug
module load geant3-3-9-p1-root-6.24.06-debug
module load vmc-1-0-p3-root-6.24.06-debug
else
module load geant4-10.5.1
module load geant4-vmc-5-0-p5-root-6.24.06
module load geant3-3-9-p1-root-6.24.06
module load vmc-1-0-p3-root-6.24.06
endif
endif

0 comments on commit e6b4a73

Please sign in to comment.