static inline function not found during linking



 DEVELOP > c-Plus-Plus > static inline function not found during linking

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: DEVELOP > c-Plus-Plus
User: "ciccio"
Date: 21 Dec 2007 08:41:48 AM
Object: static inline function not found during linking
Hi,
I have a problem with my code that the compiler does not find any inline
functions which are static.
The simple code example is written below, this is what the compiler
throws at me.
] $ g++ main.cpp foo.cpp
/home/klaas/tmp/cciAcYgl.o: In function `main':
inline.cpp:(.text+0x9): undefined reference to `foo::bar()'
collect2: ld returned 1 exit status
Is this normal behaviour??? I seriously doubt that.
If foo::bar(void) is not inline, it works.
When everything is written in one file, it works too.
regards,
This is the simple code
== foo.hpp ==
#ifndef _FOO_
#define _FOO_
class foo {
public:
static int a;
static int bar(void) ;
};
#endif
== foo.cpp ==
#include "foo.hpp"
int foo::a = 0;
inline int foo::bar(void) { return a; }
== main.cpp ==
#include "foo.hpp"
int main(void) {
int b = foo::bar();
return 0;
};
==========
.

User: "Victor Bazarov"

Title: Re: static inline function not found during linking 21 Dec 2007 09:33:53 AM
ciccio wrote:

I have a problem with my code that the compiler does not find any
inline functions which are static.

Since your function is never declared 'inline' when 'main.cpp' is
compiled, the compiler expects a definition of that function to exist
somewhere. Since the implementation of that function is declared
'inline' in 'foo.cpp', the body is essentially ignored because it is
not called anywhere in 'foo.cpp'.
Either put the function in the header (where declaring it 'inline'
makes sense), or remove the 'inline' modifier from the function
definition in 'foo.cpp'.


The simple code example is written below, this is what the compiler
throws at me.

] $ g++ main.cpp foo.cpp
/home/klaas/tmp/cciAcYgl.o: In function `main':
inline.cpp:(.text+0x9): undefined reference to `foo::bar()'
collect2: ld returned 1 exit status

Is this normal behaviour??? I seriously doubt that.
If foo::bar(void) is not inline, it works.
When everything is written in one file, it works too.

regards,


This is the simple code

== foo.hpp ==
#ifndef _FOO_
#define _FOO_
class foo {
public:
static int a;
static int bar(void) ;
};
#endif
== foo.cpp ==
#include "foo.hpp"
int foo::a = 0;
inline int foo::bar(void) { return a; }
== main.cpp ==
#include "foo.hpp"
int main(void) {
int b = foo::bar();
return 0;
};
==========

--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
.
User: "ciccio"

Title: Re: static inline function not found during linking 21 Dec 2007 11:47:54 AM
Okay I got this part now,
But ... when I use templates this is not the case.
Here is again an example (now without the static, since that does not
matter).
The compilation does not give any linking error here.
So what is the reason of this then? Does this mean that inline
functions of templates are just bogus?
Regards
== foo.hpp ==
#ifndef _FOO_
#define _FOO_
template<typename T>
class foo {
public:
int a;
int bar(void) ;
};
#endif
== foo.cpp ==
#include "foo.hpp"
template<typename T>
inline int foo<T>::bar(void) { return a; }
template class foo<int>;
== main.cpp ==
#include "foo.hpp"
int main(void) {
int b = foo<int>().bar();
return 0;
};
.
User: "red floyd"

Title: Re: static inline function not found during linking 21 Dec 2007 01:02:02 PM
ciccio wrote:

Okay I got this part now,

But ... when I use templates this is not the case.

Here is again an example (now without the static, since that does not
matter).

The compilation does not give any linking error here.
So what is the reason of this then? Does this mean that inline
functions of templates are just bogus?

Regards


== foo.hpp ==
#ifndef _FOO_
#define _FOO_

template<typename T>
class foo {
public:
int a;
int bar(void) ;
};
#endif
== foo.cpp ==
#include "foo.hpp"
template<typename T>
inline int foo<T>::bar(void) { return a; }
template class foo<int>;
== main.cpp ==
#include "foo.hpp"
int main(void) {
int b = foo<int>().bar();
return 0;
};

Irrelevant to your issue, but still a problem, is your include guard.
Any identifier with a leading underscore, followed by an uppercase
letter, is reserved to the implementation. Period. You may not use it
for your own purposes.
So your include guard of _FOO_ is illegal.
.

User: "Victor Bazarov"

Title: Re: static inline function not found during linking 21 Dec 2007 12:20:04 PM
ciccio wrote:

Okay I got this part now,

But ... when I use templates this is not the case.

What is not the case?

Here is again an example (now without the static, since that does not
matter).

The compilation does not give any linking error here.
So what is the reason of this then? Does this mean that inline
functions of templates are just bogus?

Not "inline functions of templates", but "function templates declared
inline".
Right after defining your function and declaring it 'inline' (which
you're not really supposed to do, so your compiler _probably_ ignored
it), you _explicitly_ instantiate your template, which basically
introduces the definitions of all member functions (if it can, and it
should be able to, since you just defined your function), which are
of course _not_ inline.
IOW, whatever you declared 'inline' is *not* the function the linker
is looking for when resolving the reference from 'main'. It's looking
for 'foo<int>::bar', not for 'foo<T>::bar'. And your 'foo<int>::bar'
is non-inline (as the result of explicit instantiation).


Regards


== foo.hpp ==
#ifndef _FOO_
#define _FOO_

template<typename T>
class foo {
public:
int a;
int bar(void) ;
};
#endif
== foo.cpp ==
#include "foo.hpp"
template<typename T>
inline int foo<T>::bar(void) { return a; }
template class foo<int>;
== main.cpp ==
#include "foo.hpp"
int main(void) {
int b = foo<int>().bar();
return 0;
};

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
.


User: "ciccio"

Title: Re: static inline function not found during linking 21 Dec 2007 10:22:18 AM
Thanks for the quick response,
I just read it in stroustrup. I had not a clue!
Regards
Victor Bazarov wrote:

ciccio wrote:

I have a problem with my code that the compiler does not find any
inline functions which are static.


Since your function is never declared 'inline' when 'main.cpp' is
compiled, the compiler expects a definition of that function to exist
somewhere. Since the implementation of that function is declared
'inline' in 'foo.cpp', the body is essentially ignored because it is
not called anywhere in 'foo.cpp'.

Either put the function in the header (where declaring it 'inline'
makes sense), or remove the 'inline' modifier from the function
definition in 'foo.cpp'.

The simple code example is written below, this is what the compiler
throws at me.

] $ g++ main.cpp foo.cpp
/home/klaas/tmp/cciAcYgl.o: In function `main':
inline.cpp:(.text+0x9): undefined reference to `foo::bar()'
collect2: ld returned 1 exit status

Is this normal behaviour??? I seriously doubt that.
If foo::bar(void) is not inline, it works.
When everything is written in one file, it works too.

regards,


This is the simple code

== foo.hpp ==
#ifndef _FOO_
#define _FOO_
class foo {
public:
static int a;
static int bar(void) ;
};
#endif
== foo.cpp ==
#include "foo.hpp"
int foo::a = 0;
inline int foo::bar(void) { return a; }
== main.cpp ==
#include "foo.hpp"
int main(void) {
int b = foo::bar();
return 0;
};
==========


.



  Page 1 of 1

1

 


Related Articles
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER