@@ -271,12 +271,14 @@ class GitInstaller:
utils.system('make -j %s' % utils.count_cpus())
logging.info('Building KVM userspace code')
os.chdir(self.userspace_srcdir)
- utils.system('./configure --prefix=%s' % self.prefix)
+ utils.system('./configure --disable-strip --prefix=%s' %
+ self.prefix)
utils.system('make clean')
utils.system('make -j %s' % utils.count_cpus())
else:
os.chdir(self.userspace_srcdir)
- utils.system('./configure --prefix=%s' % self.prefix)
+ utils.system('./configure --disable-strip --prefix=%s' %
+ self.prefix)
logging.info('Building KVM modules')
utils.system('make clean')
utils.system('make -C kernel LINUX=%s sync' % self.kernel_srcdir)
Don't strip binaries on all supported build methods. Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com> --- client/tests/kvm/kvm_install.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)