mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-09 05:45:23 +08:00
23 lines
958 B
Python
23 lines
958 B
Python
|
import re
|
||
|
import sys
|
||
|
|
||
|
with open(sys.argv[1], "r") as f_in:
|
||
|
with open("static_link.sh", "w") as f_out:
|
||
|
p_cd = re.compile("^\\((cd .*) && \\\\$")
|
||
|
p_linker = re.compile("^\\s*(.+)gcc.+(@bazel-out\\S+libtensorflow_cc\\.so\\.\\d\\.\\d\\.\\d-2\\.params).*")
|
||
|
f_out.write("#!/bin/bash\n# note: ar/binutils version 2.27 required to support output files > 4GB\n")
|
||
|
env = []
|
||
|
for line in f_in:
|
||
|
if line.startswith("(cd"):
|
||
|
# new command, reset
|
||
|
env = [line]
|
||
|
else:
|
||
|
m1 = p_linker.match(line)
|
||
|
if m1:
|
||
|
m2 = p_cd.match(env[0])
|
||
|
f_out.write(m2.group(1) + "\n")
|
||
|
line = f'"{m1.group(1)}ar" rcs {m1.group(2)[1:-9].replace(".so", ".a")} {m1.group(2).replace(".so", ".a")}\n'
|
||
|
f_out.write(line)
|
||
|
else:
|
||
|
env.append(line)
|