README.txt 495 B

123456789101112131415161718
  1. This is TurboJPEG 1.4.2 sources
  2. In order to be compilable with any MSVC version, we are not using the provided static lib.
  3. Instead we compile the sources + a created lib per target from simd obj files using:
  4. lib /out:simd.lib *.obj
  5. This lib should not contain any reference to a specific LIBC
  6. The following patch was added to jsimd_i386.c (init_smd):
  7. # ifdef _DEBUG
  8. simd_support &= ~JSIMD_SSE2; // using SSE2 in Debug mode will crash
  9. # endif
  10. Also added in jconfig.h
  11. #define WITH_SIMD