Questions tagged [gcc4.5]

Version 4.5.x of the GNU Compiler Collection. The C compiler is the standard compiler for Linux (but modern versions of Linux do not use version 4.5.x). The compiler collection supports many other languages and platforms too.

Version 4.5.0 was released on 2010-04-14. Version 4.5.4 was released on 2012-07-02.

See also:

4 questions
2
votes
1 answer

Compilation error (ld: cannot find libmvec_nonshared.a,libmvec.so.1) while using Installed GCC-4.5.3

Unable to print traceback or stackdump using GCC-4.8.5 as starting with GCC version 4.6, the default setting has been changed to -fomit-frame-pointer. Read in the internet like the default can be reverted to -fno-omit-frame-pointer by configuring…
2
votes
0 answers

Boost log error

Hi all! I try to build with gcc 4.5 application which is used boost log (boost 1.53). And I got the following error: In file included from Modules/3rdParty/Boost/Include/boost/log/common.hpp:27:0, from…
1
vote
1 answer

Simulating nullptr & nullptr_t for GCC 4.5.3

Due to some legacy reasons I'm stuck with MIPS-GCC 4.5.3. But the code which I'm trying to compile uses C++11 nullptr & nullptr_t heavily which is a missing feature in GCC 4.5.3. After some googling & getting into the usage I ended up creating a…
Arunprasad Rajkumar
  • 1,374
  • 1
  • 15
  • 31
0
votes
1 answer

error: ‘template’ (as a disambiguator) is only allowed within templates

I have following definitions: typedef boost::multi_index_container< ModelPtr, boost::multi_index::indexed_by< boost::multi_index::sequenced >, // to keep order of inserting …
user2301299
  • 529
  • 1
  • 5
  • 15