FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
emscripten/emmake at universal-python · JavaScriptIOT/emscripten · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
JavaScriptIOT
/
emscripten
Public
forked from
emscripten-core/emscripten
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
emscripten
/
emmake
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
40 lines (29 loc) · 1010 Bytes
Breadcrumbs
emscripten
/
emmake
Copy path
File metadata and controls
executable file
·
40 lines (29 loc) · 1010 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python2
'''
This is a helper script. It runs make for you, setting
the environment variables to use emcc and so forth. Usage:
emmake make [FLAGS]
Note that if you ran configure with emconfigure, then
the environment variables have already been detected
and set. This script is useful if you have no configure
step, and your Makefile uses the environment vars
directly.
The difference between this and emconfigure is that
emconfigure runs compilation into native code, so
that configure tests pass. emmake uses Emscripten to
generate JavaScript.
'''
import
os
,
sys
from
tools
import
shared
from
subprocess
import
CalledProcessError
if
len
(
sys
.
argv
)
<
2
or
sys
.
argv
[
1
]
!=
'make'
:
print
>>
sys
.
stderr
,
'''
emmake is a helper for make, setting various environment
variables so that emcc etc. are used. Typical usage:
emmake make [FLAGS]
(but you can run any command instead of make)
'''
try
:
shared
.
Building
.
make
(
sys
.
argv
[
1
:])
except
CalledProcessError
,
e
:
sys
.
exit
(
e
.
returncode
)
Back
|
FazBrowse Home
|
New Git URL