Changes to installation and building DSP projects
Re: Changes to installation and building DSP projects
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
they are most likely brokenex0r wrote: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
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
to
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)
Code: Select all
LUA_REQUIRED_VERSION=5.1
PKG_CHECK_MODULES(LUA, lua >= LUA_REQUIRED_VERSION)
Re: Changes to installation and building DSP projects
Awesome zedingo. Thank you for this. Ill try it when I get home. Will be helpful when testing some dspweb features.
-
- Developer
- Posts: 707
- Joined: Sun Jul 22, 2012 12:11 am
Re: Changes to installation and building DSP projects
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.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.actoCode: Select all
LUA_REQUIRED_VERSION=0.25 PKG_CHECK_MODULES(LUA, lua5.1 >= LUA_REQUIRED_VERSION)
Code: Select all
LUA_REQUIRED_VERSION=5.1 PKG_CHECK_MODULES(LUA, lua >= LUA_REQUIRED_VERSION)