From 19838eda192515451438be2d9ed8b677530f0946 Mon Sep 17 00:00:00 2001 From: nchristensen <11543181+nchristensen@users.noreply.github.com> Date: Tue, 26 Oct 2021 14:41:39 +0000 Subject: [PATCH] Add ppc64le support to setup.py --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index f41dc393..d025bf5a 100644 --- a/setup.py +++ b/setup.py @@ -140,6 +140,11 @@ def build_libcharm(charm_src_dir, build_dir): cmd = './build charm4py netlrts-linux-arm8 tcp -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts else: cmd = './build charm4py netlrts-linux-arm7 tcp -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts + elif arch == "ppc64le": + if build_mpi: + cmd = './build charm4py mpi-linux-ppc64le -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts + else: + cmd = './build charm4py netlrts-linux-ppc64le tcp -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts else: if build_mpi: cmd = './build charm4py mpi-linux-x86_64 -j' + str(build_num_cores) + ' --with-production ' + extra_build_opts