From 24a1fb393121b717d81f40739251bfe7cc67dd39 Mon Sep 17 00:00:00 2001 From: Idris Kalp Date: Tue, 23 Feb 2021 01:25:03 +0300 Subject: [PATCH] llvm fix deps --- programming/build/llvm/actions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/programming/build/llvm/actions.py b/programming/build/llvm/actions.py index 6f7cf8992b..a45bd72ba2 100644 --- a/programming/build/llvm/actions.py +++ b/programming/build/llvm/actions.py @@ -84,13 +84,13 @@ def setup(): def build(): shelltools.cd("build") - #shelltools.system("ninja") - cmaketools.make() + shelltools.system("ninja") + #cmaketools.make() def install(): shelltools.cd("build") - #shelltools.system("DESTDIR=%s ninja install" % get.installDIR()) - cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + shelltools.system("DESTDIR=%s ninja install" % get.installDIR()) + #cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) if get.buildTYPE() == "emul32": pisitools.domove("/emul32/lib32/", "/usr/")