The linkage tag has no wiki summary.
0
votes
0answers
14 views
Hierachical Clustering
I need to do a hierachical clustering, but I am really stuck. I don't really now how. I will upload the classes, which I need to implement (for better help). Could you please direct me a little bit, ...
0
votes
0answers
39 views
Include linkage issues g++ Debian
I'm having some issues with the include linkage with g++
Here is the compilation line :
g++ main.cpp -I./libgdl_gl/include/
My main.cpp is in the same directory as the folder libgdl_gl, and this ...
5
votes
3answers
67 views
Will a referenced library function be linked if it is not called?
Suppose we have the following iterface to a library:
// my_interface.h
typedef float (*myfunc)(float);
myfunc get_the_func();
And suppose that the implementation is as follows:
// my_impl.c
...
6
votes
2answers
82 views
C linkage for function pointer passed to C library
My case is pretty simple: I want my C++ program to deal with Unix signals. To do so, glibc provides a function in signal.h called sigaction, which expects to receive a function pointer as its second ...
1
vote
3answers
54 views
Why does declaring an extern variable inside main() works,but not defining it inside main() as well?
This seems very trivial but a somewhat rigorous explanation for the following behavior will help my understanding of extern a lot.So I'll appreciate your answers.
In the following sample program,I've ...
0
votes
3answers
95 views
How can I include only few lines of header file(read-only file) in my .c file
I need to use some part(like from line 10 to line 15) of read only .h file into .C file.
Note: I can't edit .h file, because that is not from my module. Also I can't use all the .h file variables.
...
0
votes
2answers
29 views
gcc/Ubuntu: Finding the disk path to the library used at linkage
I want to figure out where resides the dynamic third-party library on my disk. How to do this? My problem is that I get successful linkage, but I do not understand from where. I used verbose mode of ...
0
votes
3answers
45 views
Why is use of an array defined in File1 working in File2 (only declared there),even without “extern”?
Here I have two files externdemo1.c and externdemo2.c.In the first file,I have declared and initialized a character array arr at file scope.But I have declared it in the second file externdemo2.c ...
0
votes
1answer
15 views
static library linkage issue using eclipse
I have two projects, one that creates static library and the other one that is using it.
The first one, create a file called liboutputdevice.a.
When I build it, everything goes OK.
Then I have my ...
0
votes
1answer
29 views
C/C++: What is the difference between a statically-linked library and an object file?
I understand that code included in an executable at compile-time can come from object files (.o files) and statically-linked libraries (.lib/.a files). What is fundamentally and conceptually the ...
0
votes
1answer
12 views
Linkage convention
When a compiler compiles a procedure, I understand that there's a 'Linkage convention' for ensuring that the caller and callee's environments are sorted out fine in this situation.
How can a ...
2
votes
1answer
36 views
linking external library in IAR MSP430
I created an MSP430 library file, and I want to link with it, but I don't find where I can add the libraries to link against in IAR gui.
Does anyone knows where to configure it ?
I've checked the ...
1
vote
1answer
50 views
Create a CMakeFiles.txt for newbies
I have a project with the following structure
/cmake_modules/
FindSFML.cmake
/includes/
car.hpp
motor.hpp
tires.hpp
/sources/
car.cpp
motor.cpp
tires.cpp
...
0
votes
1answer
35 views
gnuwin32 libxml2 installation : setting several lib and include directories
I am now compiling libxml2 on windows 8 using mingw32.
I have downloaded from here ftp://xmlsoft.org/libxml2/ and follow the instruction found in the README file. They instruct to configure make ...
1
vote
1answer
129 views
variable has internal linkage but is not defined
I have this .h file:
namespace{
class Invariant{
public:
Invariant(z3::expr e,Instruction *i):Expr(e),I(i){
DenseMap<Instruction*,Invariant*> FunMap = Invariants[F];
}
private:
...
0
votes
1answer
57 views
Adding an image to stage using actionscript
I am new to adobe flash cs6 and actionscript and am having trouble doing what should be a simple task.
I have created a new project and document class that looks like this:
package {
import ...
0
votes
0answers
94 views
how to modify centroid-based linkage approaches for agglomerative clustering in MATLAB
I want to modify the centroid based approach of linkage function of MATLAB. I want the centroid to be computed differently and also to not use the euclidean distance between these centroids.
All ...
0
votes
2answers
80 views
Linking error while using static library linkage
This might have been asked previously, however, I found it only in context of Classes, and this is not the case.
Utils.h
#ifndef _UTILS_H_
#define _UTILS_H_
#include <cmath>
//is 'x' prime?
...
-1
votes
4answers
6k views
error LNK2019: unresolved external symbol in a multiple projects solution
I have a visual studio solution with multiple projects. One of them, "MyProject" is a static library (.lib). The project, among many other classes has two classes "A" and "B".
A.h:
#pragma once
...
0
votes
4answers
89 views
Rails and SQLITE: Images are not being displayed
I am very new to Rails and Web-programming and hope you can help me out with my very first project.
I am developing a website for a Real Estate Agency.
I have 3 tables in my database (Homes: Home_ID, ...
1
vote
4answers
63 views
Declaring a static member with static linkage
I have a C++ class which declares a single static member. The entire class is contained in a header file and I'd rather avoid creating a .cpp file simply to contain the static member definition. I've ...
0
votes
1answer
107 views
Can DirectX11 Dynamic Shader Linkage be used without Shader Reflections?
I tried to implement dynamic shader linkage from what I saw in the DirectX11 SDK,but they are using the Effects11 framework and shader reflections.I'm trying to get a cleaner more low-level ...
0
votes
0answers
42 views
File organization, inheriting functions/data from other classes in C
I'm very confused on this topic of how to structure my classes so that they all "wire together" and inherit the proper functions and data that I want them to.
I want to have a Car.c and car.h which ...
0
votes
1answer
97 views
C++ Standard regarding external linkage and calling conventions
I've read the last C++11 draft (n3337 - is it the last one?), and I got a question for a possible implementation I've been working on.
Let's say we have this code:
extern "Objective C" {
class ...
0
votes
4answers
76 views
Use of extern in translation unit
extern int a;
int a = 1;
int main(void)
{
return 0;
}
Is this UB? standard says in 6.2.2/7
If, within a translation unit, the same identifier appears with both internal and external
linkage, the ...
1
vote
0answers
56 views
Compiling rabbitmq-c on windows 7: “Looking for htonll - not found”
I'm trying to compile rabbitmq-c on a visual studio 2012 machine, with no success.
I'm following the instructions described in the readme:
mkdir build && cd build
cmake ..
cmake --build .
...
10
votes
4answers
234 views
can a variable be declared both static and extern?
Why the following doesn't compile?
...
extern int i;
static int i;
...
but if you reverse the order, it compiles fine.
...
static int i;
extern int i;
...
What is going on here?
10
votes
2answers
166 views
template non type arguments
$14.3.2 - "... A template-argument for a non-type, non-template template-parameter shall be one of:
...a constant expression (5.19) that designates the address of an object with static ...
1
vote
2answers
105 views
Assigning {pointer to function with C linkage} to {pointer to function with C++ linkage} and vice versa
Is this code legal?
extern "C" typedef void (ft_blah_c)();
/*extern "C++"*/ typedef void (ft_blah_cpp)();
extern "C" void fn_blah_c() {}
/*extern "C++"*/ void fn_blah_cpp() {}
ft_blah_c *g_Blah_c = ...
4
votes
2answers
88 views
How to hide a templated non-member function from client's code?
I have template functions, say,
template<class T>
void mysort(std::vector<T>& vec)
{
size_t b, m, e,
...
mysort(vec, b, m, e);
}
template<class T>
void ...
5
votes
2answers
113 views
Is static needed when declaring const globals?
often in headers I see
//global namespace, not in class
static const int my_global =1984;
but recently I learned that const implies internal linkage, so I wonder doesnt that make static ...
1
vote
2answers
184 views
How to make CUDA object file with C linkage?
I am trying to include some CUDA code in a C project. To do this, I am compiling the CUDA source (.cu file) to a static library (.lib, I'm developing in Windows). I then wish to link in this static ...
0
votes
2answers
114 views
Create Sprite derived symbols using linkage
Just found it is possible to give a linkage in Flash Professional IDE for symbols that has Sprite class as parent. Previously I was sure the only option is MovieClip.
The question is:
How to make ...
0
votes
1answer
49 views
C++: Name and linkage of what I'm doing?
Looking for the official name and the linkage type of this type of template specialization where we're specializing a template only to specialize the implementation of a single method within a class ...
1
vote
0answers
168 views
Linking error while using Qt static built libraries
I'm developing a native C++ application using Qt 4.8.3 and VS2008. Since clients run the application on their naked machines, they need to install VC++ 2008 Redistribution package. So I decided to ...
5
votes
1answer
140 views
What is the specified behavior of including a standard C header, in C++ code, inside a linkage-specification (extern “C”, extern “C++”)?
Typically one includes standard library headers in C++ in the global namespace, outside of any externs, like so:
#include <stdint.h>
int main() { }
But what's specified to happen if you ...
0
votes
1answer
74 views
separate compilation in C gives error if function is declared in header file
I have a problem compiling separate module in C with gcc:
basically, i have my header, common.h:
#ifndef COMMON_M
#include<stdio.h>
#define COMMON_M
void print_array(int *a,int n);
...
7
votes
1answer
153 views
What exactly do I lose when using extern “C” in C++?
I'm trying to develop a dynamic library in C++ to be called by an existing program written in IDL (Interactive Data Language). I know that I need to use extern "C" to disable name mangling so that IDL ...
2
votes
1answer
70 views
Linkage of a Static Function in a Namespace in C++
What is the linkage of a static function declared in a non-global namespace?
Example:
namespace foo {
...
static void bar(int a) { }
}
Is this any different than a static method declared at ...
2
votes
2answers
50 views
Does this invoke undefined behavior with linkage in C?
From section (6.2.2/7) C99 Standard
7. If, within a translation unit, the same identifier appears with
both internal and external linkage, the behavior is undefined.
While the following ...
9
votes
3answers
151 views
Plain Constant variables in C++
Plain constant variables in C++ default to internal linkage.
Suppose If I have the following:
I define a const variable in a header file(const int var = 2)
Then I include the header in two cpp ...
1
vote
0answers
119 views
Adding a Symbolic Link in the Application Bundle
Apple specifies in the UILocalNotification class reference that the audio file must be from the application bundle. However, some smart geek has found his way around this limitation by using:
// this ...
7
votes
2answers
174 views
How to declare a member as a pointer to an extern “C” function?
I'm looking to declare the type of an extern "C" function pointer. It is a member variable. The syntax in this question I cannot get to compile.
template<typename Sig> struct extern_c_fp {
...
0
votes
2answers
168 views
Can't link static lib for android NDK, cygwin gcc
I have PROJ4 library, succesfully compiled under cygwin and installed to /usr/local.
I'm trying to compile as:
$ arm-linux-androideabi-gcc -o conftest -mthumb temp.c -lproj -L/usr/local/lib ...
0
votes
0answers
69 views
Hierarchical clustering
I have applied SIFT on one image and got keypoints, now I want to assig each
keypoint to a cluster and computes all the reciprocal spatial distances among clusters and finds the closest pair of ...
0
votes
1answer
46 views
Remove Linkage in the other Scenes?
I wanted to have a class linkage of my MovieCip in the first scene.
But when i go to second Scene, i don't want anymore this linkage.
6
votes
1answer
157 views
Is it possible to specialize a template on language linkage?
A function's language linkage is part of its type:
7.5.1 [dcl.link] of the ISO C++ standard:
The default language linkage of all function types, function names, and variable names is C++ language ...
0
votes
1answer
38 views
UML object attribute linkage
If you've got a function like this inside a class called 'A'
public updateResponse(UpdateRequest updateRequest){
//...
}
Where UpdateRequest is another class which you create an object from
as ...
0
votes
1answer
160 views
Autotools & Libtool - How to compile shared library from multiple source directories?
I'm trying to build a library from Autotools (Automake/Libtool)
My directory structure is :
src/MyLib/*some_sources*.cpp/.h + a Makefile.am
src/MyLib/Parsers/*some_other_sources.cpp/.h Makefile.am
...
-1
votes
5answers
222 views
declare variables in c as global or encapsulate them and use getter and setter [closed]
I have started programming in C and in general I'm looking for "best practices" to structure my code.
Having mainly used object oriented languages before, I started to adopt some practices from these ...


