Page 1 of 1

Compile fails on SVN Audacity in OpenSUSE [SOLVED]

Posted: Sun Sep 28, 2014 2:28 pm
by Etna
I'm currently attempting to build and install Audacity on OpenSUSE 12.2, x64.

And I have followed all the instructions listed in the following pages:
http://wiki.audacityteam.org/wiki/Devel ... ng_on_Unix
http://wiki.audacityteam.org/wiki/Compi ... ress_wxGTK

I have my own copy of WxGTK installed in /home/etna/Downloads/Applications/Audacity/dependencies. To make the compiler aware of the libraries, I have also done the following step:

Code: Select all

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/etna/Downloads/Applications/Audacity/dependencies/lib64
I have also configured Audacity with the following:

Code: Select all

WX_CONFIG=/home/etna/Downloads/Applications/Audacity/dependencies/bin/wx-config ./configure --with-libvorbis --with-libflac --with-ffmpeg --with-lame --with-libid3tag --with-libmad --prefix=/home/etna/Downloads/Applications/Audacity
However, when running make, the build fails at the linker stage with a ton of messages pointing to undefined reference to 'wxString...' as shown in the pastebin link: http://pastebin.com/wKf9gF6T

Any assistance will be greatly appreciated.

Re: Compile fails on SVN version of Audacity in OpenSUSE

Posted: Sun Sep 28, 2014 3:30 pm
by steve
Etna wrote: And I have followed all the instructions listed in the following pages:
http://wiki.audacityteam.org/wiki/Devel ... ng_on_Unix
http://wiki.audacityteam.org/wiki/Compi ... ress_wxGTK
In http://wiki.audacityteam.org/wiki/Compi ... ress_wxGTK did you do the step labelled "Instant gratification (optional)" and make the "minimal" sample program? Did that run correctly?

Re: Compile fails on SVN version of Audacity in OpenSUSE

Posted: Tue Sep 30, 2014 9:43 am
by Gale Andrews
Did you build shared libraries of wxGTK?

Did you you build unicode release version of wxGTK and is that the default version? Check at:

Code: Select all

wx-config --list



Gale

Re: Compile fails on SVN Audacity in OpenSUSE [SOLVED]

Posted: Mon Nov 03, 2014 6:43 am
by Etna
It was compiled with Unicode support.

For some reason, deleting all the sources and rebuilding them once again results in a successful build. Odd.

But hey, at least it's working now.