forked from github/verilator
Fix timescale portability on Arm64 (#3222).
This commit is contained in:
parent
ca09f73446
commit
293a5f402b
1
Changes
1
Changes
@ -35,6 +35,7 @@ Verilator 4.215 devel
|
|||||||
* Fix $fopen etc on integer arrays (#3214). [adrienlemasle]
|
* Fix $fopen etc on integer arrays (#3214). [adrienlemasle]
|
||||||
* Fix $size on dynamic strings (#3216).
|
* Fix $size on dynamic strings (#3216).
|
||||||
* Fix %0 format on $value$plusargs (#3217).
|
* Fix %0 format on $value$plusargs (#3217).
|
||||||
|
* Fix timescale portability on Arm64 (#3222).
|
||||||
|
|
||||||
|
|
||||||
Verilator 4.214 2021-10-17
|
Verilator 4.214 2021-10-17
|
||||||
|
@ -333,7 +333,8 @@ typedef signed __int32 ssize_t; ///< signed size_t; returned from read()
|
|||||||
# include <stdint.h> // Linux and most flavors
|
# include <stdint.h> // Linux and most flavors
|
||||||
# include <sys/types.h> // __WORDSIZE
|
# include <sys/types.h> // __WORDSIZE
|
||||||
# include <unistd.h> // ssize_t
|
# include <unistd.h> // ssize_t
|
||||||
typedef char vlsint8_t; ///< 8-bit signed type
|
// Arm64 gcc 9.3.0 defaults to unsigned char, not signed char
|
||||||
|
typedef signed char vlsint8_t; ///< 8-bit signed type
|
||||||
typedef uint8_t vluint8_t; ///< 8-bit unsigned type
|
typedef uint8_t vluint8_t; ///< 8-bit unsigned type
|
||||||
typedef short vlsint16_t; ///< 16-bit signed type
|
typedef short vlsint16_t; ///< 16-bit signed type
|
||||||
typedef uint16_t vluint16_t; ///< 16-bit unsigned type
|
typedef uint16_t vluint16_t; ///< 16-bit unsigned type
|
||||||
|
Loading…
Reference in New Issue
Block a user