[Compile] Support build FastDeploy with GLIBCXX_ABI=0 (#1528)

* Support abi=0 build

* trigger ci

* fix cmake
This commit is contained in:
Jason
2023-03-07 09:45:30 +08:00
committed by GitHub
parent 5411a30138
commit bf2ba72f1b
5 changed files with 53 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
import sys
import os
import shutil
dirname = sys.argv[1]
bc_dirname = sys.argv[2]
if os.path.exists(bc_dirname):
raise Exception("Path {} is already exists.".format(bc_dirname))
os.makedirs(bc_dirname)
# copy include files
shutil.copytree(os.path.join(dirname, "include"), os.path.join(bc_dirname, "include"))
# copy libraries
shutil.copytree(os.path.join(dirname, "lib"), os.path.join(bc_dirname, "lib"))
third_libs = os.path.join(dirname, "third_libs")
for root, dirs, files in os.walk(third_libs):
for f in files:
if f.strip().count(".so") > 0 or f.strip() == "plugins.xml":
full_path = os.path.join(root, f)
shutil.copy(full_path, os.path.join(bc_dirname, "lib"))