LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   newbie c++ compiling class question (https://www.linuxquestions.org/questions/programming-9/newbie-c-compiling-class-question-148179/)

true_atlantis 02-19-2004 05:56 PM

newbie c++ compiling class question
 
i have an assignment for school that i need to write a SavingsAccount class, how do i compile an external class?? i have these files already created

SavingsAccount.h
SavingsAccount.cpp
SavingsAcctTest.cpp


thanks

ucsb_andrew 02-19-2004 07:17 PM

gcc -c SavingsAccount.cpp
gcc -o SavingsAcctTest SavingsAcctTest.cpp SavingsAccount.o

wapcaplet 02-19-2004 10:33 PM

Or just compile them all together:

gcc SavingsAccount.cpp SavingsAcctTest.cpp -o SavingsAcctTest

gr33ndata 02-20-2004 04:47 PM

Or make a makefile :D

chewysplace 02-20-2004 08:34 PM

gr33ndata beat me to it :D

ummm using gcc on a .cpp file might give you an error so try g++.


All times are GMT -5. The time now is 07:59 AM.