Browse Source

Remove reference to __CYGWIN32__

pull/14/merge v0.1.4
Ken Brown 6 years ago
committed by Aleksey Demakov
parent
commit
d09676d2f3
  1. 7
      ChangeLog
  2. 4
      jit/jit-apply-x86.h

7
ChangeLog

@ -1,3 +1,10 @@
2018-09-01 Ken Brown <kbrown@cornell.edu>
* jit/jit-apply-x86.h: Remove reference to __CYGWIN32__. This is
deprecated and unnecessary. It could only cause confusion, since
readers of the code might think it's intended to distinguish
32-bit Cygwin from 64-bit Cygwin.
2018-09-01 Ken Brown <kbrown@cornell.edu>
Don't use Win32 API on Cygwin.

4
jit/jit-apply-x86.h

@ -30,12 +30,12 @@
* code instead.
*
* There are three versions here: gcc/non-Win32, gcc/Win32, and msvc/Win32.
* Cygwin is included in the gcc/Win32 case.
*/
#if defined(__GNUC__)
#if !defined(__CYGWIN__) && !defined(__CYGWIN32__) && \
!defined(_WIN32) && !defined(WIN32)
#if !defined(__CYGWIN__) && !defined(_WIN32) && !defined(WIN32)
/* Mac OS X prefixes static symbols with an underscore, and external symbol
references are late-bound through a PIC stub by the dynamic linker */

Loading…
Cancel
Save