This commit is contained in:
Alon Zakai 2013-04-05 18:31:18 -07:00
Родитель 98665d3a9a
Коммит dad74e0d39
2 изменённых файлов: 2 добавлений и 2 удалений

2
emcc
Просмотреть файл

@ -721,7 +721,7 @@ try:
bind = False
jcache = False
save_bc = False
memory_init_file = True
memory_init_file = False # XXX TODO True
if use_cxx:
default_cxx_std = '-std=c++03' # Enforce a consistent C++ standard when compiling .cpp files, if user does not specify one on the cmdline.

Просмотреть файл

@ -266,7 +266,7 @@ process(sys.argv[1])
if output_processor is not None:
output_processor(open(filename + '.o.js').read())
if self.emcc_args is not None:
if 0:# XXX TODO self.emcc_args is not None:
if '--memory-init-file' in self.emcc_args:
memory_init_file = int(self.emcc_args[self.emcc_args.index('--memory-init-file')+1])
else: