Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/emranlib.py
4091 views
1
#!/usr/bin/env python3
2
# Copyright 2019 The Emscripten Authors. All rights reserved.
3
# Emscripten is available under two separate licenses, the MIT license and the
4
# University of Illinois/NCSA Open Source License. Both these licenses can be
5
# found in the LICENSE file.
6
7
"""emranlib - ranlib helper script
8
9
This script acts as a frontend replacement for ranlib, and simply invokes
10
llvm-ranlib internally.
11
"""
12
13
import sys
14
from tools import shared
15
16
shared.exec_process([shared.LLVM_RANLIB] + sys.argv[1:])
17
18