Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
240 views

C-callback to function template: explicitly instantiate template

Premise I’m using a C library (from C++) which provides the following interface: void register_callback(void* f, void* data); void invoke_callback(); Problem Now, I need to register a function ...
9
votes
1answer
254 views

are gcc-3 binaries compatible with gcc-4

I have a static library that has been compiled with gcc 3.4.3 .I would like to use this in code that will now be compiled with gcc-4. I've read vaguely that gcc-3 and gcc-4 binaries are not ...
8
votes
2answers
562 views

How to set gcc 4.3 default specs file?

When using gcc version 4.3.2, I see how to generate specs using: > /usr/local/gcc-4.3.2/bin/gcc -v Using built-in specs Now changing to the same directory as libgcc.: > cd ...
8
votes
3answers
222 views

Unexpected const reference behavior

#include <iostream> class A { public: A(){ cerr << "A Constructor" << endl; } ~A(){ cerr << "A Destructor" << endl; } A(const A &o){ cerr ...
7
votes
2answers
110 views

why does it cause termination if I try to throw something inside a catch block in C++

I have the following C++ code and it gives me a surprise. The problem is that if I throw something except re-throw inside the catch block, the program will be terminated by calling abort and give the ...
7
votes
4answers
2k views

(Not So) Silly Objective-C inheritance problem when using property - GCC Bug?

Update - Many people are insisting I need to declare an iVar for the property. Some are saying not so, as I am using Modern Runtime (64 bit). I can confirm that I have been successfully using ...
6
votes
4answers
2k views

Help to install imagemagick thro homebrew

I'm trying to get install on OSX Lion but something not working as expected. -> brew install imagemagick /usr/local/git/bin/git ==> Cloning https://github.com/adamv/ImageMagick.git Cloning ...
5
votes
5answers
2k views

memory alignment within gcc structs

I am porting an application to an ARM platform in C, the application also runs on an x86 processor, and must be backward compatible. I am now having some issues with variable alignment. I have read ...
4
votes
2answers
157 views

Multiple copy constructors specified

