Bug 1845811 add some assertions r=padenot
[gecko.git] / config / wasm2c.py
blob6bf1db27207cecc44ca9c8c4b304d0e81b309b3a
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 import subprocess
8 def wasm2c(output, wasm2c_bin, wasm_lib):
9 output.close()
10 return subprocess.run([wasm2c_bin, "-o", output.name, wasm_lib]).returncode