g++ is the C++ frontend to the GNU Compiler Collection (gcc).
0
votes
1answer
8 views
g++ Linker errors after upgrading to gcc-4.8 on Debian, libc6
I have just dist-upgraded a Debian Weezy machine to run gcc-4.8 from gcc-4.7. Previously the build environment was sane and was compiling normally. Now it gives the following linker errors, with any ...
0
votes
1answer
38 views
Flags to compile & time to compile
On my makefile I've got this:
CC = g++
CFLAGS = -Wall -pedantic -pedantic-errors -Wunused -g -ggdb
And my project takes about 22 seconds to compile on my machine (Core2, 3 GB ram - it ...
0
votes
0answers
14 views
thread lambda function wont compile
I'm struggling to understand why this happen, maybe it's a bug.
#include <thread>
#include <cstdio>
using namespace std;
int main(){
int y=2;
float fa[2][y]; // thread compile ...
0
votes
1answer
26 views
How do I set up GCC Compiler to Save Executables to a Subfolder?
I do a LOT of programming in my C++ class, and I have about 60 .cpp, .o, and .exe files all piled together in one folder. Is there any way that I can tell the compiler to save the executable file to ...
3
votes
2answers
26 views
Is g++ 4.5.3 broken when it comes to pointers to lamba functions?
I was trying out lambda functions and making a jump table to execute them, but I found g++ didn't recognize the type of the lambda function such that I could assign them to an array or tuple ...
1
vote
0answers
58 views
c++ error while compiling with both clang++ and g++
I am working on a project which modifies the control flow of user program. I am using llvm for this. At the end I generate a set of .s files using clang++. Then I use g++ to merge them all. I cant use ...
1
vote
1answer
32 views
QDialog crash while trying to setText() of QLineEdit right after setupUi()
After the initialization of one Qt dialog returns the pointer to the private data of one QLineEdit gets set to 0. While being inside the generated setupUi() of the dialog the pointer is still valid. ...
2
votes
2answers
62 views
C++ template class static const variable member as map key gives undefined reference
I have a bunch of classes that have a static member that is an enum value. And I have a map somewhere else with this enum as key. Now if I use a template parameter in a fuction to access the map, I ...
0
votes
1answer
12 views
Why doesn't g++ see boost::regex_search() function?
I am trying to compile against the boost::regex library, but as soon as I try and use the regex_search() function, it barfs:
$ g++ -Wall -L/cygdrive/c/Users/Adrian/Downloads/boost_1_53_0/stage/lib ...
0
votes
1answer
32 views
Declaring a vector in a .h file, initialize in a .cpp file
First of all, I know there are a lot of similar posts on here, but I've been looking through them in for a while and I am having trouble deciphering exactly what I need to do. So on to my problem: I ...
2
votes
1answer
77 views
C++ code bifurcation depending on G++ version
I have a little problem with my std::chrono.
Depending of G++ version some key words change (monotonic_clock/steady_clock).
I would like to do something like this: (pseudo-code)
If G++-version < ...
-5
votes
1answer
40 views
prohibiting copy constructor with new standard c++11
hey guys I was trying to create a simple class with copy constructor prohibiting.
#include <cstdlib>
//
class my_stack
{
std::size_t last;
int *data;
std::size_t max_elem;
public :
int ...
1
vote
3answers
33 views
C++: Undefined reference to function in namespace
Here I am, trying to figure out what's wrong with my code without success :(
I'm writing a resampler but I guess that's of no interest at all, I'm just trying yo make this stupid warning go away. ...
2
votes
1answer
33 views
C++ compiler independent DLLs using abstract interface
I followed the guide at CodeProject and built a DLL with an abstract interface and exported the factory functions using the extern "C" command along with __declspec(dllexport) and __cdecl and by doing ...
0
votes
1answer
15 views
Undefined References After Linking Against Static Library
I wrote a simple program to test if xdotool can fulfill my requirements. (Well, not really. My first step is to make sure if I can make calls into the xdotool library.)
#include <xdo.h>
...
0
votes
3answers
56 views
Large scale deletions from STL vector crashing my binary
My binary is crashing. On running the core dump, I found the following :
#0 0x00a6a363 in memmove () from /lib/tls/libc.so.6
(gdb) frame 1
#1 0x083a108c in ...
2
votes
1answer
54 views
cpp about for_each usage
here is my code,I want to read config file using c++
my code is here:
//myutils.h
#include <string>
#include <map>
using namespace std;
void print(pair<string,string> &p);
...
0
votes
0answers
18 views
Tetgen tetcall compiling error
I want to use Tetgen to calculate the volume of a given set of points by tetrahedralization. I already saw a snippet in the code doing this, and might only requires some tweaking.
The problem I have ...
0
votes
2answers
99 views
g++ , range based for and vectorization
considering the following range based for loop in C++ 11
for ( T k : j )
{
...
}
there are g++ or clang++ optimization flags that can speed up the compiled code ?
I'm not talking about any for ...
0
votes
0answers
29 views
C++ Application Project Template - log4cxx Issue
Hoping someone can help me with my build issue I'm trying to create a new project with this C++ Application Project Template but I can't get it to build properly as am getting issues with log4cxx. See ...
-6
votes
0answers
56 views
sh: 1: Syntax error: “(” unexpected [closed]
I get this error after I slightly modify sample.cpp file. And I know that this modification is not the reason behind this error. SO i'm trying to figure it out.
I'm using "./sample" to run executable.
...
2
votes
1answer
45 views
_mm256_testz_pd not working?
I'm working on Core i7 on Linux and using g++ 4.63.
I tried the following code:
#include <iostream>
#include <immintrin.h>
int main() {
__m256d a = _mm256_set_pd(1,2,3,4);
__m256d z = ...
2
votes
1answer
27 views
Values returned from a DLL differ between straight g++ and qt using g++
I have written a dll that uses an abstract interface to allow access to the c++ class inside. When I load the library dynamically at run-time using the LoadLibrary() function using a simple console ...
0
votes
1answer
61 views
C/C++ compiling different parts of the program with different compilers
I'm writing a program in C++ that requires a call to a subroutine written in an open source C program. The C file is called shd.c. (There is no header file for shd in the program). The C program by ...
1
vote
1answer
32 views
APP_STL := gnustl_static is broken in Android NDK 8c through 8e
This works okay with 8b but with 8c onwards I get:
rm -f ./libs/armeabi/lib*.so ./libs/armeabi-v7a/lib*.so ./libs/mips/lib*.so ./libs/x86/lib*.so
rm -f ./libs/armeabi/gdbserver ...
-2
votes
0answers
21 views
OpenGL Libs in Mono (C++) [closed]
How could I add the OpenGL libraries to my Mono C++ project? I have absolutely no idea where to start and I am not that experienced with Mono. I found that there is a Path section in Build->Code ...
2
votes
1answer
109 views
C++0x: uniform_real_distribution is not a member of std
I am trying to compile my first piece of code using c++0x. I am pretty good with C++, but this one has me stumped. The following will not compile:
#include <iostream>
#include <random>
...
0
votes
1answer
32 views
Problems when compiling a crypto library [duplicate]
I get an error when compiling a crypto library
crypto/ope.cpp: In member function ‘NTL::ZZ OPE::encrypt(const NTL::ZZ&, int)’:
crypto/ope.cpp:80: error: expected primary-expression before ‘[’ ...
1
vote
2answers
41 views
Conditional linking through static library
I’m writing a big static library in C++. In that library, I use symbols from plenty of static and dynamic libraries. When I “make” it, I don’t need to link against any libs because it’s static. Here’s ...
0
votes
1answer
7 views
Moving around the lblas library and using it with the g++ compiler
So on my current computer I Have a library to use BLAS functions, but I need to run my c++ program on an external server. I know how to transfer files to the server, but I'm having trouble figuring ...
-6
votes
2answers
101 views
Why is code compiled in g++ so significantly faste than in microsoft compiler? [closed]
I have the following code that using g++ runs 3 seconds, under microsoft compiler runs over 30 seconds and I dont understand...
struct constraint{
int bitline;
int result;
};
// this ...
-2
votes
0answers
14 views
Does the GCC Core 2 optimizations apply to newer Intel processors? [closed]
There are some optimization options on GCC and I want to target to common processors rather then general, simply because of what most computers use (Intel). But will applying Core 2 optimizations ...
1
vote
2answers
90 views
g++ special handling of printf
Anyone knows why the following code works under g++ 4.7.2? If I change the name printf to another name such as f, it has compiler error saying constexpr can't contain non-const function calls (which ...
0
votes
0answers
30 views
error: ‘object_t’ in ‘class openvrml::viewer’ does not name a type
I'm trying to compile the lib ARvrml (From ARToolKit. See the source here) on Ubuntu and get this:
g++ -c -I../../../include -I/usr/local/include/openvrml -I/usr/X11R6/include -O -pthread ...
0
votes
4answers
32 views
Linux - find the path of g++ lib
I installed these two libraries: glut and curl.
sudo apt-get install libcurl4-gnutls-dev
sudo apt-get install freeglut3-dev
when I have to compile a program I use:
g++ -o executable file11.cpp ...
0
votes
1answer
23 views
How to see which header files were used for gcc/g++ compilation
I have two binaries that were simple c++ programs compiled on a Linux machine. The first binary - call it my_native_prog - uses the build tools (g++, as, etc.), libraries, and headers that come ...
0
votes
0answers
22 views
Need to Improve Sublime Build Config With G++
I'm working in Sublime Text 2 and need a build config for c++.
My requirements are:
the compiled program to runs in an external window (but I've fixed this with the shell and start command)
...
1
vote
0answers
52 views
Object file has too many sections
We am making heavy use of boost::serialization and templates in general. All seems to be going well.
Except, we've hit a snag on our Windows builds. It seems to cause issues in the object files being ...
-2
votes
5answers
94 views
is this struct undefined behaviour from source file
I have a struct from a source file s.cpp:
struct s{
unsigned long long a;
s(unsigned long long b){a=b;}
unsigned long long get(){return a;}
};
And in main file, compiled of course with g++ main.cpp ...
1
vote
1answer
36 views
print address of dynamic memory, stored in an array of pointers
How do I print the data stored in the char* array [In C, we use %p to display addresses].
char * tokens[5];
for(int i=0;i<5;i++)
tokens[i] = new char[5];
for(int i=0;i<5;i++)
...
2
votes
2answers
31 views
OpenCV accumulatedWeight error (assertion fails on comparison of channels and size)
I am running the following code to calculated the Running Average of a collection of images read from a video on OpenCV.
EDIT: (Code updated)
#include <iostream>
#include <string>
...
3
votes
1answer
101 views
Not able to use srand48() after changing to c++ 11
Why am I not able to compile my code to c++ 11 and use the srand48 function?
I have a program where I play around with some matrices.
The problem is that when I compile the code with the -std=c++0x ...
5
votes
0answers
59 views
g++ dynamic vs static linking discrepancy in 32bit vs 64bit compilations
In Windows 7 64bit I’m using MinGW-w64 (from MinGW-build project, package by NiXman). Specifically, I am using x64-4.8.0-release-win32-sjlj-rev2.7z. x64 = development machine. Win32= threading model. ...
0
votes
0answers
14 views
Libtool Stops installing Openfst
When I do make, it just hangs and after long time, terminal returns error :
make[3]: Entering directory `/home/akshayy/Downloads/openfst-1.3.3/src/script'
/bin/bash ../../libtool --tag=CXX ...
0
votes
0answers
39 views
Include linkage issues g++ Debian
I'm having some issues with the include linkage with g++
Here is the compilation line :
g++ main.cpp -I./libgdl_gl/include/
My main.cpp is in the same directory as the folder libgdl_gl, and this ...
2
votes
2answers
96 views
Need scope resolution operator to call member function template when class template exists with same name
I have a class template that happens to have the same name as a member function template of some classes. Now another function template gets instantiated with one of the classes with the member ...
0
votes
2answers
50 views
In function `_start': (.text+0x20): undefined reference to `main' collect2: ld returned 1 exit status
I'm new to g++ and compiling my C++ code in LINUX.
I'm trying to connect several .o files as .lib using g++.
This is the command that I used "g++ -o ../fuzzy/fuzzy.lib example1.o example2.o" and got ...
0
votes
2answers
48 views
C++ undefined reference to a linked function
I have a problem with the linking of a C++ project and I can't figure out what's wrong.
The jest of the code.
clitest.cpp
#include <iostream>
#include "node.h"
using namespace std;
int ...
0
votes
1answer
50 views
Some problems when using Boost Library on Xcode
I use Xcode 4.5.2 and I wonna use Boost, but I got some problems.
In Build Setting, if I choose libc++ (LLVM C++ standard library with C++11 support), I will get the error messgae "Apple Mach-O ...
0
votes
2answers
29 views
cannot find -lcuda when linking with g++
I'm trying to link these object files with the command:
g++ NT_FFT_Decomp.o T_FFT_Decomp.o SNT_FFT_Comp.o ST_FFT_Comp.o VNT_FFT_Comp.o VT_FFT_Comp.o CUDA_FFT_Comp.o Globals.o main.o \
...



