1
mirror of https://github.com/hashcat/hashcat synced 2025-04-02 19:05:29 +02:00

Do not use ulong. It causes the 32 bit compilation to fail

This commit is contained in:
jsteube 2019-03-25 21:04:21 +01:00
parent 6e57028912
commit 0a8c7fab1c
2 changed files with 16 additions and 8 deletions
OpenCL
include

@ -6,10 +6,17 @@
#ifndef _INC_TYPES_H #ifndef _INC_TYPES_H
#define _INC_TYPES_H #define _INC_TYPES_H
#ifdef KERNEL_STATIC
typedef uchar u8; typedef uchar u8;
typedef ushort u16; typedef ushort u16;
typedef uint u32; typedef uint u32;
typedef ulong u64; typedef ulong u64;
#else
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
#endif
//testwise disabled //testwise disabled
//typedef u8 u8a __attribute__ ((aligned (8))); //typedef u8 u8a __attribute__ ((aligned (8)));
@ -30,11 +37,12 @@ typedef u64 u64a;
#define CONCAT(a, b) a##b #define CONCAT(a, b) a##b
#define VTYPE(type, width) CONCAT(type, width) #define VTYPE(type, width) CONCAT(type, width)
// emulated is always VECT_SIZE = 1
#if VECT_SIZE == 1 #if VECT_SIZE == 1
typedef uchar u8x; typedef u8 u8x;
typedef ushort u16x; typedef u16 u16x;
typedef uint u32x; typedef u32 u32x;
typedef ulong u64x; typedef u64 u64x;
#else #else
typedef VTYPE(uchar, VECT_SIZE) u8x; typedef VTYPE(uchar, VECT_SIZE) u8x;
typedef VTYPE(ushort, VECT_SIZE) u16x; typedef VTYPE(ushort, VECT_SIZE) u16x;

@ -46,10 +46,10 @@ typedef int64_t i64;
// import types from opencl // import types from opencl
typedef uint8_t uchar; //typedef uint8_t uchar;
typedef uint16_t ushort; //typedef uint16_t ushort;
typedef uint32_t uint; //typedef uint32_t uint;
typedef uint64_t ulong; //typedef uint64_t ulong;
#include "inc_types.h" #include "inc_types.h"