jamlib_build.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. from cffi import FFI
  2. ffibuilder = FFI()
  3. import pathlib
  4. this_dir = pathlib.Path().absolute()
  5. # cdef() expects a single string declaring the C types, functions and
  6. # globals needed to use the shared object. It must be in valid C syntax.
  7. ffibuilder.cdef("""
  8. typedef struct {
  9. FILE* HdrFile_PS; /* File handle for .JHR file */
  10. FILE* TxtFile_PS; /* File handle for .JDT file */
  11. FILE* IdxFile_PS; /* File handle for .JDX file */
  12. FILE* LrdFile_PS; /* File handle for .JLR file */
  13. int Errno_I; /* last i/o error */
  14. int Locked_I; /* is area locked? */
  15. uint32_t LastUserPos_I; /* last position of lastread record */
  16. uint32_t LastUserId_I; /* userid for the last read lastread record */
  17. } s_JamBase;
  18. int JAM_OpenMB ( char* Basename_PC, s_JamBase** NewArea_PPS );
  19. int JAM_CloseMB ( s_JamBase* Area_PS );
  20. """)
  21. # int JAM_CloseMB ( s_JamBase* Area_PS );
  22. #
  23. # """)
  24. # set_source() gives the name of the python extension module to
  25. # produce, and some C source code as a string. This C code needs
  26. # to make the declarated functions, types and globals available,
  27. # so it is often just the "#include".
  28. ffibuilder.set_source("_pi_cffi",
  29. """
  30. #include "jam.h" // the C header of the library
  31. """,
  32. # libraries=['jamlib.a'],
  33. # library_dirs=[this_dir.as_posix()],
  34. # extra_link_args=["-Wl,-rpath,."],
  35. extra_link_args=["jamlib.a"],
  36. ) # library name, for the linker
  37. if __name__ == "__main__":
  38. ffibuilder.compile(verbose=True)