Skip to content

Commit 1b3f0d0

Browse files
authored
Cleanup emcmake/emconfigure (emscripten-core#10392)
- Set CMAKE_CROSSCOMPILING_EMULATOR in the same way we set CMAKE_TOOLCHAIN_FILE. - Consistent echoing of make/configure command. - Don't silently succeed if passed no args
1 parent 6e2ba26 commit 1b3f0d0

File tree

5 files changed

+66
-59
lines changed

5 files changed

+66
-59
lines changed

emcmake.py

+16-3
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,30 @@
44
# University of Illinois/NCSA Open Source License. Both these licenses can be
55
# found in the LICENSE file.
66

7-
import subprocess
7+
from __future__ import print_function
88
import sys
99
from tools import shared
10+
from subprocess import CalledProcessError
1011

1112

1213
#
1314
# Main run() function
1415
#
1516
def run():
16-
configure_path = shared.path_from_root('emconfigure')
17-
return subprocess.call([shared.PYTHON, configure_path] + sys.argv[1:])
17+
if len(sys.argv) < 2 or sys.argv[1] in ('--version', '--help'):
18+
print('''\
19+
emcmake is a helper for cmake, setting various environment
20+
variables so that emcc etc. are used. Typical usage:
21+
22+
emcmake cmake [FLAGS]
23+
''', file=sys.stderr)
24+
return 1
25+
26+
try:
27+
shared.Building.configure(sys.argv[1:])
28+
return 0
29+
except CalledProcessError as e:
30+
return e.returncode
1831

1932

2033
if __name__ == '__main__':

emconfigure.py

+8-13
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,18 @@
3232
#
3333
def run():
3434
if len(sys.argv) < 2 or sys.argv[1] in ('--version', '--help'):
35-
print('''
36-
emconfigure is a helper for configure, setting various environment
37-
variables so that emcc etc. are used. Typical usage:
35+
print('''\
36+
emconfigure is a helper for configure, setting various environment
37+
variables so that emcc etc. are used. Typical usage:
3838
39-
emconfigure ./configure [FLAGS]
39+
emconfigure ./configure [FLAGS]
4040
41-
(but you can run any command instead of configure)
41+
(but you can run any command instead of configure)''', file=sys.stderr)
42+
return 1
4243

43-
''', file=sys.stderr)
44+
if 'cmake' in sys.argv[1]:
45+
print('error: use `emcmake` rather then `emconfigure` for cmake projects', file=sys.stderr)
4446
return 1
45-
elif 'cmake' in sys.argv[1]:
46-
node_js = shared.NODE_JS
47-
if type(node_js) is list:
48-
node_js = node_js[0]
49-
node_js = shared.Building.which(node_js)
50-
node_js = node_js.replace('"', '\"')
51-
sys.argv = sys.argv[:2] + ['-DCMAKE_CROSSCOMPILING_EMULATOR="' + node_js + '"'] + sys.argv[2:]
5247

5348
try:
5449
shared.Building.configure(sys.argv[1:])

emmake.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,13 @@
3232
#
3333
def run():
3434
if len(sys.argv) < 2 or sys.argv[1] in ('--version', '--help'):
35-
print('''
36-
emmake is a helper for make, setting various environment
37-
variables so that emcc etc. are used. Typical usage:
35+
print('''\
36+
emmake is a helper for make, setting various environment
37+
variables so that emcc etc. are used. Typical usage:
3838
39-
emmake make [FLAGS]
40-
41-
(but you can run any command instead of make)
39+
emmake make [FLAGS]
4240
43-
''', file=sys.stderr)
41+
(but you can run any command instead of make)''', file=sys.stderr)
4442
return 1
4543

4644
try:

tests/test_other.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -619,9 +619,9 @@ def check_makefile(dirname):
619619
}
620620

621621
if WINDOWS:
622-
emconfigure = path_from_root('emconfigure.bat')
622+
emcmake = path_from_root('emcmake.bat')
623623
else:
624-
emconfigure = path_from_root('emconfigure')
624+
emcmake = path_from_root('emcmake')
625625

