Problem Building SDL Port in windows

Post Reply
User avatar
ZachBacon
Member
Posts: 242
Joined: Tue Mar 27, 2018 9:35 pm

Problem Building SDL Port in windows

Post by ZachBacon »

ok some information to building the SDL Port within windows Via MinGW and Cygwin (both produce same results in error messages)

 

When compiling I get this error (and it is in 2xSaI.cpp)

it's something to do with an Include Header called system.h but it's found in line 34 and 46, the declaration of 'typedef unsigned int u32' (line 46) and line 34 which is related to 46 says 'conflicts with previous declaration typedef uint32_t u32'

 

any suggestion guys how I would possibly go and fix this please

chrono
Junior Member
Posts: 32
Joined: Tue Mar 18, 2008 9:23 pm

Problem Building SDL Port in windows

Post by chrono »

Try to remove

Code: Select all

typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
Post Reply