The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
26 views

Is TDM-GCC 4.7.1 correctly compiling wrong C++ code? [duplicate]

I tried to compile and run this small piece of code with TDM-GCC 4.7.1 64bit on Windows7 64bit: #include <stdlib.h> #include <iostream> using namespace std; int main() { int dim; ...
2
votes
0answers
151 views

Why does mingw-w64 gfortran fail to statically link libraries when the -static flag is passed?

Disclaimer: I'm fairly deep into my particular compiling issue but quite new to the world of compiling. Background: I'm working on a Windows 7, 64 bit machine. I'm attempting to compile a rather ...
0
votes
1answer
137 views

is it possible to run TDM64-GCC compiler to run with code::blocks

I am trying to build 64 bit applications using 64bit TDM-GCC and Code::Blocks IDE. What I am unable to configure is the combination of the compiler and IDE. I have looked at the IDE wiki and TDM ...
2
votes
2answers
2k views

Where Can I Get libgcc_s_dw2-1.dll?

The programme I have written uses SFML but fails when run because libgcc_s_dw2-1.dll is missing. I'm using tdm-gcc and can't find the file anywhere on my computer and re-install doesn't help and a ...
4
votes
3answers
2k views

Can I use std::thread on windows? [duplicate]

Possible Duplicate: How to enable experimental C++0x concurrency features in MinGW? TDM-GCC complains with error: 'thread' is not a member of 'std' when building with g++ test.cpp ...
1
vote
2answers
141 views

Counting bits in a long long not working as expected

uint64_t bitsToInt64(char *bs) { uint64_t r, i; r = 0; for(i = 0; i < 64; i++) if(bs[i] == 1) r |= 1LL << i; return r; } int ...
1
vote
1answer
225 views

rand_s for MinGW

I have found the rand_s function, part of the CRT, to be extremely useful while developing my application. However, it is my understanding that it is not prototyped in recent MinGW header files. ...
6
votes
1answer
8k views

Multiple definition of inline functions when linking static libs

I have a C++ program that I compile with mingw (gcc for Windows). Using the TDM release of mingw which includes gcc 4.4.1. The executable links to two static library (.a) files: On of them is a ...
4
votes
3answers
691 views

Which unit testing framework to use for C development on Windows?

On Windows XP, using TDM's GCC/MinGW32 for basic development i.e. gcc 4.4.x with gdb. Which unit testing framework to use for test driven development? Apparently Check's unit tests don't yet work on ...
1
vote
1answer
849 views

How to see what g++ command-lines Boost.Build invokes (1.33.1)

I'm scratching my head, trying to figure out why the import libraries are not generated when I build the Boost libraries on my machine. More specifically, building the DLLs works fine, but where I ...
39
votes
5answers
3k views

GCC's assembly output of an empty program on x86, win32

I write empty programs to annoy the hell out of stackoverflow coders, NOT. I am just exploring the gnu toolchain. Now the following might be too deep for me, but to continuie the empty program saga I ...
13
votes
10answers
1k views

GCC: Empty program == 23202 bytes?

test.c: int main() { return 0; } I haven't used any flags (I am a newb to gcc) , just the command: gcc test.c I have used the latest TDM build of GCC on win32. The resulting executable is ...
1
vote
3answers
830 views

Access to global data in a dll from an exported dll function

I am creating a C++ Win32 dll with some global data. There is a std::map defined globally and there are exported functions in the dll that write data into the map (after acquiring a write lock, ...
4
votes
3answers
9k views

C++ GCC4.4 warning: array subscript is above array bounds

I recently upgraded to GCC 4.4 (MinGW TDM build) and now the follow code produces these warning: In member function 'void Console::print(const std::string&)': warning: array subscript is ...
3
votes
1answer
1k views

fstream linking error in g++ with -std=gnu++0x

I'm have an application built with the -std=gnu++0x parameter in tdm-mingw g++ 4.4.0 on windows. It is using an ofstream object and when I build, it gives the following linking error: ...
14
votes
7answers
7k views

C++ inline functions using GCC - why the CALL?

I have been testing inline function calls in C++. Thread model: win32 gcc version 4.3.3 (4.3.3-tdm-1 mingw32) Stroustrup in The C++ Programming language wirtes: The inline specifier is a hint ...