Skip to content

Commit

Permalink
Removed call to nproc in SConstruct as this causes a compilation erro…
Browse files Browse the repository at this point in the history
…r on OSx
  • Loading branch information
adaell committed Nov 14, 2022
1 parent f28b4d4 commit 0ae68ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ if env['build_trilinos']:
print("Building (MPI) trilinos..............................")
configure="sh nompi.sh " + env['prefix']
res=os.system(configure)
res=os.system('make -j`nproc --ignore=2` install')
res=os.system('make -j4 install')
env['trilinos_prefix']=env['prefix']
os.chdir(startdir)
env['trilinos_version']='13.0.0'
Expand Down

0 comments on commit 0ae68ff

Please sign in to comment.