Tagged Questions
The linkage tag has no wiki summary.
34
votes
6answers
1k views
What does mean for a name or type to have a certain language linkage?
According to (c) ANSI ISO/IEC 14882:2003, page 127:
Linkage specifications nest. When linkage specifications nest, the innermost one determines the language. A linkage specification does not ...
24
votes
6answers
6k views
what does extern “C” in C++ source?
I was wondering what exactly putting 'extern "C"' in your C++ program does.
like in :
extern "C" {
void foo();
}
17
votes
4answers
436 views
c & c++ default global variable linkage, multiple declaration & definition problem
For example:
code1.c / .cpp
int a;
// ... and so on
code2.c / .cpp
int a;
int main(void) {
return 0;
}
go to compile:
$gcc code1.c code2.c # this is fine
$
$g++ code1.cpp code2.cpp ...
10
votes
4answers
151 views
Interface to C++ objects through extern “C” functions
Can an extern "C" function accept or return C++-specific data types, such as references, pointers-to-members, or non-POD classes (by value)? I cannot find anything in the C++ standard that forbids ...
10
votes
2answers
86 views
No linkage at block scope?
Do all variables declared in a block have 'no linkage'?
For example:
1:
If I declare a static variable:
void foo()
{
static int i;
}
Would it have an internal linkage or no linkage? If no ...
10
votes
1answer
236 views
static keyword in h file and internal linkage
Yet another static question.
I have read the following:
What are static variables?
file scope and static floats
http://msdn.microsoft.com/en-us/library/s1sb61xd.aspx
And I still fail to ...
8
votes
1answer
142 views
Implicit internal linkage not the same as explicit internal linkage (“static”)?
Today I encountered a pecularity which, although probably not really important, nevertheless puzzles me. Maybe I'm just not understanding C++ correctly, too.
Some arrays inside a source file point to ...
8
votes
4answers
9k views
static vs extern “C”
(expert C/C++ question) What is the difference between a static member function and an extern "C" linkage function ? For instance, when using "makecontext" in C++, I need to pass a pointer to ...
7
votes
3answers
222 views
Are all functions in the c++ standard library required have external linkage?
So I've got an app which compiles fine on windows, linux and a few variations of unix. I recently decided to port it to OSX when I ran into a snag.
I have a template which looks like this:
...
7
votes
4answers
273 views
How did it happen that “static” denotes a function/variable without external linkage in C and C++?
In C static can mean either a local variable or a global function/variable without external linkage. In C++ it can also mean a per-class member variable or member function.
Is there any reference to ...
6
votes
1answer
475 views
C callback functions defined in an unnamed namespace?
I have a C++ project that uses a C bison parser. The C parser uses a struct of function pointers to call functions that create proper AST nodes when productions are reduced by bison:
typedef void ...
5
votes
2answers
103 views
Block scope linkage C standard
The following identifiers have no linkage: an identifier declared to be anything other than an object or a function; an identifier declared to be a function parameter; a block scope identifier for an ...
5
votes
5answers
625 views
Why can't templates be within extern “C” blocks?
This is a follow-up question to an answer to Is it possible to typedef a pointer-to-extern-āCā-function type within a template?
This code fails to compile with g++, Visual C/C++, and Comeau C/C++ ...
5
votes
4answers
533 views
Linkage of various const/static variables
I have a few questions about the linkage from the following variables. By examples of 7.1.1/7 of C++03 and experimenting with compilers (Comeau, Clang and GCC), I came to the following linkage kinds:
...
5
votes
2answers
934 views
Dependency Property dependent on another
How can one register a dependency property whose value is calculated using the value of another dependency property?
Because the .NET property wrappers are bypassed by WPF at run-time, one should not ...
4
votes
2answers
115 views
What does static mean when applied to a class at namespace scope?
I know that static at namespace scope means "internal linkage". Now consider the following code:
static class Foo {} foo;
Does the static apply to Foo, foo or both?
4
votes
2answers
214 views
Non-extern function with C linkage
Is it possible to declare a function with C linkage without it having external linkage? When trying to compile
extern "C" static void f() {}
I get
f.cc:1: error: invalid use of 'static' in linkage ...
4
votes
5answers
2k views
java.lang.LinkageError: loader constraint violation in Grails project
I've built a Grails project with POI (include poi-3.7 and poi-ooxml-3.7). I've added these 2 external libraries to dependencies block in BuildConfig.groovy file of my project. There's nothing strange ...
4
votes
4answers
1k views
const variables in header file and static initialization fiasco
After reading a lot of the questions regarding initialization of static variables I am still not sure how this applies to const variables at namespace level.
I have kind of the following code in a ...
4
votes
1answer
119 views
C++ - Import of explicitly specialised templates on Windows
I am having some trouble getting a program to link on Windows with VC2008 SP1.
I am explicitly specialising a template member function in a DLL, which appears correctly as an exported symbol in ...
4
votes
4answers
1k views
Does the anonymous namespace enclose all namespaces?
In C++ you specify internal linkage by wrapping your class and function definitions inside an anonymous namespace. You can also explicitly instantiate templates, but to be standards conforming any ...
3
votes
1answer
103 views
Does making a function inline affect its linkage?
If I make a function inline does it change its linkage to internal linkage? For example:
I'm using or calling the inline function in two files:
file1.cpp
//function definition
inline void foo() {}
...
3
votes
2answers
114 views
Understanding static variables declaration/initialization in C
I have only one file in my project called test.c; the code below does not compile if I do not define "TRUE". I use vc. I just want to understand the behavior. Please throw some light on this aspect.
...
3
votes
1answer
385 views
C++/CLI->C# error C2526: C linkage function cannot return C++ class
I have a simple .NET dll built with VS2010 C# that exposes 2 static members of a class
public class Polygon
{
public static void Test(int test) {}
public static void Test(List<int> ...
3
votes
2answers
138 views
Can anyone explain this portion of the C++0x draft standard?
From ISO Standard Draft: §3.0/9:
n3234 says:
A name used in more than one translation unit can potentially refer to the
same entity in these translationunits depending on the linkage ...
3
votes
5answers
134 views
Is it possible/safe/sane to pass around a function pointer to a static function?
Letās say I only want to expose a function from one of my files by passing out a function pointer to that function. Is it safe to declare that function as static? Are compilers allowed to do any judo ...
3
votes
2answers
211 views
Internal linkage with static keyword in C
I know static is an overloaded keyword in C. Here, I'm only interested in its use as a keyword to enforce internal linkage.
If you have a global variable declared in a .c file, what is the ...
3
votes
1answer
358 views
Using Three20 with another library and conflicting linkage flags
I'm trying to add Three20 to my project, but the -ObjC and -all_load flags are messing with another library I'm using. The other library is ZXingWidget for barcode reading, but I don't think that part ...
3
votes
3answers
5k views
About inconsistent dll linkage
How can I remove this link warning? You can see code segment that causes this warning.
Also Thanks in advance.
static AFX_EXTENSION_MODULE GuiCtrlsDLL = { NULL, NULL };
//bla bla
// Exported DLL ...
2
votes
1answer
96 views
Linking Rob Hess's SIFT library (in C, using OpenCV) with C++
I'm trying to use Rob Hess's SIFT library in my C++ project. I've looked through (the code of) other SIFT implementations, but this one seemed most phase-divided like the original Lowe's paper and ...
2
votes
1answer
52 views
Different behavior of compilers with external linkage
When I compile the following sources on VC++ 10, The i with static linkage gets assigned to 42
But on G++ 4.5.1, The i with external linkage in source2.cpp gets assigned to 42.
Any ideas on what ...
2
votes
1answer
206 views
non-static declaration following static declaration
Consider these examples:
static int a;
extern int a; //OK -- what linkage does the a have now?
static int a;
int a; //ERROR
extern int a;
static int a; //ERROR
int a;
static int a; //ERROR
extern ...
2
votes
1answer
49 views
Wrapping message constants in namespace
I have a series of constant strings that correspond to message IDs; I'm trying to create a centralized place for these constants as they are used in various classes in my application. I was originally ...
2
votes
3answers
140 views
Do classes have external linkage?
I have 2 files A.cpp and B.cpp which look something like
A.cpp
----------
class w
{
public:
w();
};
B.cpp
-----------
class w
{
public:
w();
};
Now I read somewhere ...
2
votes
3answers
300 views
AS3 Library symbol linkage
I'm having an issue using a class I've created as the base class for library symbols:
I've created a class AvSkin which will act as the display for an instance of AvChild. It looks like this:
...
2
votes
3answers
174 views
Linkage of inline functions
I have 2 files:
1 is main.cpp
#include<iostream>
using namespace std;
int min(int,int);
int abs(int);
int gcd(int,int);
const char *s = "Read Error!!";
int main()
{
cout << "Enter ...
2
votes
2answers
282 views
Linkage of symbols within anonymous namespace within a regular namespace
In C++, putting a function or a variable in an anonymous namespace makes its linkage internal, i. e. the same as declaring it static on a file-level, but idiomatic C++.
What about an anonymous ...
2
votes
1answer
134 views
Linkage of class names
$3.5 - "In addition, a member
function, static data member, class or
enumeration of class scope has
external linkage if the name of the
class has external linkage."
Any inputs on what ...
2
votes
2answers
220 views
extern “C” (C linkage) by default
Question
Do GCC, MSVC, or Clang, or some combination support setting linkage to default to C?
Background
I have a large mixed C/C++ project, and while it's easy and logical to export symbols in the ...
2
votes
1answer
194 views
Multiple Boost.Thread Instances OK in a C++ application?
I have an application with a plug-in architecture that is using Boost.Threads as a DLL (specifically, a Mac OS X framework). I am trying to write a plug-in that uses Boost.Threads as well, and would ...
2
votes
1answer
133 views
How to define a function to be inline internal and external copy in C99
My library contains a function that is used both internal and external. The function is so small that I want the compiler to try to inline function when called internal. Because the function uses ...
2
votes
2answers
104 views
Howcome some C++ functions with unspecified linkage build with C linkage?
This is something that makes me fairly perplexed.
I have a C++ file that implements a set of functions, and a header file that defines prototypes for them.
When building with Visual Studio or ...
2
votes
1answer
141 views
STL Static-Const Member Definitions
How does the following work?
#include <limits>
int main()
{
const int* const foo = &std::numeric_limits<int> ::digits;
}
I was under the impression that in order to take an ...
2
votes
2answers
285 views
Linkage in C: does GCC follow the C99 spec, or do I not understand the spec?
I'm trying to understand the exact behavior of storage class specifiers in C99, and some GCC behavior seems not to follow the spec, unless I misunderstand the spec. From 6.2.2 (2):
Within one ...
2
votes
2answers
566 views
Explain about linkages(external/internal) in c++?
Explain about linkages(external/internal) in c++?
How does linkage differ for a function,constant,inline function,template function ,class and template class
1
vote
1answer
437 views
Symbol Linkage in ActionScript 3 / Flash CS5
I'm new to Flash/ActionScript and have run into a bit of trouble creating a custom base class for some of my symbols.
I have a flash file with a number of planets in it, and I want to store some ...
1
vote
4answers
180 views
c linkage confusion
I am intermediate level C programmer. I was walking through a simple code snippet in C
int a ; // A
const int b; // B
static int c; //C
void func(int d) // D
{
//.....
}
What are the linkage of ...
1
vote
2answers
637 views
extern enum in c++
I have an enum I have declared in some .h file:
typedef enum {
NONE,
ONE,
TWO,
THREE
} MYENUM;
in a seperate .cpp I cannot do this:
extern enum MYENUM; //works
extern MYENUM TWO; ...
1
vote
1answer
113 views
Is there a open source implementation for Fellegi-Sunter?
Is there a open source implementation for Fellegi-Sunter?
1
vote
1answer
201 views
How can I prove that inline functions default to internal linkage?
How can I prove that inline functions iin class default to internal linkage?
In other words/:
How can I display output of internal linkage to console?
EDIT: unix platform