You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
Drop 32 bit support
This commit is contained in:
@@ -35,6 +35,7 @@ android {
|
||||
defaultConfig {
|
||||
externalNativeBuild {
|
||||
ndkBuild {
|
||||
abiFilters("arm64-v8a", "x86_64")
|
||||
ccachePatch?.let {
|
||||
arguments += "NDK_CCACHE=$it"
|
||||
}
|
||||
|
||||
@@ -5,13 +5,7 @@
|
||||
#include <unistd.h>
|
||||
#include <vector>
|
||||
|
||||
#if defined(__LP64__)
|
||||
# define LP_SELECT(lp32, lp64) lp64
|
||||
#else
|
||||
# define LP_SELECT(lp32, lp64) lp32
|
||||
#endif
|
||||
|
||||
constexpr auto kCPSocketPath = "/dev/zygisk/" LP_SELECT("cp32", "cp64") ".sock";
|
||||
constexpr auto kCPSocketPath = "/dev/zygisk/cp.sock";
|
||||
|
||||
class UniqueFd {
|
||||
using Fd = int;
|
||||
|
||||
@@ -5,11 +5,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#ifndef LOG_TAG
|
||||
#if defined(__LP64__)
|
||||
# define LOG_TAG "zygisksu64"
|
||||
#else
|
||||
# define LOG_TAG "zygisksu32"
|
||||
#endif
|
||||
#define LOG_TAG "zygisk-core"
|
||||
#endif
|
||||
|
||||
#ifdef LOG_DISABLED
|
||||
|
||||
Reference in New Issue
Block a user