From 377551978e157457dc5cda7cefa4649448307cb0 Mon Sep 17 00:00:00 2001 From: zhanghaibo Date: Wed, 18 Aug 2021 16:59:23 +0800 Subject: [PATCH] fix 64bit compiling Signed-off-by: zhanghaibo --- flutter_ace_config.gni | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/flutter_ace_config.gni b/flutter_ace_config.gni index 81d8edb1..a1c27acd 100644 --- a/flutter_ace_config.gni +++ b/flutter_ace_config.gni @@ -2,8 +2,8 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -import("//build/ohos_var.gni") import("//build/config/clang/clang.gni") +import("//build/ohos_var.gni") use_flutter_icu = true @@ -24,7 +24,6 @@ ace_wearable_defines = [ "WEARABLE_PRODUCT" ] # In the performance scenario, turn off the ACE_DEBUG macro. ace_common_defines = [ "ACE_LOG_TAG=\"Ace\"" ] - ace_ohos_defines = [ "OHOS_PLATFORM" ] # ===== For ACE PC preview. ===== @@ -42,7 +41,6 @@ use_mac = "${current_os}_${current_cpu}" == "mac_x64" # Toolchain windows_buildtool = "//build/toolchain/mingw:mingw_x86_64" -objcopy_mingw = "//prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/bin/objcopy" mac_buildtool = "//build/toolchain/mac:clang_x64" objcopy_clang = "$clang_base_path/bin/llvm-objcopy" -- Gitee