mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
* support.h: Use _WIN32 instead of __WIN32__. Also add defs for
SIGTRAP and SIGQUIT for _WIN32.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Fri Dec 20 11:04:05 1996 Stu Grossman (grossman@critters.cygnus.com)
|
||||||
|
|
||||||
|
* support.h: Use _WIN32 instead of __WIN32__. Also add defs for
|
||||||
|
SIGTRAP and SIGQUIT for _WIN32.
|
||||||
|
|
||||||
Thu Dec 19 14:07:27 1996 Ian Lance Taylor <ian@cygnus.com>
|
Thu Dec 19 14:07:27 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* gencode.c (build_instruction) [MUL]: Cast operands to word64, to
|
* gencode.c (build_instruction) [MUL]: Cast operands to word64, to
|
||||||
|
@ -30,9 +30,11 @@
|
|||||||
architectures if desired. */
|
architectures if desired. */
|
||||||
|
|
||||||
/* Control via a build boolean for the moment */
|
/* Control via a build boolean for the moment */
|
||||||
#if defined(__GNUC__) || defined(__WIN32__)
|
#if defined(__GNUC__) || defined(_WIN32)
|
||||||
|
|
||||||
#ifdef __WIN32__
|
#ifdef _WIN32
|
||||||
|
#define SIGTRAP 5
|
||||||
|
#define SIGQUIT 3
|
||||||
typedef signed __int64 word64;
|
typedef signed __int64 word64;
|
||||||
typedef unsigned __int64 uword64;
|
typedef unsigned __int64 uword64;
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user