626626
for generator in generators:
627627
conf = configurations[generator]
@@ -658,7 +658,7 @@ def check_makefile(dirname):
658658
cmakelistsdir = path_from_root('tests', 'cmake', test_dir)
659659
with temp_directory(self.get_dir()) as tempdirname:
660660
# Run Cmake
661-
cmd = [emconfigure, 'cmake'] + cmake_args + ['-G', generator, cmakelistsdir]
661+
cmd = [emcmake, 'cmake'] + cmake_args + ['-G', generator, cmakelistsdir]
662662

663663
env = os.environ.copy()
664664
# https://github.com/emscripten-core/emscripten/pull/5145: Check that CMake works even if EMCC_SKIP_SANITY_CHECK=1 is passed.
@@ -704,12 +704,12 @@ def test_cmake_compile_features(self):
704704
native_features = run_process(cmd, stdout=PIPE).stdout
705705

706706
if WINDOWS:
707-
emconfigure = path_from_root('emcmake.bat')
707+
emcmake = path_from_root('emcmake.bat')
708708
else:
709-
emconfigure = path_from_root('emcmake')
709+
emcmake = path_from_root('emcmake')
710710

711711
with temp_directory(self.get_dir()):
712-
cmd = [emconfigure, 'cmake', path_from_root('tests', 'cmake', 'stdproperty')]
712+
cmd = [emcmake, 'cmake', path_from_root('tests', 'cmake', 'stdproperty')]
713713
print(str(cmd))
714714
emscripten_features = run_process(cmd, stdout=PIPE).stdout
715715

@@ -6086,7 +6086,7 @@ def check(what, args, fail=True, expect=''):
60866086
check('emmake', ['make'], fail=False)
60876087
check('emconfigure', ['configure'], fail=False)
60886088
check('emconfigure', ['./configure'], fail=False)
6089-
check('emconfigure', ['cmake'], fail=False)
6089+
check('emcmake', ['cmake'], fail=False)
60906090

