Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged linker
0
votes
532
views
1
answer
linker - Does the order in which libraries appear on the gcc command line matter?
I always thought that libraries had to be listed after any object files that depended on them, but given this ... and I was just confused? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
563
views
1
answer
linker - Windows Static Library with Default Functions
I would like to create a static library (.lib) in Windows that can be used in subsequent builds as a "backup" ... do not use the /FORCE option. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
461
views
1
answer
linker - Assembly - x86 call instruction and memory address?
I've been reading some assembly code and I've started seeing that call instructions are actually program counter ... for you? Highly confused. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
1.0k
views
1
answer
linker - CMake: Link precompiled library depending on OS and architecture
I have different, precompiled versions of a 3rd-party library (Windows/Linux/Mac, 32/64-bit). It must be included ... , this is just an example. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
574
views
1
answer
linker - Mixed C++ and Fortran Linking Issue
I have done some searching online but I cannot find out how to compile a simple C++ and Fortran code from linux ... , and it is not recognized. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
566
views
1
answer
linker - c - Linking a PGI OpenACC-enabled library with gcc
Briefly speaking, my question relies in between compiling/building files (using libraries) with two different compilers ... what should I do? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
512
views
1
answer
linker - Linking errors when compiling python extension module
So I'm writing a python extension module in C and I'm trying to compile it for my 64-bit Python build. After ... this for 3 days, any advice? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
955
views
1
answer
linker - How to link object to libraries with LLVM >= 3.1 ? ( no GNU ld )
How I can generate a working executable with the tools provided with Llvm/Clang ( version 3.3 (trunk 168461 ... Reporter.py startfile.py Thanks. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
540
views
1
answer
linker - Keep getting e8 00 00 00 00 as the machine code to call a function in assembly
I know when using objdump -dr in my file call shows up in machine code as e8 00 00 00 00 because it has not ... ,%eax 3e: c9 leaveq 3f: c3 retq See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
427
views
1
answer
linker - Linking error using gcc in Ubuntu 11.10
I'm trying to compile and run a simple "Hello World" program in C, and I get a strange error of multiple ... to start, but this holds me back See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
530
views
1
answer
linker - How to add object files to a project in Qt
Currently the linker in one project has problems linking to object files generated by source files in another project. ... object files to Qt? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
711
views
1
answer
linker - gcc build links but shared library does not appear with ldd
I've a program that I must build. The program depends on libA, and libA depends on libB. Both libs ... link the executable to both libraries? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
532
views
1
answer
linker - link with static library vs individual object files
For a reason i want to unpack a static lib (libx.a) into individual object files (a.o b.o c.o), and specify ... i'm using is 2.16.1 Thanks. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
535
views
1
answer
linker - How to call a function in Fortran that is defined in a separate file?
I am trying to compile some really old code (1986 and before). This code references an external function. ... .for__func_MOD_f. Any idea? thanks See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
631
views
1
answer
linker errors - Xcode 5 - -bundle_loader can only be used with -bundle XCTest
I am working on unit tests with XCTest and Xcode 5. Everything was working just fine, but then a colleague made ... Anyone know how to fix this? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
601
views
1
answer
linker - Why do we still need a .lib stub file when we've got the actual .dll implementation?
i'm wondering why linkers can not do their job simply by consulting the information in the actual .dll files that ... 'm just saying non sense? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
590
views
1
answer
linker - When i should use ld instead of gcc?
I want to know when i should use ld linker instead off gcc. I just wrote a simply hello world in c++, ... cases where ld linker has advantage. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
750
views
1
answer
linker - What is the difference between .LIB and .OBJ files? (Visual Studio C++)
I know .OBJ is the result of compiling a unit of compilation and .LIB is a static library that can be created from ... is it the same in .LIBs? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
588
views
1
answer
linker - How to dllimport in Microsoft Visual C++
I have a DLL and I would like to use some of its functions. #include <iostream> using namespace std; ... using Windows and Visual Studio 2008 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
463
views
1
answer
linker - Multiple Defined Symbols C++ error
I thought ifndef something #define something body #endif solved this error, so I'm not sure why this is happening. ... that include "Library.h". See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
826
views
1
answer
linker - Armadillo + BLAS + LAPACK: Linking error?
When I try to compile example1.cpp that comes with Armadillo 2.4.2, I keep getting the following linking error: / ... the MacBook Pro 7,1 model See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
456
views
1
answer
linker - How can I build in XCode 4, for an iOS 3.1 deployment target, using libSystem.B?
I've recently upgraded from XCode 3 to 4, and now I'm having build problems with my iPhone project. I need to ... -4.2 failed with exit code 1 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
821
views
1
answer
linker - gcc/ld - create a new libc.so with __isoc99_sscanf@@GLIBC_2.7 symbol from glibc.2.6
I have an application, which does a error when I try to run it: /lib/libc.so.6: version ` ... __isoc99_sscanf@@GLIBC_2.7" error from linker. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
601
views
1
answer
linker - How can I build in XCode 4, for an iOS 3.1 deployment target, using libSystem.B?
I've recently upgraded from XCode 3 to 4, and now I'm having build problems with my iPhone project. I need to ... -4.2 failed with exit code 1 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
770
views
1
answer
linker - gcc/ld - create a new libc.so with __isoc99_sscanf@@GLIBC_2.7 symbol from glibc.2.6
I have an application, which does a error when I try to run it: /lib/libc.so.6: version ` ... __isoc99_sscanf@@GLIBC_2.7" error from linker. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
1.1k
views
1
answer
linker - OpenSSL link options -lssl and -lcrypto in GCC
After adding the link options: -lssl and -lcrypto, my program was correctly compiled. However, I found GCC doesn' ... do the options come from? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
686
views
1
answer
linker - virtual and physical addresses of sections in elf files
How does objdump compute the physical address (LMA) of elf sections? As far as I can tell, elf section headers ... /www.ouah.org/RevEng/x430.htm See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
0
votes
426
views
1
answer
linker - Single-command compile and link fails, separate steps work
While I was trying to solve a linker problem with g++, I found that trying to compile link a simple one-file ... that this is a little buggy. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
linker
Page:
1
2
3
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] go - Why won't calibre read the metadata on a recreated .epub file?
[2] nginx 子域名http转https问题
[3] sorting - LISP sort list of lists by 2 arguments
[4] 关于无限级分类的思考
[5] api - Converting Google Sheet to Excel then sending as an email attachment works, but cannot access XLXS file (Unauthorized Error 401)
[6] Unable to change a variable in running python program
[7] @ManyToOne如何更新主键
[8] javascript - How do I implement overflow-hidden in react-bootstrap?
[9] api - Information about tracking system
[10] java - Figuring out the efficiency of this method
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...