Re: [Mingw-w64-public] Syber Terrorist, please help!!

2013-11-09 Thread Incongruous
@lists.sourceforge.net Subject: Re: [Mingw-w64-public] Syber Terrorist, please help!! Please leave and take care that the door doesn't hit you on the way out. On Fri, Nov 8, 2013 at 10:41 PM, Incongruous incongru...@outlook.com wrote: My oh my, you are one of them, aren't you. Wait, what about MinGW

Re: [Mingw-w64-public] Syber Terrorist, please help!!

2013-11-09 Thread Incongruous
Ah! You are one of them!! I am subscribing RIGHT NOW!! -Original Message- From: JonY Sent: Saturday, November 09, 2013 9:02 AM To: mingw-w64-public@lists.sourceforge.net Subject: Re: [Mingw-w64-public] Syber Terrorist, please help!!

Re: [Mingw-w64-public] Syber Terrorist, please help!!

2013-11-09 Thread Incongruous
with discussing political questions on a technical mailing list? Best regards, Wolfgang Am 09.11.13 14:52, schrieb Incongruous: Who are you people? It looks that this is one of those Trojan building groups associated with Google. I would like the list manager to response to this message

[Mingw-w64-public] Syber Terrorist, please help!!

2013-11-08 Thread Incongruous
Please help me, a terrorist group calling themselves Google has invaded my computer. Every time I run IE11 it displays the web page of this abusive organization. Is there a way that Microsoft could provide some sort of protection against this kind of threat? Is there a way to stop this

Re: [Mingw-w64-public] Syber Terrorist, please help!!

2013-11-08 Thread Incongruous
!! On 11/8/13, Incongruous incongru...@outlook.com wrote: Please help me, a terrorist group calling themselves Google has invaded my computer. Every time I run IE11 it displays the web page of this abusive organization. Is there a way that Microsoft could provide some sort of protection against

[Mingw-w64-public] Press any key to continue...

2013-11-06 Thread Incongruous
I would like to remove the ‘Press any key to continue...’ from the console when using Code::Blocks, anyone?-- November Webinars for C, C++, Fortran Developers Accelerate application performance with scalable programming

[Mingw-w64-public] USING u16string, HOW 2?

2013-11-01 Thread Incongruous
#include string #include iostream int main(){ std::string s(string); std::cout s std::endl; std::u16string u16s(ustring); std::cout u16s std::endl; std::cin.get(); return 0; } The above code gives me the following errors, am I using u16string correctly? Thanks in advance!!

[Mingw-w64-public] FROM std::string TO 'const std::wchar_t*'

2013-10-31 Thread Incongruous
Does anyone know of a way to convert a string to a 'const wchar_t*' I need this conversion for the 3rd parameter in MessageBox(...). MessageBox(NULL, apstr.c_str(), // Thius works (const wchar_t*)this-getMessage().c_str(),// getMessage() returns a std:string, it does

Re: [Mingw-w64-public] to test for MinGW64

2013-10-16 Thread Incongruous
Thanks everyone. From: Incongruous Sent: Tuesday, October 15, 2013 6:06 AM To: MinGW-64 Mailinglist Subject: [Mingw-w64-public] to test for MinGW64 I would like to test for MinGW64 to include or exclude some code; something like: #ifdef MinGW64 doThis(); #endif #ifdef __MSV__ doSomthingElse

[Mingw-w64-public] Which compiler should I use

2013-10-05 Thread Incongruous
groups, and succeed. Thanks to all for the help. I am glad that my ignorance sparked a conversation that has gained an entry to the FAQs. From: Jon Sent: Friday, October 04, 2013 9:52 PM To: mingw-w64-public Subject: Re: [Mingw-w64-public] Which compiler should I use Heh heh, Incongruous

Re: [Mingw-w64-public] MinGW64\bin... 32/64 bits compier?

2013-09-30 Thread Incongruous
@lists.sourceforge.net Subject: Re: [Mingw-w64-public] MinGW64\bin... 32/64 bits compier? 2013/9/30 Incongruous incongru...@outlook.com In the MinGW64\bin folder, there are two entries for the g++ compiler and ..\bin\g++.exe and ..\bin\x86_64-w64-mingw32-g++.exe, I have assumed

Re: [Mingw-w64-public] mingw-w64 v3 release calling for testers

2013-09-14 Thread Incongruous
JonY, just to let you know that your emails come as an attachment in not in the body of the email. Sorry :) -Original Message- From: JonY Sent: Friday, September 13, 2013 9:39 PM To: mingw-w64-public@lists.sourceforge.net Subject: Re: [Mingw-w64-public] mingw-w64 v3 release calling for

Re: [Mingw-w64-public] it does not have memory

2013-09-09 Thread Incongruous
Subject: Re: [Mingw-w64-public] it does not have Hello Incongruous! On Sun, Sep 8, 2013 at 6:52 PM, Incongruous inc...@lookout.com wrote: I was looking at C:\MinGW64\x86_64-w64-mingw32\include and it does not have memory, In my installation, memory is in: [some sort of mingw-w64 root]\mingw64

[Mingw-w64-public] it does not have memory

2013-09-08 Thread Incongruous
I was looking at C:\MinGW64\x86_64-w64-mingw32\include and it does not have memory, why?-- Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous

[Mingw-w64-public] what's the diff b/w -std=c++11 and -std=gnu++11

2013-09-07 Thread Incongruous
I am trying to figure out the difference between -std=c++11 and -std=gnu++11. According to: http://gcc.gnu.org/gcc-4.8/cxx0x_status.html “...with the -std=c++11 or -std=gnu++11 compiler options; the former disables GNU extensions.”, my question is, what is it that std=c++11 disables? In other

Re: [Mingw-w64-public] #ifndef or #ifdef, that is the dilemma

2013-09-06 Thread Incongruous
: Re: [Mingw-w64-public] #ifndef or #ifdef, that is the dilemma Op 6-sep.-2013 21:51 schreef Incongruous incongru...@outlook.com het volgende: Yes, I am using g++. __cplusplus is defined in stddef and I have specifically #include(ed) that file. I hope that this new info will clear things. I

[Mingw-w64-public] #ifndef or #ifdef, that is the dilemma

2013-09-05 Thread Incongruous
#ifndef __cpluplus std::cout error\n A C++ compiler is required! std::endl; return -1; #endif The above snip says, if __cplusplus has not been defined print “bla bla” and return –1. Which means that if I am using __cplusplus it should NOT print anthing, right? So, am I using the C or

[Mingw-w64-public] Adding my library

2013-09-04 Thread Incongruous
I have a number of folders and classes that I use in all my programs, a library. I would like to add that directory in the path for the compiler to search. https://skydrive.live.com/?cid=1ecc73232b89516a#cid=1ECC73232B89516Aid=1ECC73232B89516A%21115v=3 Thanks in advance

[Mingw-w64-public] The API supported by g++11_64bit

2013-09-04 Thread Incongruous
Hi, is there a C++11 table describing the API supported by g++64? I am having problems getting shared_ptr to work, I wonder if it is supported by GCC-64 8.1.+ tia-- Learn the latest--Visual Studio 2012, SharePoint 2013,

Re: [Mingw-w64-public] The API supported by g++11_64bit

2013-09-04 Thread Incongruous
Thanks for your help. Perhaps it is the way I am using it GNU version is 4.8.1 #include tr1/memory tr1::shared_ptruiexception uex; Is this correct? TIA -Original Message- From: JonY Sent: Wednesday, September 04, 2013 6:25 PM To: mingw-w64-public@lists.sourceforge.net Subject: Re:

[Mingw-w64-public] Qt problem

2013-08-28 Thread Incongruous
It is my understanding that Qt only works with a maximum of 4.6.x release of GCC-32, thus Qt does not do well with MinGW64. If I am mistaken, some enlighten will make me so much very happy; otherwise, I would appreciate if you can tell me of a web page to download the 4.6.x version of

Re: [Mingw-w64-public] Qt problem

2013-08-28 Thread Incongruous
-packages/Qt-Builds/ https://github.com/Alexpux/Qt-builds On Wed, Aug 28, 2013 at 5:56 PM, Incongruous incongru...@outlook.com wrote: It is my understanding that Qt only works with a maximum of 4.6.x release of GCC-32, thus Qt does not do well with MinGW64. If I am mistaken, some enlighten

Re: [Mingw-w64-public] Qt problem

2013-08-28 Thread Incongruous
should you want 64-bit and the ability to build it all yourself: http://sourceforge.net/projects/mingwbuilds/files/external-binary-packages/Qt-Builds/ https://github.com/Alexpux/Qt-builds On Wed, Aug 28, 2013 at 5:56 PM, Incongruous incongru...@outlook.com wrote: It is my understanding that Qt only

[Mingw-w64-public] I have just downloaded MinGW64

2013-08-20 Thread Incongruous
I have just downloaded MinGW64. It comes in a .gz file, so I uncompressed the file but it is all raw files. Am I supposed to compile MinGW64 or I just copy the files to C:\MinGW64 and then reset the toolchain for the IDE? TIA

[Mingw-w64-public] alias in Windows

2013-08-20 Thread Incongruous
Look, I know this question has nothing to do with either Netbeans or MinGW64, but I cannot think of a better bunch to ask this question. On one hand the directory tree where my applications reside is a bit long and on the other hand I have seen how Wind 7 uses the aliases like %USERPROFILE% as

Re: [Mingw-w64-public] I have just downloaded MinGW64

2013-08-20 Thread Incongruous
MinGW64 2013/8/20 Incongruous incongru...@outlook.com: I have just downloaded MinGW64. It comes in a .gz file, so I uncompressed the file but it is all raw files. Am I supposed to compile MinGW64 or I just copy the files to C:\MinGW64 and then reset the toolchain for the IDE? https