60916091
create_test_file('test.py', '''
60926092
import os

tools/shared.py

+30-29
Original file line numberDiff line numberDiff line change
@@ -1565,8 +1565,9 @@ def is_exe(fpath):
15651565

15661566
return None
15671567

1568-
# Returns a clone of the given environment with all directories that contain sh.exe removed from the PATH.
1569-
# Used to work around CMake limitation with MinGW Makefiles, where sh.exe is not allowed to be present.
1568+
# Returns a clone of the given environment with all directories that contain
1569+
# sh.exe removed from the PATH. Used to work around CMake limitation with
1570+
# MinGW Makefiles, where sh.exe is not allowed to be present.
15701571
@staticmethod
15711572
def remove_sh_exe_from_path(env):
15721573
env = env.copy()
@@ -1578,64 +1579,64 @@ def remove_sh_exe_from_path(env):
15781579
return env
15791580

15801581
@staticmethod
1581-
def handle_CMake_toolchain(args, env):
1582-
1583-
def has_substr(array, substr):
1584-
for arg in array:
1585-
if substr in arg:
1586-
return True
1587-
return False
1582+
def handle_cmake_toolchain(args, env):
1583+
def has_substr(args, substr):
1584+
return any(substr in s for s in args)
15881585

15891586
# Append the Emscripten toolchain file if the user didn't specify one.
15901587
if not has_substr(args, '-DCMAKE_TOOLCHAIN_FILE'):
15911588
args.append('-DCMAKE_TOOLCHAIN_FILE=' + path_from_root('cmake', 'Modules', 'Platform', 'Emscripten.cmake'))
1589+
node_js = NODE_JS
1590+
1591+
if not has_substr(args, '-DCMAKE_CROSSCOMPILING_EMULATOR'):
1592+
node_js = NODE_JS[0].replace('"', '\"')
1593+
args.append('-DCMAKE_CROSSCOMPILING_EMULATOR="%s"' % node_js)
15921594

1593-
# On Windows specify MinGW Makefiles or ninja if we have them and no other toolchain was specified, to keep CMake
1594-
# from pulling in a native Visual Studio, or Unix Makefiles.
1595+
# On Windows specify MinGW Makefiles or ninja if we have them and no other
1596+
# toolchain was specified, to keep CMake from pulling in a native Visual
1597+
# Studio, or Unix Makefiles.
15951598
if WINDOWS and '-G' not in args:
15961599
if Building.which('mingw32-make'):
15971600
args += ['-G', 'MinGW Makefiles']
15981601
elif Building.which('ninja'):
15991602
args += ['-G', 'Ninja']
16001603

1601-
# CMake has a requirement that it wants sh.exe off PATH if MinGW Makefiles is being used. This happens quite often,
1602-
# so do this automatically on behalf of the user. See http://www.cmake.org/Wiki/CMake_MinGW_Compiler_Issues
1604+
# CMake has a requirement that it wants sh.exe off PATH if MinGW Makefiles
1605+
# is being used. This happens quite often, so do this automatically on
1606+
# behalf of the user. See
1607+
# http://www.cmake.org/Wiki/CMake_MinGW_Compiler_Issues
16031608
if WINDOWS and 'MinGW Makefiles' in args:
16041609
env = Building.remove_sh_exe_from_path(env)
16051610

16061611
return (args, env)
16071612

16081613
@staticmethod
16091614
def configure(args, stdout=None, stderr=None, env=None, cflags=[], **kwargs):
1610-
if not args:
1611-
return
1612-
if env is None:
1615+
if env:
1616+
env = env.copy()
1617+
else:
16131618
env = Building.get_building_env(cflags=cflags)
16141619
if 'cmake' in args[0]:
1615-
# Note: EMMAKEN_JUST_CONFIGURE shall not be enabled when configuring with CMake. This is because CMake
1616-
# does expect to be able to do config-time builds with emcc.
1617-
args, env = Building.handle_CMake_toolchain(args, env)
1620+
# Note: EMMAKEN_JUST_CONFIGURE shall not be enabled when configuring with
1621+
# CMake. This is because CMake does expect to be able to do
1622+
# config-time builds with emcc.
1623+
args, env = Building.handle_cmake_toolchain(args, env)
16181624
else:
1619-
# When we configure via a ./configure script, don't do config-time compilation with emcc, but instead
1620-
# do builds natively with Clang. This is a heuristic emulation that may or may not work.
1625+
# When we configure via a ./configure script, don't do config-time
1626+
# compilation with emcc, but instead do builds natively with Clang. This
1627+
# is a heuristic emulation that may or may not work.
16211628
env['EMMAKEN_JUST_CONFIGURE'] = '1'
1622-
if EM_BUILD_VERBOSE >= 3:
1623-
print('configure: ' + str(args), file=sys.stderr)
16241629
if EM_BUILD_VERBOSE >= 2:
16251630
stdout = None
16261631
if EM_BUILD_VERBOSE >= 1:
16271632
stderr = None
1633+
print('configure: ' + ' '.join(args), file=sys.stderr)
16281634
run_process(args, stdout=stdout, stderr=stderr, env=env, **kwargs)
1629-
if 'EMMAKEN_JUST_CONFIGURE' in env:
1630-
del env['EMMAKEN_JUST_CONFIGURE']
16311635

16321636
@staticmethod
16331637
def make(args, stdout=None, stderr=None, env=None, cflags=[], **kwargs):
16341638
if env is None:
16351639
env = Building.get_building_env(cflags=cflags)
1636-
if not args:
1637-
exit_with_error('Executable to run not specified.')
1638-
# args += ['VERBOSE=1']
16391640

16401641
# On Windows prefer building with mingw32-make instead of make, if it exists.
16411642
if WINDOWS:
@@ -1654,7 +1655,7 @@ def make(args, stdout=None, stderr=None, env=None, cflags=[], **kwargs):
16541655
stdout = None
16551656
if EM_BUILD_VERBOSE >= 1:
16561657
stderr = None
1657-
print('make: ' + str(args), file=sys.stderr)
1658+
print('make: ' + ' '.join(args), file=sys.stderr)
16581659
run_process(args, stdout=stdout, stderr=stderr, env=env, shell=WINDOWS, **kwargs)
16591660

16601661
@staticmethod

0 commit comments

Comments
 (0)