Building OSSv4 from source
Contents
- 1 Building the OSS sound system from source
- 1.1 Requirements to build the source code
- 1.2 Building the source
- 1.3 Testing the Open Sound System
- 2 Errors during build
- 2.1 Error: Cannot open: No such file or directory
- 2.2 Error: Too many levels of symbolic links
- 2.3 Error: No such file or directory
- 2.4 Error: undefined reference to `oss_strcmp'
- 2.5 Error related to "warnings being treated as errors"
- 2.6 Error: /bin/sh: scripts/mod/modpost: No such file or directory
- 2.7 Error: cp: cannot stat `lib/libsalsa/.libs/libsalsa.so.2.0.0': No such file or directory
- 2.8 Error: No rule to make target `/usr/lib/oss/build/osscore_mainline.c', needed by `/usr/lib/oss/build/osscore_mainline.o'. Stop.
- 3 Top Five Regrets of the Dying
- 4 Would Gandhi Use Social Media?
- 5 5 Principles for Inner Transformation at Work
- 6 7 Reasons Why Not Making Mistakes Is The Biggest Mistake
- 7 10 Keys to Happier Living
Building the OSS sound system from source
Requirements to build the source code
- OS: Linux 2.6+, Solaris v10+, FreeBSD 6+, UnixWare7
- OS system headers, development libraries
- Compiler: GCC, Sun Studio 10+, UnixWare C Compiler
Optional dependencies
- Tools: GNU gawk - (Solaris versions at: http://www.sun.com/software/solaris/freeware/s10pkgs_download.xml). Used for creating man pages with txt2man. OSS fallbacks to a small C program to do this if gawk isn't there - result is uglier but usable.
- Graphics Libraries: Runtime libraries and header files for GTK1 or for GTK2. Required to build the graphical mixer ossxmix.
- Tools: libtool. Can be used only under Linux in order to build libsalsa.
Building the source
Basic use of the build system is close to autoconf-based build system ("configure && make && make install"), with one very important difference: The OSS build system must use separate build and source directories (unlike GNU autoconf where both are mixed), so a command like "./configure" will NOT work. These instructions will show how it's used.
Obtain the OSS source
Mercurial repository - requires mercurial to get the source, e.g.
hg clone http://opensound.hg.sourceforge.net/hgweb/opensound /usr/src/oss
Change to the source directory
cd /usr/src
Extract the source tarball
This step is only needed if you didn't use mercurial earlier.
tar -xvjf ~/oss-v*.tar.bz2
Create a build directory, and make it current
rm -rf ~/oss mkdir ~/oss cd ~/oss
The build directory must be empty. Under OSSv4.0 and OSSv4.1, do not use a directory which is a subdirectory of the extracted source - the configure script will fail.
Run the configure script
Note that the configure script must be invoked using a full pathname when compiling OSSv4 version 4.0, as its configure script will fail if a relative pathname is used.
/usr/src/oss*/configure
Notable configure switches (optional)
- GTK1 environment variable: Force use of GTK1 for ossxmix rather than GTK2.
- NO_WARNING_CHECKS env var: don't use -Werror and -Wall flags.
- --only-drv=[list]: Compile only the drivers listed in the comma delimited list. Note: don't forget oss_ prefix e.g. oss_audigyls
- --config-vmix=NO|FLOAT|FIXEDPOINT: Don't compile vmix (NO)/Use only integer arithmetic for vmix (FIXEDPOINT)/Use floating arithmatic (FLOAT). Compiling on Linux defaults to FLOAT, all else defaults to FIXEDPOINT.
- --enable-libsalsa=NO: Don't build libsalsa (Linux only - other OSs don't build libsalsa).
Run make build
make build
Packing Open Sound System (optional)
make package
The package target creates a native package for the currently compiled-for OS. On Linux an RPM package will be generated.
There are two alternative targets when compiling for the Linux OS:
- make deb
- make tarball
The first creates a OSS package in debian's DEB format. The second creates a tarball of OSS.
Installing the OSS kernel modules
The kernel modules are built during a separate phase of the installation. It is necessary to become root to build the kernel modules:
su root make install
This will create the appropriate kernel modules, and the Open Sound System tools.
- Alternately, you can install the package created by the package targets above to the same effect as the "make install" command.
Installation is now complete.
Testing the Open Sound System
To test the Open Sound System:
soundon osstest
Errors during build
Error: Cannot open: No such file or directory
This error can occur when tar tries to extract to /usr/src but doesn't have write permissions.
bunzip2 -c /tmp/oss-v4.1-build*-src-gpl.tar.bz2 | tar xvf - oss-v4.1-build080509-src-gpl/RELNOTES.txt tar: oss-v4.1-build080509-src-gpl/RELNOTES.txt: Cannot open: No such file or directory tar: Error exit delayed from previous errors
Resolution
Use a directory which you have write permissions to, or change to root (su/sudo), or change /usr/src permissions to allow writing.
Error: Too many levels of symbolic links
This error may occur when the configure script is being run within a subdirectory of the source directory. The problem does not occur in OSS v4.2 and above as it has been modified to support this.
# This may produce an error cd ~/oss-v* mkdir build cd build ../configure
This produces an error:
../build/cmd/.config: Too many levels of symbolic links
Resolution
Use a build directory outside of the current project directory:
cd mkdir oss cd oss /usr/src/oss/oss-v*/configure
Error: No such file or directory
The configure script must be invoked using a full pathname. This error occurs, if a relative pathname is used. This restriction does not apply to version 4.1 and above.
Scanning . Scanning ./cmd Scanning ./cmd/ossdevlinks ./cmd/ossdevlinks/ossdevlinks.c: No such file or directory
Resolution
Invoke the configure script with a full pathname.
Error: undefined reference to `oss_strcmp'
ossdevlinks.c:(.text+0x21c): undefined reference to `oss_strcmp'
Resolution
You probably have had CFLAGS, OSFLAGS or LIBRARIES set in the environment before running configure. The best option is to unset them all and not to try to pass manual flags via configure - it's unlikely any flags will provide any performance gain at all, and far more likely they'll make the compilation fail somewhere.
cc1: warnings being treated as errors
Resolution
OSS compile uses -Wall and -Werror. A few compilers/headers may be more strict than the usual, causing the compile to fail. Set the NO_WARNING_CHECKS environment variable when calling configure to avoid this.
Error: /bin/sh: scripts/mod/modpost: No such file or directory
This error may occur during "make install". The error occurs because the kernel headers scripts have not been built.
Resolution
Build the kernel header scripts as follows:
cd /usr/src/linux make scripts
Error: cp: cannot stat `lib/libsalsa/.libs/libsalsa.so.2.0.0': No such file or directory
This error occurs during compilation.
Resolution
This error can be safely ignored.
Error: No rule to make target `/usr/lib/oss/build/osscore_mainline.c', needed by `/usr/lib/oss/build/osscore_mainline.o'. Stop.
This error occurs during installation.
Resolution
"- ... \n
Top Five Regrets of the Dying
For many years I worked in palliative care. My patients were those who had gone home to die. Some incredibly special times were shared. I was with them for the last three to twelve weeks of their lives.
[Top Five Regrets of the Dying]
[GoodvilleNews.com - good, positive news, inspirational stories, articles]
Would Gandhi Use Social Media?
If Gandhi were alive today, would he use social media? He was never anti-technology, or even anti-changing with the times. Quite the opposite, actually. If Internet technologies and social networks were around, he would certainly have embraced them -- but with a conscious mindfulness of their strengths and weaknesses.
[Would Gandhi Use Social Media?]
[GoodvilleNews.com - good, positive news, inspirational stories, articles]
5 Principles for Inner Transformation at Work
People go to work to sustain themselves and produce value in the world. Yet work environments can also be stressful, filled with challenging responsibilities and personalities, and feel misaligned with our most deeply cherished values. Instead of sustaining us, the workplace can sometimes feel simply draining, and at worst, unwholesome for both ourselves and the world.
[5 Principles for Inner Transformation at Work]
[GoodvilleNews.com - good, positive news, inspirational stories, articles]
7 Reasons Why Not Making Mistakes Is The Biggest Mistake
The FEAR of being nothing, achieving nothing and becoming nothing should be way bigger than the fear of making mistakes.A life spent making mistakes is not only more honorable, but more useful than a life spent doing nothing. ~ George Bernard Shaw
[7 Reasons Why Not Making Mistakes Is The Biggest Mistake]
[GoodvilleNews.com - good, positive news, inspirational stories, articles]
10 Keys to Happier Living
Action for Happiness has developed the 10 Keys to Happier Living based on a review of the latest scientific research relating to happiness. Everyones path to happiness is different, but the research suggests these Ten Keys consistently tend to have a positive impact on peoples overall happiness and well-being.
[10 Keys to Happier Living]
[GoodvilleNews.com - good, positive news, inspirational stories, articles]