[Mingw-w64-public] unparking cores on windows

2014-03-29 Thread Jim Michaels
if you are doing parallel builds, this might be fore you. http://jesusnjim.com/pc-repair/speed-up/maximize-cpu-performance-disable-core-parking.html   - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com (my

[Mingw-w64-public] statically linking - need more detail

2014-03-29 Thread Jim Michaels
I know how to statically link in the runtime, but not the stdc++ lib. I want to make a monolithic exe. -static-libgcc -lgcc but what else do I put in? thanks.   - Jim Michaels jmich...@yahoo.com j...@renewalcomputerservices.com http://RenewalComputerServices.com http://JesusnJim.com

Re: [Mingw-w64-public] statically linking - need more detail

2014-03-29 Thread Ivan Garramona
I think -static is what you're looking for. 2014-03-29 16:28 GMT-03:00 Jim Michaels jmich...@yahoo.com: I know how to statically link in the runtime, but not the stdc++ lib. I want to make a monolithic exe. -static-libgcc -lgcc but what else do I put in? thanks. - Jim

Re: [Mingw-w64-public] statically linking - need more detail

2014-03-29 Thread Jim Michaels
how does -static differ from -statlc-libgcc? when compiling to .o files, -static is a problem isn't it? or not? with -static, what happens when you combine with -lkernel32? does it still use the kernel32.dll, or does it try to statically link in that DLL? not sure I completely understand the