Re: [Mingw-w64-public] About the recent sourceforge events

2015-06-11 Thread Ivan Garramona
Hi Ruben, i think public repos doesn't have any user limits on bitbucket. -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net

Re: [Mingw-w64-public] Native TLS support

2015-06-08 Thread Ivan Garramona
2015-06-08 10:07 GMT-03:00 Yaron Keren yaron.ke...@gmail.com: Ah yes, for gcc it is required. Have you looked at clang implementation? it support native TLS, it would be really nice if the implementation would be compatible. Yeah it would be nice indeed. Few days ago a tried to build LLD

Re: [Mingw-w64-public] Windows service built with g++ fails to start, but works when built with gcc

2014-10-20 Thread Ivan Garramona
I've tried your sample code here, and it didn't work as well. However, when i added '-static' flag to CFLAGS it worked. So, you have to make a static build, or follow Oscar's advice, and make sure the required DLLs are available.

Re: [Mingw-w64-public] error using PRIu64 in inttypes.h

2014-06-21 Thread Ivan Garramona
Try to define __STDC_FORMAT_MACROS before include inttypes.h. -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems Open Source. Fast.

Re: [Mingw-w64-public] problem with compiler not concatenating strings

2014-06-21 Thread Ivan Garramona
According to the C++11 standard: The macros defined by cinttypes are provided unconditionally. In particular, the symbol __STDC_FORMAT_MACROS, mentioned in footnote 182 of the C standard, plays no role in C++. This checking should be something like: #if !defined(__cplusplus) || (__cplusplus =

Re: [Mingw-w64-public] [Poll] Move to git

2014-05-09 Thread Ivan Garramona
[x] Yes, move to git [ ] No, continue with SVN -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out: #149; 3 signs your SCM is hindering your productivity #149; Requirements for releasing software

Re: [Mingw-w64-public] [Poll] Move to git

2014-05-09 Thread Ivan Garramona
2014-05-09 21:08 GMT-03:00 JonY jo...@users.sourceforge.net: On 5/10/2014 06:51, Ivan Garramona wrote: [x] Yes, move to git [ ] No, continue with SVN Hi, Can you please state your SF ID? I'm new on SourceForge. The ID is: 4590669, My Username is: ivan171

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

2014-03-30 Thread Ivan Garramona
how does -static differ from -statlc-libgcc? -static-libgcc will link only libgcc statically. when compiling to .o files, -static is a problem isn't it? or not? No, it's not. When compiling to .o files, these flags are ignored. with -static, what happens when you combine with

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

2014-03-30 Thread Ivan Garramona
I forgot to say. If you want only libgcc and libstdc++ static, you can use -shared-libgcc -shared-libstdc++. Regards. -- ___ Mingw-w64-public mailing list

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

2014-03-30 Thread Ivan Garramona
Sorry, actually it's -static-libgcc -static-libstdc++. -- ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net

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] Clang Driver and DllMainCRTStartup entry point

2014-01-18 Thread Ivan Garramona
The LoadLibrary API calls the DLL's entry point. You can use it to check if the DLL is working. This simple snippet correctly printed the Hello World from the dll. #include windows.h int main() { LoadLibrary(test.dll); return 0; }

Re: [Mingw-w64-public] there is lib and lib64, how target 32-bit/64-bit?

2014-01-17 Thread Ivan Garramona
You have to use the flags -m32 or -m64 to specify the target. The i686 will target 32bit by default, the same happens with the x86_64, it defaults to 64bit. 2014/1/17 Jim Michaels jmich...@yahoo.com there is lib and lib64, how do I target specific cpu type (32-bit/64-bit)? am using

Re: [Mingw-w64-public] Mingw toolchains and Clang

2014-01-16 Thread Ivan Garramona
2014/1/16 Ruben Van Boxem vanboxem.ru...@gmail.com 2014/1/16 Abir Basak abirba...@gmail.com Long time ago we add possibility to build Clang into mingw-builds scripts. Now we want to provide Clang builds for mingw-w64 toolchains. There are two possibilities that we can do: *1.

Re: [Mingw-w64-public] Setup on a new Windows Machine ... no shell?

2014-01-02 Thread Ivan Garramona
I use MSYS2 http://sourceforge.net/p/msys2/wiki/MSYS2%20installation/here. The base installation comes with a package manager. You can install whatever you need from there. 2014/1/2 Jason Curl jcurln...@arcor.de On 02/01/2014 20:02, Elizabeth Kellner wrote: Hi, I have a new windows 7

Re: [Mingw-w64-public] clang on Windows

2013-12-24 Thread Ivan Garramona
I think Clang svn uses its integrated assembler. But it still needs GCC for linking though. 2013/12/24 Óscar Fuentes o...@wanadoo.es Baruch Burstein bmburst...@gmail.com writes: And if I compile it with MinGW then it uses MinGW's toolchain, no? Correct. Does Clang not have it's own

Re: [Mingw-w64-public] clang on Windows

2013-12-24 Thread Ivan Garramona
2013/12/24 Óscar Fuentes o...@wanadoo.es Ivan Garramona heavenandhell...@gmail.com writes: I think Clang svn uses its integrated assembler. IIRC Clang uses the integrated assembler since a few releases ago. But it still needs GCC for linking though. On Windows, Clang needs MinGW or VS

Re: [Mingw-w64-public] clang on Windows

2013-12-23 Thread Ivan Garramona
You have to compile Clang with MinGW, otherwise Clang will use VS's toolchain. 2013/12/23 Baruch Burstein bmburst...@gmail.com I apologize if this is not the right place for this. If so, letme know and I will not post more questions about clang to here. This question is really targeted