LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   gcc only creates .o files, does not link (https://www.linuxquestions.org/questions/linux-newbie-8/gcc-only-creates-o-files-does-not-link-677678/)

jmite 10-19-2008 10:01 PM

gcc only creates .o files, does not link
 
Okay, I'm using osx for this, but it's gcc, and linux people are smart, so I'm asking it here.

I used the gcc to compile wxwidgets. I ran the following commands:

cd /path/to/wxmac-2.8.9
mkdir build-release
cd build-release
../configure --disable-shared --enable-unicode --prefix=$(pwd)
make

However, all I get are a number of .o files. I'm really new to gcc, does anyone know what I did wrong?

Thanks!

jschiwal 10-19-2008 10:31 PM

wxWidgets installs libraries, locale files and text files. There are no executables. You still need to run "sudo make install".

You use the wxWidget libraries with gcc to produce your own programs using these libraries.


All times are GMT -5. The time now is 01:24 AM.