g++ is the C++ frontend to the GNU Compiler Collection (gcc).

learn more… | top users | synonyms

2
votes
2answers
71 views

How can I force the STL memory cache to clear?

I have a class which has a field of type unordered_map. I create a single instance of this object in my application, which is wrapped in a shared_ptr. The object is very memory consuming and I want to ...
-3
votes
2answers
55 views

What is the different between pass by reference and pass by value in cpp? [duplicate]

The compiler said that the method in the class is not found. Whole error message is could not found the function common::base::CategoryIdCache::addNewCid(std::string, common::base::eSqlCatalog&, ...
-3
votes
1answer
43 views

compiling .c in g++ assumes c++ any command line options to treat it as .c [duplicate]

I have a C++ project [IDE = codelite] which tries to compile .c extention using g++ I want to specify a flag for .c file so that g++ treats it as c What is the g++ command line option to make it ...
-2
votes
0answers
95 views

C++ project tries to compile c file using g++ [closed]

I have a C++ project in IDE called codelite which tries to compile .c extention file using g++ I want to specify a flag for .c file so that g++ treats it as c What is the g++ command line option ...
1
vote
1answer
56 views

Compiling arrays stored in external text files (C++ compiled using command line g++)

I am a novice c++ programmer so please forgive me if this is a naive question. I have files containing large arrays holding tens-of-thousands of strings that I have used previously in javascript ...
0
votes
1answer
34 views

Calling a dll from fortran

I am aiming at calling a dll file from a fortran compiler. I am doing all this in windows using the mingw compiler. The dll was created using a g++ compiler The code for which I am trying to create ...
1
vote
1answer
35 views

Linking Cuda in C++ issue

I've searched existing questions, but I can't seem to solve this. I have a blur_mask.cc file with: #include <iostream> #include <ctime> #include <opencv2/highgui/highgui.hpp> ...
0
votes
0answers
47 views

Is the constructor parameters unnecessary in <stl_hashtable>

In SGI STL implementation <stl_hashtable.h> the hashtable class has a ctor like: template <class Value, class Key, class HashFcn, class ExtractKey, class EqualKey, class ...
3
votes
2answers
65 views

c++ convert int and concat it with char*

i want to convert an int to char or char* then concat it with a char* for (int i = 1; i < mymap.size(); i++) { char * s = "Scene"; cout << mymap[s+i]; } i tried this way string s ...
0
votes
1answer
70 views

C++, linux, how to pass a not static method from a singleton to pthread_create?

I have a problem with threading a not static method from a singleton class,look at the code : //g++ main.cc -lpthread #include<iostream> #include<unistd.h> ...
1
vote
2answers
72 views

Lambda machine-dependent segmentation-fault (possible compiler bug?)

Today I came across a very strange bug. I created a minimal example: https://gist.github.com/SuperV1234/5792381 Basically, on some machines, "test 2" segfaults; on others, it works as intended. On ...
1
vote
1answer
52 views

std::generate not working on an std::vector

#include <iostream> #include <random> #include <algorithm> int main() { std::mt19937 mt; std::uniform_int_distribution<int> d(0, 255); int l = 500; ...
0
votes
2answers
48 views

g++ output: file not recognized: File format not recognized

I am trying to build program with multiple files for the first time. I have never had any problem with compliling program with main.cpp only. With following commands, this is the result: $ g++ -c ...
2
votes
2answers
48 views

I should avoid static compilation because of cache miss?

The title sums up pretty much the entire story, I was reading this and the key point is that A bigger executable means more cache misses and since a static executable it's by definition bigger ...
1
vote
1answer
78 views

C++ class method not found when compiled

I created a simple class 'Hello' in C++ using header(.h) and definition(.cpp) files. This is the header file content: #ifndef HELLO_H #define HELLO_H #include <string> namespace test { ...
0
votes
1answer
51 views

C++ enum problems and possible circular dependency in g++ [duplicate]

At first I am apologize for a slightly longer code... There are 3 classes A,B,C A.h #ifndef A_H #define A_H template <typename T> class C; class A { public: template <typename T> ...
-1
votes
1answer
41 views

C++ about function templates

since 2 hours I struggle with templates, lets consider these files : ChildrenOfBodom.h : #include<iostream> using namespace std; void AreYouDeadYet(string); template<typename T1>void ...
-1
votes
0answers
19 views

ubuntu on ARM (Pandaboard) executable does nothing and show no error

Compiling (g++) the examples of openni in the Pandaboard using Ubuntu 12.04 and the openni make files, the executable created does nothing, showing no error. I also have created a simple hello world ...
1
vote
1answer
22 views

Is there any difference between -Xlinker -export-dynamic and -rdynamic?

This is a pretty straight forward question. Is there any difference between: -Xlinker --export-dynamic and -rdynamic when passed to g++? Reading the GNU documentation it seems they are ...
2
votes
1answer
69 views

c++, calling a function without (), what do that mean?

five minutes ago I did something I never did before (it's not about sex...) look at the code : // g++ DeathToAllButMetal.cc #include<iostream> void DeathToAllButMetal(){ std::cout << ...
3
votes
2answers
92 views

Error: redeclaration differs in ‘constexpr’

Clang accepts this code, but GCC rejects it: class Foo { public: static constexpr double kVal = 0.25f; }; const double Foo::kVal; (Using clang 3.0 and g++ 4.6.3) ~$ clang++ foo.cc -std=c++11 ...
2
votes
2answers
94 views

g++ “Calling” function without parenthesis ( not f() but f; ). Why always returns 1?

c++ (GNU GCC g++ ). "Calling" function without () The function is not working, but compiles ok. More surprisingly, such code always returns 1... Is there any explanation? I expected function name ...
0
votes
0answers
24 views

running a executable in Windows using mingw32 g++

I am trying to run the files given here http://www.cs.unm.edu/~aaron/research/fastmodularity.htm The page says: Running the program The Makefile provided should be sufficient to compile the ...
0
votes
1answer
18 views

“Undefined reference to” when using g++ and ncurses for compiling

I am having some difficulty compiling a program with g++ on Ubuntu and my suspicion is that the ncurses library is not running correctly I am fairly certain the problem isn't with the makefile but ...
1
vote
1answer
82 views

G++ name mangling of global const variables

Can someone help me understanding the gcc name mangling conventions? Consider the following test code #include <stdio.h> const int x = 42; int y = 42; int main( int argc, const char* argv[] ...
0
votes
2answers
66 views

how to prove that when compile the templates in C++, the compiler create multiple copies and remove the copies when link

how to prove that when that compile the templates in C++, the compiler generates an instantiation in each compilation unit that uses it, then the linker throws away all but one of them[the commond ...
0
votes
1answer
36 views

g++ throws “undefined reference to” static class member

I'm writing CCITT Group 4 encoder and it seems I have a problem with linker. I have some raw binary data stored as static const class members (Fakskod.h): class Fakskod { public: // ... ...
0
votes
1answer
29 views

Array trait causes template argument deduction failure

The following code does not compile with G++ (although I believe it should): #include <iostream> template <unsigned N> struct foo_traits { typedef const char ArrayArg[N]; typedef ...
0
votes
1answer
25 views

GCC/LD cannot find link library

OS: Windows 7 Enterprise x64 IDE: Eclipse Juno/CDT Compiler: MinGW 4.6.2 (C:\MinGW) Like user697111, I cannot get ld.exe to find an external library. Simple programs compile and link fine, but when ...
0
votes
2answers
32 views

Code runs fine in xcode, but errors out on the command line

I'm trying to learn how to work with external class files in C++ and have hit a wall. Everything runs just spiffy in xcode, but when trying to run it in the command line I've gotten the following ...
0
votes
1answer
50 views

C++ unordered_map using a custom class type as the key

I am trying to use a custom class as key for unordered_map, like the following, #include <iostream> #include <algorithm> #include <unordered_map> //#include <map> using ...
0
votes
2answers
74 views

g++: was not declared in this scope

I have thoroughly searched for a similar thread on SO but found nothing. Searching for "was not declared in this scope" yields a lot of results but I think this is different. Basically, the following ...
2
votes
1answer
138 views

Implementation status of std::optional in g++/libstdc++?

As I am working on a C++ library that will be released publicly around 2014, I currently have design choices to make. One of the very useful tool that will be released with C++14 is std::optional. I ...
0
votes
1answer
24 views

Strange scenario getting g++ error multiple definition of functions

I have code that already works but need to port it to yet another Linux platform. I'm always having to tune the code for gcc/g++ differences - usually the given version of g++ is just more limited in ...
0
votes
1answer
14 views

error in gcc -D option with strings

I'm using a shell that calls a makefile to recompile the same project with different #define options. the shell calls the makefile like this: make UserDefined="-D SomeDefines -D ...
2
votes
2answers
22 views

gcc compiler error with -D option

I've written a makefile that compiles multiple files. when executing a line like this : g++ -c -Wall -U DEBUG -U FILE -U HighPriority -U OnlyCUDA -U CUDA -U THREAD_NUM -U SIZE -U InputFileName -D ...
9
votes
1answer
138 views

C++ error: base function is protected

I would like to know why the following code does not compile: class base { protected: typedef void (base::*function_type)() const; void function_impl() const {} // error: ‘void ...
-1
votes
1answer
40 views

Automatic dependency resolution using GNU Makefile

I'm writing a piece of software that utilizes a Makefile for compilation, originally I had a rule setup for each file however this proved to be too cumbersome whenever I added a new file. To try and ...
2
votes
1answer
43 views

g++ compiler doesnt recognize nested template class

I have a template array class, the array has contius amount of cells in the memory. Also the array has an iterator=> Iterator and Cells are nested classes in Array the class is described in this code: ...
0
votes
0answers
54 views

Running identical C++ code in Mac OSX and Ubuntu

I need some explanation on a particular issue. If I am wrong please correct me. I have a C++ project using Xcode IDE which uses the "Apple LLVM compiler4.1", and compiler default for "C++ language ...
0
votes
1answer
64 views

compile time/runtime variable name/enum value name information

Is it possible to obtain variable name or enum value name at compile time/runtime? In particular, namespace::/class::/struct::/union::-qualified (with adjustable depth, like have UNIX patch unility ...
-1
votes
0answers
31 views

/usr/bin/ld: cannot find -lcutil [closed]

I tried to compile benchmarks with gpgpu-sim. When I run their make file i get this error. /usr/bin/ld: cannot find -lcutil collect2: ld returned 1 exit status make: *** ...
0
votes
0answers
21 views

libpng12 include file error

I am tring to compile a piece of code that includes the standard libpng12, but I keep on getting this error when compiling my code. (The code is not relevant, since the only thing I do is #include ...
1
vote
0answers
44 views

GCC with XCode command line tools doesn't work

I've installed command lien tools in XCode. But still get this issue : cc1plus: error: unrecognized command line option "-arch" So I think the new gcc wrapper isn't working. How can i find the ...
0
votes
2answers
28 views

Linking in mac os x (10.8)

I'm trying to compile a multi file bit of code which up until now has been working fine. But now I am getting some linker errors. I have a class definition 'njPhaseSpace' which is reported as being: ...
1
vote
1answer
53 views

stringstream doesn't accept white space?

I have the following code: std::stringstream ss; ss << 1 << "a b c"; std::string result; ss >> result; std::cout << result << std::endl; I see "1a" instead of "1a b ...
0
votes
2answers
50 views

c++ linking and compiling flags

I may have a stupid question but as no question is stupid i'll ask it... let's imagine i have the files matrix.hpp and matrix.cpp. In those files i use assert(...) to make sure that some condition is ...
1
vote
2answers
39 views

How to get gdb tui assembly output to show instruction?

I wanted to see the assembly output but found that in TUI, it would output function signature + offset: which is cool, except for the fact that I'm programming in C++ and the function signature is ...
1
vote
1answer
21 views

including static libraries with -all_load flag

In what cases exactly do you need -all_load flag? Lets say I have something like g++ source.cpp -o test libA.a libB.a libC.a From what i recall if there is some reference to a symbol used in ...
1
vote
1answer
95 views

Why does GCC accept convertion from 'const char *' to 'char *' on std::strrchr() returned value?

While adding a detailed answer, I noticed that GCC does not warn the following code while Visual C++ complains. #include <cstring> int main() { const char CONSTSTR[] = ...

1 2 3 4 5 64