Tagged Questions
10
votes
1answer
223 views
c++ static template members initialization issue
gcc 4.5.1, SuSE Linux i686
Suppose we have following code:
template<typename realT> class B
{
public:
B() {std::cout << "B()" << std::endl;}
};
template<typename realT> ...
4
votes
4answers
783 views
__attribute__((constructor)) call order confusion
The answer here demonstrates that __attribute__((constructor)) is not called after static initialization, it is called in the declaration order.
Then, what is the purpose of it, if it is not ...
15
votes
2answers
198 views
Initializing circular data in C. Is this valid C code according to any standard?
I wanted to see if I could initialize a global variable to point to itself:
#include <stdio.h>
struct foo { struct foo *a, *b; } x = { &x, &x };
int main()
{
printf("&x = %p, ...
4
votes
1answer
1k views
g++, static initialization and -nostdlib
Compiling / linking with -nostdlib seems to prevent static initialization, even if I add my own crti.s and crtn.s with .init/.fini sections.
Are there workarounds to make g++ generate static ...
9
votes
2answers
2k views
C++ static initialization vs __attribute__((constructor))
Example:
struct Foo { Foo() { printf("foo\n"); } };
static Foo foo;
__attribute__((constructor)) static void _bar() { printf("bar\n"); }
Is it deterministic wether foo or bar is printed first?
(I ...
1
vote
1answer
45 views
Finding all dynamic initializations in a library
I have several large code bases which compile into dynamic libraries. I know that some of these have some very expensive dynamic global dynamic initializers. (That is, global instances of ...
4
votes
2answers
219 views
static member explicit definition
Consider this code:
#include<iostream>
using namespace std;
class Wilma
{
public:
static int i;
Wilma()
{
cout<<"\nWilma ctor\n";
...
7
votes
2answers
3k views
How to force gcc to link unreferenced, static C++ objects from a libraray
I'm using a C++ library that can be build as shared or static library.
This library uses a factory technique, where static objects register themselves when the program starts and the static objects ...