Tagged Questions
The tdm-mingw tag has no wiki summary.
33
votes
5answers
2k 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 ...
12
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 ...
9
votes
8answers
4k 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 ...
3
votes
3answers
5k 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
691 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:
...
2
votes
1answer
107 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.
...
2
votes
1answer
5k 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 ...
1
vote
2answers
79 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
3answers
271 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
3answers
669 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, ...
0
votes
3answers
263 views
Can I use std::thread on windows? [closed]
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 ...
0
votes
1answer
446 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 ...