Skip to content

Commit

Permalink
Adapt latest change
Browse files Browse the repository at this point in the history
Signed-off-by: xiaoxindada <2245062854@qq.com>
  • Loading branch information
xiaoxindada committed Mar 2, 2024
1 parent 0b50599 commit e311870
Show file tree
Hide file tree
Showing 22 changed files with 8 additions and 46 deletions.
46 changes: 8 additions & 38 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,6 @@ def cp_output(source, target):
system(f"cp -af {source} {target}")


def generate_binary_info(file):
rm_rf(file)
system(f"echo 'magisk.versionCode={config['versionCode']}' > {file}")
system(f"echo 'md5' >> {file}")
system(f"md5sum out/**/* >> {file}")


def xz(data):
return lzma.compress(data, preset=9, check=lzma.CHECK_NONE)

Expand Down Expand Up @@ -272,26 +265,6 @@ def setup_ndk():
rm_rf(ndk_root)
mv(f"ondk-{config['ondkVersion']}", ndk_root)

print("* Patching static libs")
for target in ["arm-linux-androideabi", "i686-linux-android"]:
arch = target.split("-")[0]
lib_dir = op.join(
ndk_root,
"toolchains",
"llvm",
"prebuilt",
f"{os_name}-x86_64",
"sysroot",
"usr",
"lib",
f"{target}",
"23",
)
if not op.exists(lib_dir):
continue
src_dir = op.join(LOCALDIR, "tools", "ndk-bins", arch)
cp_rf(src_dir, lib_dir)


def run_ndk_build(flags):
os.chdir(LOCALDIR)
Expand Down Expand Up @@ -327,29 +300,26 @@ def build_binary():
if "magiskpolicy" in default_targets:
flag += " B_POLICY=1"

if "test" in default_targets:
flag += " B_TEST=1"

if "magiskinit" in default_targets:
flag += " B_PRELOAD=1"

if "resetprop" in default_targets:
flag += " B_PROP=1"

if "magiskboot" in default_targets:
flag += " B_BOOT=1"
if "magiskinit" in default_targets:
flag += " B_PRELOAD=1"

if flag:
run_ndk_build(flag)
cp_output(f"{libs}/*", out)

# magiskinit embeds preload.so

flag = ""

if "magiskinit" in default_targets:
# magiskinit embeds preload.so
dump_bin_header(args)
flag += " B_INIT=1"

if "magiskboot" in default_targets:
flag += " B_BOOT=1"

if flag:
dump_bin_header()
run_ndk_build(flag)
Expand All @@ -364,7 +334,7 @@ def build_binary():
run_ndk_build(flag)
cp_output(f"{libs}/*", out)

generate_binary_info("out/magisk_version.txt")
system(f"echo magisk.versionCode={config['versionCode']} > out/magisk_version.txt")


def update_code():
Expand Down
Binary file added ondk-r26.4-linux.tar.xzh0d29uf8.tmp
Binary file not shown.
Binary file added ondk-r26.4-linux.tar.xzpj7xqsrm.tmp
Binary file not shown.
8 changes: 0 additions & 8 deletions tools/ndk-bins/README.md

This file was deleted.

Binary file removed tools/ndk-bins/arm/crtbegin_dynamic.o
Binary file not shown.
Binary file removed tools/ndk-bins/arm/crtbegin_so.o
Binary file not shown.
Binary file removed tools/ndk-bins/arm/crtbegin_static.o
Binary file not shown.
Binary file removed tools/ndk-bins/arm/crtend_android.o
Binary file not shown.
Binary file removed tools/ndk-bins/arm/crtend_so.o
Binary file not shown.
Binary file removed tools/ndk-bins/arm/libc.a
Binary file not shown.
Binary file removed tools/ndk-bins/arm/libm.a
Binary file not shown.
Binary file removed tools/ndk-bins/arm/libstdc++.a
Binary file not shown.
Binary file removed tools/ndk-bins/arm/libz.a
Binary file not shown.
Binary file removed tools/ndk-bins/i686/crtbegin_dynamic.o
Binary file not shown.
Binary file removed tools/ndk-bins/i686/crtbegin_so.o
Binary file not shown.
Binary file removed tools/ndk-bins/i686/crtbegin_static.o
Binary file not shown.
Binary file removed tools/ndk-bins/i686/crtend_android.o
Binary file not shown.
Binary file removed tools/ndk-bins/i686/crtend_so.o
Binary file not shown.
Binary file removed tools/ndk-bins/i686/libc.a
Binary file not shown.
Binary file removed tools/ndk-bins/i686/libm.a
Binary file not shown.
Binary file removed tools/ndk-bins/i686/libstdc++.a
Binary file not shown.
Binary file removed tools/ndk-bins/i686/libz.a
Binary file not shown.

0 comments on commit e311870

Please sign in to comment.