Re: [Mingw-w64-public] Error building gcc-5.1.0

2015-04-25 Thread Kai Tietz
Please report this upstream. This seems o be a but in x*intrin.h header. Regards, Kai 2015-04-24 7:15 GMT+02:00 niXman : > > Hi, > > I'm trying to build MinGW-W64(i686-sjlj) based on GCC-5.1.0 and faced > with this errors: > http://pastebin.com/U9Lm8saL > > but x86_64-sjlj with the same configur

Re: [Mingw-w64-public] AddClipboardFormatListener missing from libuser32.a

2015-04-25 Thread Kai Tietz
Thank you for your work. Patch is ok. Please apply Kai 2015-04-25 22:19 GMT+02:00 LRN : > On 25.04.2015 10:04, Kai Tietz wrote: >> 2015-04-25 6:41 GMT+02:00 LRN: >>> On 24.04.2015 3:00, LRN wrote: We have the prototype in the header (guarded as Vista-or-later), but no stub in th

Re: [Mingw-w64-public] std::thread and memory leaks

2015-04-25 Thread Kai Tietz
Hi LRN. Thanks. Patch is ok. Please go ahead and apply. Kai 2015-04-24 0:54 GMT+02:00 LRN : > On 22.04.2015 14:37, Yaron Keren wrote: >> 2015-04-22 14:15 GMT+03:00 LRN: >>> On 22.04.2015 14:02, Óscar Fuentes wrote: LRN writes: > Here's a patch to fix this. > It does solve the

[Mingw-w64-public] Re: AddClipboardFormatListener missing from libuser32.a

2015-04-25 Thread LRN
On 25.04.2015 10:04, Kai Tietz wrote: > 2015-04-25 6:41 GMT+02:00 LRN: >> On 24.04.2015 3:00, LRN wrote: >>> We have the prototype in the header (guarded as Vista-or-later), but no >>> stub in >>> the import library. I don't know how to fix that (.def files for implibs >>> seem >>> to be special

Re: [Mingw-w64-public] msvcrt import library interface

2015-04-25 Thread Kai Tietz
msvcrt.def contains just the symbols available on oldest supported OS. This is in our case XP. All other symbols - eg we do here some extensions for secured-api functions in our crt - need to be emulated. Regards, Kai 2015-04-18 7:37 GMT+02:00 LRN : > Should libmsvcrt.a provide the most recent i

[Mingw-w64-public] Re: AddClipboardFormatListener missing from libuser32.a

2015-04-25 Thread LRN
On 25.04.2015 11:44, LRN wrote: > On 25.04.2015 11:23, LRN wrote: >> On 25.04.2015 10:04, Kai Tietz wrote: >>> 2015-04-25 6:41 GMT+02:00 LRN wrote: On 24.04.2015 3:00, LRN wrote: > We have the prototype in the header (guarded as Vista-or-later), but no > stub in > the import libra

[Mingw-w64-public] Re: AddClipboardFormatListener missing from libuser32.a

2015-04-25 Thread LRN
On 25.04.2015 11:23, LRN wrote: > On 25.04.2015 10:04, Kai Tietz wrote: >> 2015-04-25 6:41 GMT+02:00 LRN wrote: >>> On 24.04.2015 3:00, LRN wrote: We have the prototype in the header (guarded as Vista-or-later), but no stub in the import library. I don't know how to fix that (.def f

[Mingw-w64-public] Re: AddClipboardFormatListener missing from libuser32.a

2015-04-25 Thread LRN
On 25.04.2015 10:04, Kai Tietz wrote: > 2015-04-25 6:41 GMT+02:00 LRN wrote: >> On 24.04.2015 3:00, LRN wrote: >>> We have the prototype in the header (guarded as Vista-or-later), but no >>> stub in >>> the import library. I don't know how to fix that (.def files for implibs >>> seem >>> to be sp

Re: [Mingw-w64-public] Building GCC 5.1 with --enable-host-shared --enable-languages=jit --disable-bootstrap

2015-04-25 Thread Kai Tietz
Hi, I have not tried to build jit option for windows right now. Nevertheless you shouldn't remove the c-languages from bootstrap as modern gcc requires at least c++ for doing a full bootstrap. Additionally I would recomment to specify explicit --disable-multilib option, as this could otherwise eas

Re: [Mingw-w64-public] AddClipboardFormatListener missing from libuser32.a

2015-04-25 Thread Kai Tietz
Hi LRN, your patch is fine beside some nits. Why are you removing function-entries like GetGUIThreadInfo@8, SetSystemTimer@16, ChangeDisplaySettingsW@8, EditWndProc@16, etc? Please take care not to remove exports of older variants. Otherwise patch is ok with re-adding those removed symbols. Th