aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/check/crc32_x86.S (follow)
AgeCommit message (Collapse)AuthorFilesLines
2009-06-27Hopefully improved portability of the assembler code inLasse Collin1-1/+7
Autotools based builds on Windows.
2009-06-26Basic support for building with Cygwin and MinGW usingLasse Collin1-3/+4
the Autotools based build system. It's not good yet, more fixes will follow.
2009-04-13Put the interesting parts of XZ Utils into the public domain.Lasse Collin1-7/+14
Some minor documentation cleanups were made at the same time.
2009-02-13Improve support for DOS-like systems.Lasse Collin1-3/+3
Here DOS-like means DOS, Windows, and OS/2.
2009-02-07Support LZMA_API_STATIC in assembler files toLasse Collin1-0/+4
avoid __declspec(dllexport) equivalent.
2009-02-02Updated the x86 assembler code:Lasse Collin1-12/+72
- Use call/ret pair to get instruction pointer for PIC. - Use PIC only if PIC or __PIC__ is #defined. - The code should work on MinGW and Darwin in addition to GNU/Linux and Solaris.
2008-01-26Added note.GNU-stack to x86 assembler files. It is neededLasse Collin1-0/+9
when using non-executable stack.
2007-12-14Use the filename suffix .S instead of .s for assembler filesLasse Collin1-0/+217
so that the preprocessor removes the /* */ style comments, which are not supported by some non-GNU assemblers (Solaris) that otherwise work with this code.