Skip to content

Commit

Permalink
Merge branch 'friction-1.0' into friction
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Dec 22, 2024
2 parents 1a281bf + f6e5f9e commit d375e53
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Binary file added bin/gn.bin
Binary file not shown.
3 changes: 2 additions & 1 deletion gn/find_xcode_sysroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@

(sdk,) = sys.argv[1:]

print(subprocess.check_output(['xcrun', '--sdk', sdk, '--show-sdk-path']))
print(subprocess.check_output([
'xcrun', '--sdk', sdk, '--show-sdk-path']).decode('utf-8'))
6 changes: 3 additions & 3 deletions gn/toolchain/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ toolchain("msvc") {

tool("copy") {
cp_py = rebase_path("../cp.py")
command = "python \"$cp_py\" {{source}} {{output}}"
command = "python3 \"$cp_py\" {{source}} {{output}}"
description = "copy {{source}} {{output}}"
}
}
Expand Down Expand Up @@ -337,13 +337,13 @@ template("gcc_like_toolchain") {

tool("copy") {
cp_py = rebase_path("../cp.py")
command = "python \"$cp_py\" {{source}} {{output}}"
command = "python3 \"$cp_py\" {{source}} {{output}}"
description = "copy {{source}} {{output}}"
}

tool("copy_bundle_data") {
cp_py = rebase_path("../cp.py")
command = "python \"$cp_py\" {{source}} {{output}}"
command = "python3 \"$cp_py\" {{source}} {{output}}"
description = "copy_bundle_data {{source}} {{output}}"
}

Expand Down

0 comments on commit d375e53

Please sign in to comment.