FYI: i rebuilt mariadb 5.5.25 on gcc 4.7.1 on our cauldron installation... no problems here...
> > Hi! > >>>>>> "Rich" == Rich Prohaska <[email protected]> writes: > > Rich> Hello, > Rich> Yes, your suggestion to define MY_CONTEXT_USE_UCONTEXT when > compiling > Rich> a release build with gcc 4.7.1 worked. Interestingly, this patch > was > Rich> not required with gcc 4.7.1 debug build. BTW, there are a LOT of > Rich> compiler warnings, one of which is: > > Rich> sql/log.h:480:3: warning: access declarations are deprecated in > favour > Rich> of using-declarations; suggestion: add the âusingâ keyword > Rich> [-Wdeprecated] > > Never seen the above. I will try to fix it by changing the code for > this line. > > The code is: > > public: > MYSQL_LOG::generate_name; > MYSQL_LOG::is_open; > > Changing these to: > > public: > using MYSQL_LOG::generate_name; > using MYSQL_LOG::is_open; > > Should fix the issue. > > If there is any other code that generates warnings in MariaDB, please > try to fix them and give us a patch or just send me the warnings so > that I can try to fix them! > > Regards, > Monty > > _______________________________________________ > Mailing list: https://launchpad.net/~maria-developers > Post to : [email protected] > Unsubscribe : https://launchpad.net/~maria-developers > More help : https://help.launchpad.net/ListHelp > _______________________________________________ Mailing list: https://launchpad.net/~maria-developers Post to : [email protected] Unsubscribe : https://launchpad.net/~maria-developers More help : https://help.launchpad.net/ListHelp

