Home
Forums
Library
Links
Bounties
Login Block
Nickname
Password
Lost Password?
Don't have an account?
Register now!
Search
Advanced Search
Forum Index
»
Developer Forums
»
SDK
Linking C++ programs with GCC
Minuous
# 1
Order of the Butterfly
Posts: 163 from 2010/2/13
I'm using this script:
gcc -noixemul -x c++ -O1 -o amiga.o -c amiga.c -I../source/
gcc -noixemul -x c++ -O1 -o ahi.o -c ahi.c -I../source/
gcc -noixemul -x c++ -O1 -o unzip.o -c unzip.c -I../source/
gcc -noixemul -x c++ -O1 -o cart.o -c cart.cpp -I../source/
gcc -noixemul -x c++ -O1 -o handy.o -c handy.cpp -I../source/
gcc -noixemul -x c++ -O1 -o system.o -c system.cpp -I../source/
gcc -noixemul -x c++ -O1 -o susie.o -c susie.cpp -I../source/
gcc -noixemul -x c++ -O1 -o rom.o -c rom.cpp -I../source/
gcc -noixemul -x c++ -O1 -o ram.o -c ram.cpp -I../source/
gcc -noixemul -x c++ -O1 -o mikie.o -c mikie.cpp -I../source/
gcc -noixemul -x c++ -O1 -o memmap.o -c memmap.cpp -I../source/
gcc -noixemul -o ../Handy amiga.o ahi.o unzip.o cart.o handy.o system.o susie.o rom.o ram.o mikie.o memmap.o
and I keep getting these kinds of errors when linking:
undefined reference to 'ios virtual table'
undefined reference to 'strstreambase::ios virtual table'
undefined reference to 'streambuf::streambuf(int)'
undefined reference to 'strstreambuf virtual table'
etc...
This source code compiles and links fine with StormC in GCC mode, and I can compile and link C programs with GCC without problems.
Is there another file I should be linking with, if so, what? Thanks.
»
05.08.12
-
03:09
Krashan
# 2
MorphOS Developer
Posts: 1107 from 2003/6/11
From: Białystok...
I suggest to use "g++" invocation of the compiler at linking stage.
[ Edited by Krashan 05.08.2012 - 06:46 ]
RastPort
»
05.08.12
-
07:46
Fab
# 3
MorphOS Developer
Posts: 1331 from 2003/6/16
g++ indeed, or link with -lstdc++ at the end.
[ Edited by Fab 06.08.2012 - 00:44 ]
»
05.08.12
-
10:18
Minuous
# 4
Order of the Butterfly
Posts: 163 from 2010/2/13
Great, that has fixed the issue. Many thanks.
»
06.08.12
-
00:34