Page 3 of 3

Re: Changes to installation and building DSP projects

Posted: Sat Jan 11, 2014 10:01 am
by ex0r
Has anything changed to the linux counterpart ? With bk if the installation has changed than linux compiles/installs are probably broken.

Re: Changes to installation and building DSP projects

Posted: Sat Jan 11, 2014 2:46 pm
by kjLotus
ex0r wrote:Has anything changed to the linux counterpart ? With bk if the installation has changed than linux compiles/installs are probably broken.
they are most likely broken

Re: Changes to installation and building DSP projects

Posted: Tue Jan 14, 2014 4:03 am
by Zedingo
Just update GCC to the newest you can for your distro, or build your own toolchain, for the best C++11 support. You should be good to go after that.

To skip the stupid step about symlinking LUA, change these lines in configure.ac

Code: Select all

LUA_REQUIRED_VERSION=0.25
PKG_CHECK_MODULES(LUA, lua5.1 >= LUA_REQUIRED_VERSION)
to

Code: Select all

LUA_REQUIRED_VERSION=5.1
PKG_CHECK_MODULES(LUA, lua >= LUA_REQUIRED_VERSION)

Re: Changes to installation and building DSP projects

Posted: Wed Jan 15, 2014 9:24 am
by ex0r
Awesome zedingo. Thank you for this. Ill try it when I get home. Will be helpful when testing some dspweb features.

Re: Changes to installation and building DSP projects

Posted: Sun Jan 26, 2014 4:01 am
by bluekirby0
Zedingo wrote:Just update GCC to the newest you can for your distro, or build your own toolchain, for the best C++11 support. You should be good to go after that.

To skip the stupid step about symlinking LUA, change these lines in configure.ac

Code: Select all

LUA_REQUIRED_VERSION=0.25
PKG_CHECK_MODULES(LUA, lua5.1 >= LUA_REQUIRED_VERSION)
to

Code: Select all

LUA_REQUIRED_VERSION=5.1
PKG_CHECK_MODULES(LUA, lua >= LUA_REQUIRED_VERSION)
Unfortunately whether the .so name is lua or lua5.1 depends on the distro. I mainly test on debian and lubuntu so thats what linux stuff tends to focus on. I reserve the right to be lazy since there isn't much interest in linux use.