@@ -1565,8 +1565,9 @@ def is_exe(fpath):
1565
1565
1566
1566
return None
1567
1567
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.
1570
1571
@staticmethod
1571
1572
def remove_sh_exe_from_path (env ):
1572
1573
env = env .copy ()
@@ -1578,64 +1579,64 @@ def remove_sh_exe_from_path(env):
1578
1579
return env
1579
1580
1580
1581
@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 )
1588
1585
1589
1586
# Append the Emscripten toolchain file if the user didn't specify one.
1590
1587
if not has_substr (args , '-DCMAKE_TOOLCHAIN_FILE' ):
1591
1588
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 )
1592
1594
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.
1595
1598
if WINDOWS and '-G' not in args :
1596
1599
if Building .which ('mingw32-make' ):
1597
1600
args += ['-G' , 'MinGW Makefiles' ]
1598
1601
elif Building .which ('ninja' ):
1599
1602
args += ['-G' , 'Ninja' ]
1600
1603
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
1603
1608
if WINDOWS and 'MinGW Makefiles' in args :
1604
1609
env = Building .remove_sh_exe_from_path (env )
1605
1610
1606
1611
return (args , env )
1607
1612
1608
1613
@staticmethod
1609
1614
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 :
1613
1618
env = Building .get_building_env (cflags = cflags )
1614
1619
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 )
1618
1624
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.
1621
1628
env ['EMMAKEN_JUST_CONFIGURE' ] = '1'
1622
- if EM_BUILD_VERBOSE >= 3 :
1623
- print ('configure: ' + str (args ), file = sys .stderr )
1624
1629
if EM_BUILD_VERBOSE >= 2 :
1625
1630
stdout = None
1626
1631
if EM_BUILD_VERBOSE >= 1 :
1627
1632
stderr = None
1633
+ print ('configure: ' + ' ' .join (args ), file = sys .stderr )
1628
1634
run_process (args , stdout = stdout , stderr = stderr , env = env , ** kwargs )
1629
- if 'EMMAKEN_JUST_CONFIGURE' in env :
1630
- del env ['EMMAKEN_JUST_CONFIGURE' ]
1631
1635
1632
1636
@staticmethod
1633
1637
def make (args , stdout = None , stderr = None , env = None , cflags = [], ** kwargs ):
1634
1638
if env is None :
1635
1639
env = Building .get_building_env (cflags = cflags )
1636
- if not args :
1637
- exit_with_error ('Executable to run not specified.' )
1638
- # args += ['VERBOSE=1']
1639
1640
1640
1641
# On Windows prefer building with mingw32-make instead of make, if it exists.
1641
1642
if WINDOWS :
@@ -1654,7 +1655,7 @@ def make(args, stdout=None, stderr=None, env=None, cflags=[], **kwargs):
1654
1655
stdout = None
1655
1656
if EM_BUILD_VERBOSE >= 1 :
1656
1657
stderr = None
1657
- print ('make: ' + str (args ), file = sys .stderr )
1658
+ print ('make: ' + ' ' . join (args ), file = sys .stderr )
1658
1659
run_process (args , stdout = stdout , stderr = stderr , env = env , shell = WINDOWS , ** kwargs )
1659
1660
1660
1661
@staticmethod
0 commit comments