You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifnotpypy_home.join('libpypy-c.so').check():
libdir=pypy_home.join('bin')
ifnotlibdir.join('libpypy-c.so').check():
libdir=pypy_home.join('pypy', 'goal')
ifnotlibdir.join('libpypy-c.so').check():
raiseException("Can't find libpypy-c.so, point PYPY_HOME to ""directory with libpypy-c.so")
where I think libpypy-c.so should be libpypy-c.dll for the windows case.
Visual Studio link.exe is raising an error with
exit status 1181
I had to change some code on https://github.com/fijal/jitpy/blob/master/jitpy/__init__.py#L41:
where I think
libpypy-c.so
should belibpypy-c.dll
for the windows case.After that I get an error on https://github.com/fijal/jitpy/blob/master/jitpy/__init__.py#L55
ffi.verify(...)
would need another parameters for windows?Maybe I'm wrong as I'm far of a good knowledge of c and compilers.
Kind regards.
The text was updated successfully, but these errors were encountered: