[Mingw-w64-public] [[deprecated]]

2015-07-15 Thread Hotmail (ArbolOne)
C++14 includes the [[deprecated("reason")]] attribute, but in my MinGW-64 with GCC-5.1 it creates a warning saying: warning: 'deprecated' attribute directive ignored [-Wattributes]| How can I find out which features of C++11 and C++14 are available in g++5.1? Thanks--

Re: [Mingw-w64-public] finding the data file

2015-06-18 Thread Hotmail (ArbolOne)
I found the solution, the answer to my problem is getenv("ARBOLONE") Thanks folks -Original Message- From: Max S. Sent: Thursday, June 18, 2015 5:12 PM To: Hotmail (ArbolOne) Cc: MinGW-64 Mailinglist ; gcc-help Mailing List Subject: Re: finding the data file I'm not a w

Re: [Mingw-w64-public] finding the data file

2015-06-18 Thread Hotmail (ArbolOne)
I found the solution, the answer to my problem is getenv("ARBOLONE") Thanks folks -Original Message- From: Hotmail (ArbolOne) Sent: Thursday, June 18, 2015 4:15 PM To: MinGW-64 Mailinglist ; gcc-help Mailing List Subject: [Mingw-w64-public] finding the data file This q

[Mingw-w64-public] finding the data file

2015-06-18 Thread Hotmail (ArbolOne)
directory is like so: D: | Program Files {parent directory} ArbolOne ( folder ) |__ Sound ( folder ) |_Sounds.exe In my application the code looks like this: player->Play(L"D:\\Program Files\\ArbolOne\\Sound\\KimPossible.wav"); This works perfect on my desktop, but the directo

Re: [Mingw-w64-public] [[ noreturn ]]

2015-05-29 Thread Hotmail (ArbolOne)
Thank you, I did not understand the purpose of the attribute, but now it is clear. -Original Message- From: Martin Sebor Sent: Friday, May 29, 2015 5:21 PM To: Hotmail (ArbolOne) ; gcc-help Mailing List ; MinGW-64 Mailinglist Subject: Re: [[ noreturn ]] On 05/29/2015 03:03 PM, Hotmail

Re: [Mingw-w64-public] [[ noreturn ]]

2015-05-29 Thread Hotmail (ArbolOne)
urceforge.net/projects/mingw-w64/ MinGW-w64 settings: Version 4.9.2 or later Architecture: x86_64 Threads: win32 Exception: seh Please let me know if you need anything else. Thanks a whole bunch for the help, I really appreciated. -Original Message- From: Martin Sebor Sent: Friday

[Mingw-w64-public] [[ noreturn ]]

2015-05-28 Thread Hotmail (ArbolOne)
Hi! When using this the [[ noreturn ]] attribute like this: - void f [[ noreturn ]] (); - I get a warning that reads: warning: 'noreturn' function does return ( http://www.stroustrup.com/C++11FAQ.html#attributes ) What can I do to remove this warning? Thanks ---

[Mingw-w64-public] GCCG with C++11

2015-05-28 Thread Hotmail (ArbolOne)
If I am not mistaken _MSC_VER >= 1600 is the version that started implementing C++11. So, I test for that version of the compiler in my code, i.e. #ifdef _MSC_VER >= 1600 #endif I would like to do the same for __GNUG__, but what version of g++ started implementing C++11? Thanks

Re: [Mingw-w64-public] I am in a in-path

2015-05-28 Thread Hotmail (ArbolOne)
es occur, most often when one gets as old as I am, he he he. I really appreciate your dazzling observations, please, keep up the good work!! -Original Message- From: Jonathan Wakely Sent: Thursday, May 28, 2015 5:22 AM To: Hotmail (ArbolOne) Cc: gcc-help Mailing List ; MinGW-64 Mailingl

[Mingw-w64-public] I am in a in-path

2015-05-27 Thread Hotmail (ArbolOne)
I am in a in-path. I wrote a class that handles exceptions, namespace abc{ class Exception{...}; // This is my very large Exception class } The way I'd like to use this class is by creating a smart pointer to it in each newly created class, i.e. namespace abc{ class m_class001{

[Mingw-w64-public] how do I remove this window

2015-05-20 Thread Hotmail (ArbolOne)
When running a Win32 program, I get a prompt window, how do I remove this window? -- One dashboard for servers and applications across Physical-Virtual-Cloud Widest out-of-the-box monitoring support with 50+ applicatio

[Mingw-w64-public] io_base& operator<<( bool& )

2011-01-08 Thread ArbolOne
Hey kids, I know that you will be able to spot the mistake and that it would sound stupid to you, but I am tired and I cannot find where the problem lies. The code bellow was working when using MinGW-32bit, but now that I have upgraded to MinGW-64bit... I am having problems. No! Wait, I think t

[Mingw-w64-public] std::isalpha

2011-01-07 Thread ArbolOne
Glib::ustring s("C/C++"); std::locale loc; for (Glib::ustring::iterator it=s.begin(); it!=s.end(); ++it) { if (std::isalpha(*it,loc)) // <<<=== Here is the problem !! { std::cout << "it is alpha" << std::endl; } I am having serious problem trying to

[Mingw-w64-public] Gtkmm64 issues

2010-10-09 Thread ArbolOne
I would like to submit an issue. In my Win7-64, I have uncompressed, setup (manually due to the non existence of a Installer, yet) the following applications: [1]http://sourceforge.net/projects/mingw-w64/files/Toolchains targetting Win64/ [2]http://arbur.net/gnome/gtkmm/gtkmm-2.20.3-win64.7z

Re: [Mingw-w64-public] MSYS-64

2010-09-17 Thread ArbolOne
Ok, folks. Apparently no one else is jumping on the Build MSYS under 64bit MSWin waggon. So, let us start with the project. Does any of you know where to get the latest source code? MSYS-64 Development Team ~~ Teemu Bidski NightStrike Luis Lavena Earnie Earnie ArbolOne

[Mingw-w64-public] MSYS-64 team

2010-09-17 Thread ArbolOne
to:bid...@bigpond.net.au>> NightStrike mailto:nightstr...@gmail.com>> Luis Lavena mailto:luislav...@gmail.com>> Earnie mailto:ear...@users.sourceforge.net>> Earnie mailto:ear...@users.sourceforge.net>> ArbolOne mailto:arbol...@gmail.com>> Should you wish to be remove from t

Re: [Mingw-w64-public] Win7-64 - TDM-GCC & C::B

2010-09-04 Thread ArbolOne
> > Regards > Bidski > > -Original Message- From: ArbolOne > Sent: Friday, September 03, 2010 11:55 PM > To: Mingw-w64-public@lists.sourceforge.net > Subject: [Mingw-w64-public] Win7-64 - TDM-GCC & C::B > > I just got a new Win7-64; I proceeded to d

[Mingw-w64-public] Win7-64 - TDM-GCC & C::B

2010-09-03 Thread ArbolOne
I just got a new Win7-64; I proceeded to download/install TDM-GCC Compiler Suite for Windows, having done that I continued with the installation of CodeBlocks. I am currently trying to compile a simple "Hello" program, but to no avail. I get this error message: == "testingCB - Debug" uses

[Mingw-w64-public] MSYS-64

2010-08-23 Thread ArbolOne
Does anyone know if there is a msys-64 and where to get it from? Thanks folks -- Sell apps to millions through the Intel(R) Atom(Tm) Developer Program Be part of this innovative community and reach millions of netbook u

[Mingw-w64-public] Installing MinGW64

2010-08-20 Thread ArbolOne
Hey kids! Ok, I finally finish installing XP64 now I need to install MinGW64 as well. For this task I have found three downloads: 1) mingw-w64-v1.0-snapshot-20100818 2) mingw_dgn_media-w64-bin-x86_64-20100808 3) mingw_dgn_basic-w64-bin-x86_64-20100808 They all contain different files their ide