mirror of
https://github.com/openharmony/third_party_openhitls.git
synced 2026-07-22 17:15:29 -04:00
b67050ce74
Major Features: - Multi-compiler/linker configuration system with toolchain support - Auto-manage Secure C (libboundscheck) dependency - Dynamic provider library names for CMVP modes (ISO19790, SM) - macOS/Darwin platform support with unified POSIX abstractions - Cross-platform build improvements and optimizations Build System: - Add toolchain management for cross-compilation - Support nested 'common' format in compile config - with _EXTRA/_REMOVE/_OVERRIDE in common flags, we can add remove by per compiler - Unify toolchain naming convention (arch-vendor-os-abi-compiler) Platform Support: - Unify Linux and Darwin sources under POSIX - Add Darwin support for SAL and build flags - Add Darwin support for REC wrapper functions (WIP) - Cross-platform ops count macros for benchmarking - Platform-specific library extension detection (.dylib vs .so) Cherry-picked from: https://gitcode.com/openHiTLS/openhitls/merge_requests/652 Signed-off-by: Dongjianwei001 <dongjianwei1@huawei.com>
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
# This file is part of the openHiTLS project.
|
|
#
|
|
# openHiTLS is licensed under the Mulan PSL v2.
|
|
# You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
# You may obtain a copy of Mulan PSL v2 at:
|
|
#
|
|
# http://license.coscl.org.cn/MulanPSL2
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
# See the Mulan PSL v2 for more details.
|
|
|
|
import shutil
|
|
import sys
|
|
sys.dont_write_bytecode = True
|
|
import os
|
|
import json
|
|
|
|
# Convert x to list
|
|
def trans2list(x):
|
|
if x == None: return []
|
|
if type(x) == list: return x
|
|
if type(x) == set: return x
|
|
if type(x) == str: return [x]
|
|
|
|
raise ValueError('Unsupported type: "%s"' % type(x))
|
|
|
|
def copy_file(src_file, dest_file, isCoverd=True):
|
|
if not os.path.exists(src_file):
|
|
raise FileNotFoundError('Src file not found: ' + src_file)
|
|
|
|
if os.path.exists(dest_file):
|
|
if isCoverd:
|
|
shutil.copy2(src_file, dest_file)
|
|
else:
|
|
shutil.copy2(src_file, dest_file)
|
|
|
|
def save_json_file(content, path):
|
|
with open(path, 'w') as f:
|
|
f.write(json.dumps(content, indent=4))
|