We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b9a2be commit 3603caeCopy full SHA for 3603cae
setup.py
@@ -140,6 +140,11 @@ def build_libcharm(charm_src_dir, build_dir):
140
cmd = './build charm4py netlrts-linux-arm8 tcp -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts
141
else:
142
cmd = './build charm4py netlrts-linux-arm7 tcp -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts
143
+ elif arch == "ppc64le":
144
+ if build_mpi:
145
+ cmd = './build charm4py mpi-linux-ppc64le -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts
146
+ else:
147
+ cmd = './build charm4py netlrts-linux-ppc64le tcp -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts
148
149
if build_mpi:
150
cmd = './build charm4py mpi-linux-x86_64 -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts
0 commit comments