mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
herp derp
This commit is contained in:
parent
4147eced27
commit
282913c258
|
@ -174,7 +174,7 @@ matrix:
|
|||
- os: osx
|
||||
osx_image: xcode7
|
||||
compiler: gcc
|
||||
env: COMPILER=g++-5 LUA_VERSION=luajit
|
||||
env: COMPILER=g++-5 LUA_VERSION=luajit51
|
||||
|
||||
- os: osx
|
||||
osx_image: xcode7
|
||||
|
|
|
@ -115,6 +115,11 @@ elif 'darwin' in sys.platform:
|
|||
lua_incl = 'luajit-2.0'
|
||||
lua_lib = 'luajit'
|
||||
ldflags.extend(['-pagezero_size 10000', '-image_base 100000000'])
|
||||
elif re.match(r'luajit5[1-3]', lua_version):
|
||||
# luajit
|
||||
lua_incl = 'luajit-2.0'
|
||||
lua_lib = lua_version[:-2] + '-' + lua_version[-2] + '.' + lua_version[-1]
|
||||
ldflags.extend(['-pagezero_size 10000', '-image_base 100000000'])
|
||||
else:
|
||||
raise Exception('Unknown lua_version={}' % lua_version)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user