Re: [Mingw-w64-public] binutils 2.37, uint vs. unsigned int

2021-09-23 Thread rubisetcie
I had the same problem when I tried to build binutils 2.37 from their official release branch, I think this specific release tag is broken... In order to build it, either I clone the full git repo of "binutils-gdb" (git clone --depth 1 git://sourceware.org/git/binutils-gdb.git) or I clone to the n

[Mingw-w64-public] binutils 2.37, uint vs. unsigned int

2021-09-22 Thread Kacvinsky, Tom
IN my endeavors to get UCRT versions of the GCC tool chain building, I ran into a problem building binutils 2.37. The particular problem was that rust-demangle.c used uint, and that type is not defined. So what I did to work around the problem is changes uint to unsigned int. I've bounded this o