mirror of
https://gitee.com/openharmony/startup_init
synced 2024-12-02 16:06:31 +00:00
commit
0bbce8a656
@ -186,7 +186,7 @@ if (defined(ohos_lite)) {
|
||||
"INIT_AGENT",
|
||||
"_GNU_SOURCE",
|
||||
]
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
defines += [ "SUPPORT_64BIT" ]
|
||||
}
|
||||
|
||||
@ -295,7 +295,7 @@ if (defined(ohos_lite)) {
|
||||
"INIT_AGENT",
|
||||
"_GNU_SOURCE",
|
||||
]
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
defines += [ "SUPPORT_64BIT" ]
|
||||
}
|
||||
|
||||
|
@ -129,7 +129,7 @@ if (defined(ohos_lite)) {
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
extra_paras = []
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
extra_paras += [ "const.product.cpu.abilist=arm64-v8a" ]
|
||||
}
|
||||
if (build_variant == "user") {
|
||||
|
@ -155,7 +155,7 @@ ohos_executable("init") {
|
||||
]
|
||||
}
|
||||
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
defines += [ "SUPPORT_64BIT" ]
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ ohos_shared_library("bootchart") {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -48,7 +48,7 @@ ohos_shared_library("init_context") {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -35,7 +35,7 @@ ohos_shared_library("init_eng") {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -31,7 +31,7 @@ ohos_shared_library("rebootmodule") {
|
||||
defines = []
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init/reboot"
|
||||
} else {
|
||||
module_install_dir = "lib/init/reboot"
|
||||
|
@ -39,7 +39,7 @@ ohos_shared_library("selinuxadp") {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -36,7 +36,7 @@ ohos_shared_library("eventmodule") {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -36,7 +36,7 @@ ohos_shared_library("inittrace") {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -86,7 +86,7 @@ if (defined(ohos_lite)) {
|
||||
|
||||
part_name = "init"
|
||||
subsystem_name = "startup"
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
module_install_dir = "lib64/init"
|
||||
} else {
|
||||
module_install_dir = "lib/init"
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "selinux_parameter.h"
|
||||
#endif
|
||||
|
||||
#ifdef __aarch64__
|
||||
#if defined (__aarch64__) || defined(__x86_64__)
|
||||
#define CHECKER_LIB_NAME "/system/lib64/libparaperm_checker.z.so"
|
||||
#define CHECKER_UPDATER_LIB "/lib64/libparaperm_checker.z.so"
|
||||
#else
|
||||
|
@ -34,7 +34,7 @@ ohos_static_library("sandbox") {
|
||||
"//base/startup/init/services/include",
|
||||
"//base/startup/init/interfaces/innerkits/include",
|
||||
]
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
defines = [ "SUPPORT_64BIT" ]
|
||||
}
|
||||
deps = [
|
||||
@ -48,7 +48,7 @@ ohos_static_library("sandbox") {
|
||||
}
|
||||
|
||||
ohos_prebuilt_etc("system-sandbox.json") {
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
source = "system-sandbox64.json"
|
||||
} else {
|
||||
source = "system-sandbox.json"
|
||||
@ -60,7 +60,7 @@ ohos_prebuilt_etc("system-sandbox.json") {
|
||||
}
|
||||
|
||||
ohos_prebuilt_etc("chipset-sandbox.json") {
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
source = "chipset-sandbox64.json"
|
||||
} else {
|
||||
source = "chipset-sandbox.json"
|
||||
|
@ -301,7 +301,7 @@ ohos_unittest("init_unittest") {
|
||||
]
|
||||
defines += [ "_GNU_SOURCE" ]
|
||||
|
||||
if (target_cpu == "arm64") {
|
||||
if (target_cpu == "arm64" || target_cpu == "x86_64") {
|
||||
defines += [ "SUPPORT_64BIT" ]
|
||||
}
|
||||
if (use_musl) {
|
||||
|
Loading…
Reference in New Issue
Block a user