Skip to content

Commit

Permalink
Mac luajit crash fix
Browse files Browse the repository at this point in the history
Doesn't affect official because I added these flags properly before making SConscript do it
  • Loading branch information
jacob1 committed Oct 9, 2017
1 parent 940fa80 commit a97dad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConscript
Expand Up @@ -418,7 +418,7 @@ elif platform == "Darwin":
env.Append(CPPDEFINES=['MACOSX'])
#env.Append(LINKFLAGS=['-headerpad_max_install_names']) #needed in some cross compiles
if GetOption('luajit'):
env.Append(LINKFLAGS=['-pagezero_size=10000', '-image_base=100000000'])
env.Append(LINKFLAGS=['-pagezero_size', '10000', '-image_base', '100000000'])


#Add architecture flags and defines
Expand Down

0 comments on commit a97dad4

Please sign in to comment.