Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion emcmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def has_substr(args, substr):
print('emcmake: no compatible cmake generator found; Please install ninja or mingw32-make, or specify a generator explicitly using -G', file=sys.stderr)
return 1

print(f'configure: {shlex.join(args)}', file=sys.stderr)
print(f'configure: {shlex.join(args)} in directory {os.getcwd()}', file=sys.stderr)
try:
shared.check_call(args)
return 0
Expand Down
3 changes: 2 additions & 1 deletion emconfigure.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
tests will work properly.
"""

import os
import shlex
import sys
from tools import building
Expand Down Expand Up @@ -48,7 +49,7 @@ def run():
# compilation with emcc, but instead do builds natively with Clang. This
# is a heuristic emulation that may or may not work.
env['EMMAKEN_JUST_CONFIGURE'] = '1'
print(f'configure: {shlex.join(args)}', file=sys.stderr)
print(f'configure: {shlex.join(args)} in directory {os.getcwd()}', file=sys.stderr)
try:
shared.check_call(args, env=env)
return 0
Expand Down