From 5f5b0e0a4bb43c0d4a2626942d0a51a887039ca9 Mon Sep 17 00:00:00 2001 From: lordwithcc Date: Fri, 4 Nov 2022 15:30:48 +0800 Subject: [PATCH] fix standalone Signed-off-by: lordwithcc --- build/compile_script/ark.py | 2 +- build/core/gn/BUILD.gn | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build/compile_script/ark.py b/build/compile_script/ark.py index ca2303ff..88ec2fe1 100644 --- a/build/compile_script/ark.py +++ b/build/compile_script/ark.py @@ -45,7 +45,7 @@ OUTDIR = "out" Help_message = """ formot like python ark.py [arch].[mode] [options] [test] for example , python ark.py x64.release -[arch] can be one of ["x64", "arm", "arm64"] +[arch] only support "x64" now [mode] can be one of ["release", "debug"] [options] target: only support [ets_runtime | ets_frontend | default | all] now diff --git a/build/core/gn/BUILD.gn b/build/core/gn/BUILD.gn index 12305040..659c12c5 100644 --- a/build/core/gn/BUILD.gn +++ b/build/core/gn/BUILD.gn @@ -43,6 +43,7 @@ group("linux_packages") { } group("unittest_packages") { + testonly = true if (host_os != "mac") { deps = [ "//arkcompiler/ets_runtime:ark_js_unittest" ] } -- Gitee