From 28feff76dc93a385e81935e6a0379927358c9c9e Mon Sep 17 00:00:00 2001 From: xcy Date: Tue, 26 Nov 2024 10:22:55 +0800 Subject: [PATCH] fix rom size Signed-off-by: xcy --- BUILD.gn | 1 + libmbedtls.map | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 libmbedtls.map diff --git a/BUILD.gn b/BUILD.gn index 29bf71715..f7eeeac70 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -132,6 +132,7 @@ if (defined(ohos_lite)) { public_configs = [ ":mbedtls_config" ] output_name = "mbedtls" subsystem_name = "thirdparty" + version_script = "libmbedtls.map" innerapi_tags = [ "platformsdk_indirect", "sasdk", diff --git a/libmbedtls.map b/libmbedtls.map new file mode 100644 index 000000000..929634e24 --- /dev/null +++ b/libmbedtls.map @@ -0,0 +1,6 @@ +3.6.0 { + global: + *mbedtls*; + local: + *; +}; -- Gitee