Questions tagged [libgcc]
67 questions
0
votes
1 answer
Using javacpp-preset/tesseract crashes java on exit
I am trying to use Tesseract to have OCR functionality in a Java application. To achieve this, I am using the Java/Tesseract bridge found here.
pom.xml dependency:
org.bytedeco.javacpp-presets
…

Kurtibert
- 638
- 1
- 5
- 16
0
votes
1 answer
Ubuntu gcc compile errors
When I compile my program with the command
gcc -o ****** -Xlinker -Bstatic -L/usr/lib -lf2c -lm
an error occurs
usr/bin/ld: cannot find -lgcc_s
Who can tell me the way to solve this error? The version of my system is 32bit Ubuntu 13.04, gcc 4.6.…

hongbinLi Peter
- 1
- 2
0
votes
0 answers
Link libgcc statically or not? (linux)
Does linking libgcc statically improve backwards compatibility of binaries on Linux?
Are there Linux distros that doesn't ship it by default? Or maybe older Linuxes have one with an older, incompatible ABI?
user519179
0
votes
1 answer
.NET x32 targeted app running as x64 on Ubuntu
So I'm trying to debug an issue my user is having with a piece of software on Ubuntu.
I have compiled a C# app targeted towards the the x86 platform, when running it on my x64 windows image the app operates as a x32 application.
However when…

user3037561
- 271
- 2
- 10
0
votes
1 answer
/usr/local/lib/gcc/x86_64-apple-darwin10.8.0/4.6.4/libgcc.a warning
I have a warning involving /usr/local/lib/gcc/x86_64-apple-darwin10.8.0/4.6.4/libgcc.a. I was trying to compile a C++ project using a Makefile, which shows the following:
executeit: bplustree.o nonleafnode.o leafnode.o
g++ -o executeit…

bhlee90
- 9
- 4
0
votes
1 answer
Mac executable with GCC 4.8 without MacPorts dependency
gcc-mp-4.8 test.c
otool -L a.out
shows that the executable is linked with /opt/local/lib/gcc48/libgcc_s.1.dylib, and that's not what I want, because the path won't exist on a stock Mac OS X system.
How can I use MacPorts-installed GCC 4.8 to build…

Kornel
- 97,764
- 37
- 219
- 309
0
votes
2 answers
c++ program failed to run on another pc with libgcc error
I wrote some simple code in C++, and I built it and ran it on my laptop, and everything as working. When I tried to run the .exe file on my brother's laptop, it gave me this error The program can't start because libgcc_s_sjlj-1.dll is missing from…

hakuna matata
- 3,243
- 13
- 56
- 93