elfutils split 32bit
This commit is contained in:
@@ -7,25 +7,32 @@
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
pisitools.flags.add("-fexceptions")
|
||||
autotools.autoreconf("-vfi")
|
||||
|
||||
# Remove -Wall from default flags. The makefiles enable enough warnings
|
||||
# themselves, and they use -Werror.
|
||||
pisitools.cflags.remove("-Wall")
|
||||
|
||||
|
||||
options ='-disable-nls --program-prefix=\"eu-\" --with-zlib'
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig")
|
||||
|
||||
elif get.ARCH() == "x86_64":
|
||||
pisitools.flags.add("-fexceptions")
|
||||
autotools.autoreconf("-vfi")
|
||||
|
||||
autotools.configure("\
|
||||
--disable-nls \
|
||||
--enable-dwz \
|
||||
--enable-thread-safety \
|
||||
--program-prefix=\"eu-\" \
|
||||
--with-bzlib \
|
||||
--with-lzma \
|
||||
--with-zlib \
|
||||
")
|
||||
pisitools.cflags.remove("-Wall")
|
||||
|
||||
options +=" \
|
||||
--enable-dwz \
|
||||
--enable-thread-safety \
|
||||
--with-bzlib \
|
||||
--with-lzma"
|
||||
|
||||
autotools.configure(options)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -35,10 +42,17 @@ def build():
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
|
||||
if get.buildTYPE() == "emul32":
|
||||
pisitools.remove("/usr/lib32/libelf.a")
|
||||
pisitools.remove("/usr/lib32/libasm.a")
|
||||
pisitools.remove("/usr/lib32/libdw.a")
|
||||
|
||||
|
||||
elif get.ARCH() == "x86_64":
|
||||
# Don't remove all the static libs as libebl.a is needed by other packages
|
||||
pisitools.remove("/usr/lib/libelf.a")
|
||||
pisitools.remove("/usr/lib/libasm.a")
|
||||
pisitools.remove("/usr/lib/libdw.a")
|
||||
pisitools.remove("/usr/lib/libelf.a")
|
||||
pisitools.remove("/usr/lib/libasm.a")
|
||||
pisitools.remove("/usr/lib/libdw.a")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "NOTES", "README", "THANKS", "TODO")
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "NOTES", "README", "THANKS", "TODO")
|
||||
|
||||
Reference in New Issue
Block a user