Files
third_party_mesa3d/ohos/meson_cross_process_x86.py
geekyharmony 2329276ddd feature: update build
Change-Id: If30bc6e1ae14e1151af8286901df1908dd669127
2025-05-27 17:23:07 +08:00

221 lines
6.8 KiB
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2022 Huawei Device Co., Ltd.
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import sys
import ntpath
import os
sysroot_stub = 'sysroot_stub'
project_stub = 'project_stub'
corss_file_content='''
[properties]
needs_exe_wrapper = false
c_args = [
'-march=x86-64',
'--target=x86_64-linux-ohosmusl',
'--sysroot=sysroot_stub',
'-fPIC',
'-fno-emulated-tls']
cpp_args = [
'-march=x86-64',
'--target=x86_64-linux-ohosmusl',
'--sysroot=sysroot_stub',
'-fPIC',
'-fno-emulated-tls']
c_link_args = [
'-march=x86-64',
'--target=x86_64-linux-ohosmusl',
'-fPIC',
'--sysroot=sysroot_stub',
'-Lsysroot_stub/usr/lib/x86_64-linux-ohos',
'-Lproject_stub/prebuilts/clang/ohos/linux-x86_64/15.0.4/lib/x86_64-linux-ohos',
'-Lproject_stub/prebuilts/clang/ohos/linux-x86_64/15.0.4/llvm/include/x86_64-linux-ohos/c++',
'--rtlib=compiler-rt',
]
cpp_link_args = [
'-march=x86-64',
'--target=x86_64-linux-ohosmusl',
'--sysroot=sysroot_stub',
'-fPIC',
'-Lsysroot_stub/usr/lib/x86_64-linux-ohos',
'-Lproject_stub/prebuilts/clang/ohos/linux-x86_64/llvm/lib/clang/15.0.4/lib/x86_64-linux-ohos',
'-Lproject_stub/prebuilts/clang/ohos/linux-x86_64/llvm/lib/include/x86_64-linux-ohos/c++',
'-Wl,--exclude-libs=libunwind_llvm.a',
'-Wl,--exclude-libs=libc++_static.a',
'-Wl,--warn-shared-textrel',
'--rtlib=compiler-rt',
'-Lproject_stub/tools/compiler/install/lib',
'-lLLVMMCDisassembler',
'-lLLVMSelectionDAG',
'-lLLVMExtensions',
'-lLLVMRemarks',
'-lLLVMRuntimeDyld',
'-lLLVMDemangle',
'-lLLVMBinaryFormat',
'-lLLVMAsmParser',
'-lLLVMTarget',
'-lLLVMX86Disassembler',
'-lLLVMInterfaceStub',
'-lLLVMX86Info',
'-lLLVMLTO',
'-lLLVMMCA',
'-lLLVMOption',
'-lLLVMFuzzerCLI',
'-lLLVMDlltoolDriver',
'-lLLVMDebugInfoPDB',
'-lLLVMTextAPI',
'-lLLVMMCJIT',
'-lLLVMAggressiveInstCombine',
'-lLLVMCore',
'-lLLVMOrcTargetProcess',
'-lLLVMAnalysis',
'-lLLVMBitWriter',
'-lLLVMObjCopy',
'-lLLVMBitstreamReader',
'-lLLVMTransformUtils',
'-lLLVMExecutionEngine',
'-lLLVMObjCARCOpts',
'-lLLVMAMDGPUCodeGen',
'-lLLVMFrontendOpenACC',
'-lLLVMAMDGPUInfo',
'-lLLVMDWARFLinker',
'-lLLVMTableGen',
'-lLLVMX86Desc',
'-lLLVMMCParser',
'-lLLVMInstrumentation',
'-lLLVMOrcShared',
'-lLLVMInstCombine',
'-lLLVMSupport',
'-lLLVMAsmPrinter',
'-lLLVMWindowsManifest',
'-lLLVMLineEditor',
'-lLLVMAMDGPUDisassembler',
'-lLLVMDebugInfoGSYM',
'-lLLVMDebugInfoCodeView',
'-lLLVMInterpreter',
'-lLLVMVectorize',
'-lLLVMX86CodeGen',
'-lLLVMAMDGPUUtils',
'-lLLVMParts',
'-lLLVMDebugInfoMSF',
'-lLLVMXRay',
'-lLLVMPasses',
'-lLLVMTableGenGlobalISel',
'-lLLVMGlobalISel',
'-lLLVMBitReader',
'-lLLVMipo',
'-lLLVMLinker',
'-lLLVMX86TargetMCA',
'-lLLVMProfileData',
'-lLLVMCoroutines',
'-lLLVMScalarOpts',
'-lLLVMCodeGen',
'-lLLVMObject',
'-lLLVMWindowsDriver',
'-lLLVMCFGuard',
'-lLLVMDebugInfoDWARF',
'-lLLVMAMDGPUAsmParser',
'-lLLVMFrontendOpenMP',
'-lLLVMJITLink',
'-lLLVMIRReader',
'-lLLVMX86AsmParser',
'-lLLVMMC',
'-lLLVMSymbolize',
'-lLLVMLibDriver',
'-lLLVMObjectYAML',
'-lLLVMFileCheck',
'-lLLVMDWP',
'-lLLVMAMDGPUTargetMCA',
'-lLLVMMIRParser',
'-lLLVMAMDGPUDesc',
'-lLLVMFuzzMutate',
'-lLLVMCoverage',
'-lLLVMOrcJIT',
]
[binaries]
ar = 'project_stub/prebuilts/clang/ohos/linux-x86_64/llvm/bin/llvm-ar'
c = ['ccache', 'project_stub/prebuilts/clang/ohos/linux-x86_64/llvm/bin/clang']
cpp = ['ccache', 'project_stub/prebuilts/clang/ohos/linux-x86_64/llvm/bin/clang++']
c_ld= 'lld'
cpp_ld = 'lld'
strip = 'project_stub/tools/compiler/install/bin/llvm-strip'
llvm-config = 'project_stub/tools/compiler/install/bin/llvm-config'
pkgconfig = '/usr/bin/pkg-config'
[host_machine]
system = 'linux'
cpu_family = 'x86_64'
cpu = 'x86_64'
endian = 'little'
'''
def generate_cross_file(project_stub_in, sysroot_stub_in):
with open("cross_file", 'w+') as file:
result = corss_file_content.replace("project_stub", project_stub_in)
result = result.replace("sysroot_stub", sysroot_stub_in)
file.write(result)
print("generate_cross_file")
def generate_pc_file(file_raw, project_dir, product_name):
print(file_raw)
if not os.path.exists('pkgconfig'):
os.makedirs('pkgconfig')
filename = 'pkgconfig/'+ ntpath.basename(file_raw)
with open(file_raw, 'r+') as file_raw:
with open(filename, "w+") as pc_file:
raw_content = file_raw.read()
raw_content = raw_content.replace("ohos_project_directory_stub", project_dir)
raw_content = raw_content.replace("ohos-arm-release", product_name)
raw_content = raw_content.replace("ohos-arm", "ohos-x86_64")
pc_file.write(raw_content)
print("generate_pc_file")
def process_pkgconfig(project_dir, product_name):
template_dir = os.path.split(os.path.abspath( __file__))[0] + r"/pkgconfig_template"
templates = os.listdir(template_dir)
for template in templates:
if not os.path.isdir(template):
generate_pc_file(template_dir + '/' + template, project_dir, product_name)
print("process_pkgconfig")
def prepare_environment(project_path, product):
global project_stub
global sysroot_stub
product = product.lower()
project_stub = project_path
sysroot_stub = os.path.join(project_stub, "out", product, "obj", "third_party", "musl")
generate_cross_file(project_path, sysroot_stub)
process_pkgconfig(project_path, product)
if __name__ == '__main__':
if len(sys.argv) < 3:
print("must input the OpenHarmony directory and the product name")
exit(-1)
prepare_environment(sys.argv[1], sys.argv[2])