Skip to content

Commit

Permalink
Overwritten when copying libgcc* objects in generate_sysroot script
Browse files Browse the repository at this point in the history
  • Loading branch information
JSUYA committed Jun 13, 2024
1 parent 10da51e commit 525a58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/tizen/generate_sysroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def generate_sysroot(sysroot: Path, api_version: float, arch: str, quiet=False):
libpath = sysroot / 'usr' / 'lib64'
else:
libpath = sysroot / 'usr' / 'lib'
subprocess.run('cp gcc/*/*/*.o gcc/*/*/*.a .', shell=True, cwd=libpath, check=True)
subprocess.run('cp -f gcc/*/*/*.o gcc/*/*/*.a .', shell=True, cwd=libpath, check=True)

# Apply a patch if applicable.
patch = Path(__file__).parent / '{}.patch'.format(arch)
Expand Down

0 comments on commit 525a58b

Please sign in to comment.