With Visual C++ 2010, I have a class like this: class MyClass{ public: MyClass(){} MyClass(MyClass &){/*...*/} //A MyClass(const MyClass &){/*...*/} //B ...
4
votes
3answers
85 views

Linking multiple C source files

I'm on gentoo linux with GCC 4.4.5 installed. I can compile and link such program without any errors using gcc main.c -o main, and the command ./main returns result correctly. [main.c] #include ...
4
votes
1answer
305 views

Interface reference to local implementation

Please consider the following code: struct A { virtual ~A() {} virtual int go() = 0; }; struct B : public A { int go() { return 1; } }; struct C : public B { int go() { return 2; } }; int ...
4
votes
2answers
247 views

Forcing GCC 4.x to treat -Wreturn-type as an error without enabling -Werror?

Suppose we have the following code: #if !defined(__cplusplus) # error This file should be compiled as C++ #endif #include <stdio.h> #include <string> //#define USE_CXX_CLASS #ifdef ...
4
votes
3answers
452 views

C++: nested class of a template class

Consider the following code: template < typename T > struct A { struct B { }; }; template < typename T > void f( typename A<T>::B ) { } int main() { A<int>::B x; ...
4
votes
1answer
731 views

What exactly does -march=native do?

Gentoo Wiki told me the following: Warning: GCC 4.2 and above support -march=native. -march=native applies additional settings beyond -march, specific to your CPU. Unless you have a specific ...
4
votes
1answer
3k views

gcc 4.5 installation problem under ubuntu

I tried to install gcc 4.5 on ubuntu 10.04 but failed. Here is a compile error that I don't know how to solve. Is there anyone successfully install the latest gcc on ubuntu? Following is my steps and ...
4
votes
2answers
4k views

Cross-compile Autotools-based Libraries for Official iPhone SDK

Background I am writing a program that targets several different phones, including the iPhone. The program depends on several thirdparty libraries. I am having difficulty cross-compiling these ...
3
votes
3answers
87 views

gcc4 template bug or more likely id10t error

The following code compiles just fine under Visual Studio but neither gcc 4.6.2 or 4.7 can handle it. It seems to be valid but gcc can seem to resolve the difference between const and non const ...
3
votes
1answer
84 views

GCC 4.5 vs 4.4 linking with dependencies

I am observing a difference when trying to do the same operation on GCC 4.4 and GCC 4.5. Because the code I am doing this with is proprietary, I am unable to provide it, but I am observing a similar ...
3
votes
6answers
63 views

Can't figure out why this trimming function won't work correctly

=============================================================================== void trim(const char * orig, char * dest) { size_t front = 0; size_t end = sizeof(orig) - 1; size_t counter ...
3
votes
1answer
613 views

No gcc 4.2 compiler option in Xcode 4?

In my Xcode 4 installation, I only have 2 compiler options: Apple LLVM compiler 3.0 GCC LLVM 4.2 In many Xcode examples I have seen that GCC 4.2 is shown as a third option, but this simply isn't ...
3
votes
1answer
172 views

dSYM files for release builds

Do .dSYM resources contain any other information except DWARF information? I have created a release build of an app. Now if I run dwarfdump on it, it says the executable has no DWARF info (says it's ...
3
votes
4answers
202 views

No useful and reliable way to detect integer overflow in C/C++? [closed]

Possible Duplicate: Best way to detect integer overflow in C/C++ No, this is not a duplicate. The issue is the same but the question is different. The gcc compiler can optimize away an ...
3
votes
2answers
2k views

Why do I get cc1plus: error: unrecognized command line option “-arch”?

/usr/bin/make -f nbproject/Makefile-Debug.mk SUBPROJECTS= .build-conf /usr/bin/make -f nbproject/Makefile-Debug.mk dist/Debug/GNU-MacOSX/cppapplication_1 mkdir -p build/Debug/GNU-MacOSX rm -f ...
3
votes
2answers
428 views

some pointer to understanding GCC source code

I'm student working on optimizing GCC for multi-core processor. I tried going through the source code, it is difficult to follow through it since I need to add some code to the back end. Can anyone ...
3
votes
3answers
614 views

Why isn't the gcc 4.x.x series compilers installed by MinGW by default?

Currently, MinGW's only installs the 3.x.x series of the gcc compiler by default. However, it looks like the 4.x.x series of compilers have been out for some time, and as others have mentioned, it ...
2
votes
3answers
46 views

Tools and methods to identify/prevent static buffer overruns

Are there any tools or methods that can identify buffer overruns in statically defined arrays (ie. char[1234] rather than malloc(1234))? I spent most of yesterday tracking down crashes and odd ...
2
votes
2answers
84 views

How to make gcc uses march=native as default?

Is there a way to change the specs file so that it will pass -march=native if nothing is specified in command line? Related things in the default specs file is: *cc1: %(cc1_cpu) *cc1_cpu: ...
2
votes
1answer
47 views

Can I compile universal code using Macports' GCC?

Since Apple do not support GCC 4.6 or GCC 4.7, I just switched to MacPorts' build of GCC 4.6/4.7. However, I had a problem to build my code in "Universal" architecture. Traditionally, I'd do g++ ...
2
votes
1answer
216 views

C++0x: thread, gcc or my error?

Is it GCC 4.7.0 or is it me? What do I do wrong? This throws an std::system_error "operation not permitted" exception: struct DumbFib { size_t operator()(size_t n) { return fib(n); } static ...
2
votes
1answer
234 views

Boost multi_index_container, get index by tag results in compiler error

So, I'm trying to dabble with the multi_index_container and am having a rather strange compiler error, first here is the simplest example to demonstrate my problem (I'm probably missing something ...
2
votes
2answers
128 views

Forcing VS2008 to issue a GCC warning similar to “warning: comparison between signed and unsigned integer expressions”

Along the same lines as to what was described in conversion to ‘size_t’ from ‘int’ may change the sign of the result - GCC , C, I would instead like to insure that the warning I receive under GCC ...
2
votes
2answers
567 views

What is wrong with this use of offsetof?

I'm compiling some c++ code in MinGW GCC 4.4.0, and getting warnings with the following form... warning: invalid access to non-static data member '<membername>' of NULL object warning: ...
2
votes
1answer
143 views

How to use gcc 4.5?

http://gcc.gnu.org/install/binaries.html This page has the binaries. Which one would work for Fedora?
2
votes
2answers
170 views

Why gcc4 warn and how to avoid it

I have a function declared as: void event_add_card (EventAddr addr, EventType type, unsigned char card); and union typedef union EventData { float money; /**< money info ...
1
vote
0answers
37 views

Calling gcc by PHP on Redhat

I am calling gcc through PHP by means of exec command. Then gcc gives weird errors such as "stddef.h cannot be found". PHP is running under username "oracle". That is, when we call "whoami" through a ...
1
vote
2answers
253 views

make_shared create std::shared_ptr? gcc 4.6.2

i'm using gcc 4.6.2. I'm trying to push_back in a vector shared_ptr's. But gcc gives me everytime an error. Here my codelines: std::vector< std::tr1::shared_ptr<Process> > procs; ...
1
vote
1answer
138 views

static constexpr method implementation causes gcc bug?

Here is a piece of code: class Class { static constexpr int getBug(); }; constexpr int Class::getBug() { return 0; } What I basically do is declaring a static constepxr method in class ...
1
vote
2answers
338 views

Installing SystemC 2.2.0, compilation with GCC 4.6 and package for Fedora

How to install SystemC on Fedora 15? Problems: no RPM package (licensing problems) does not compile with 4.6 even with -fpermissive (clang doesn't compile your modules)
1
vote
1answer
105 views

Undefined Symbols when linking against a mixed C and Fortran in OS X 10.6.4

I'm trying to compile a code (not mine) that consists of mixed Fortran and C source files, which are compiled into a library. This library can either be linked against directly, or (more usefully) ...
1
vote
2answers
139 views

Linking to stdc++ with CMake and GCC 4.1.2

I am developing a library and need to make sure it compiles with 4.1.2(I know, it brings me no pleasure). So on a Fedora 14 Machine I downloaded, compiled and installed GCC41. Now in CMake I only ...
1
vote
2answers
54 views

Can't define templated types for my LruCache class

#include <map> #include <list> template < typename K, typename V> class LruCache { private: typedef std::pair< K, V > EntryPair; typedef std::list< EntryPair > ...
1
vote
0answers
112 views

GCC 4.5, boost and throw_error_already_set

Using Python 2.2.3, Boost 1.46 and this trivial extension module: #include <Python.h> #include <boost/python.hpp> using namespace boost::python ; using namespace boost; class PyTest { ...
1
vote
2answers
333 views

How to Apply a GCC Patch

I'm trying to apply this patch to GCC on MinGW to get it to compile GDC 2, but I don't know how. (I'm still new to the internals of GCC, and even to *nix tools in general.) I know there's the patch ...
1
vote
0answers
310 views

GCC -O2 with -march / -ftree-vectorize

I am trying out several compiler switches against a program that performs sobel kernel convolution on two images( 2000Hx3000W and 6800Hx8500W ). There are some observations that I am not able to ...
1
vote
1answer
246 views

Will app built with gcc 4.x on CentOS/RHEL 4.8 run on completely un-updated CentOS/RHEL 4?

We have a commercial application that we build on 32-bit CentOS 4.8 (equivalent to Red Hat Enterprise Linux (RHEL) 4 update 8. The default gcc compiler is at 3.4.6 We are able to run our binary on ...
1
vote
3answers
223 views

g++, doubles, optimization and a big WTF

bug in my gcc? bug in my code? both? http://files.minthos.com/code/speedtest_doubles_wtf.cpp Somehow, it manages to "optimize" a function that results in the array of doubles being zeroed out into ...
1
vote
3answers
384 views

How are C++-style comments handled in GCC 4.3.3 by default?

I'm using GCC 4.3.3 on Ubuntu 9.04 64-bit and was getting errors using C++-style comments in C code. When I say "by default" in the title, I mean simply invoking gcc test.c According to the GCC 4.3.3 ...
0
votes
2answers
47 views

Error compiling the compiler GCC

I know, it's an irony to compile a compiler. But I need a specific version of this compiler, and the CentOS 5.x repositories have not the most recent versions of GCC. The version what i need is 4.3.2 ...
0
votes
1answer
114 views

Unable to build openssl in Xcode 4.2.1

I could build openssl in xcode 3.5.2, but recently I upgraded to Xcode 4.2.1. And now when I try to build the same old Xcode, im getting errors. Make[1]: ...
0
votes
1answer
105 views

expected nested name specifier - gcc

In this code: Int.h: #include <type_traits> #include "Best_Fit.h" template<class Int_T, typename Best_Fit<Int_T>::type Min_Range,typename Best_Fit<Int_T>::type Max_Range> ...

1 2