mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
18 lines
1.3 KiB
Plaintext
18 lines
1.3 KiB
Plaintext
STK: A ToolKit of Audio Synthesis Classes and Instruments in C++
|
|
Version 3.0
|
|
|
|
By Perry R. Cook, 1995-99
|
|
and Gary P. Scavone, 1997-99.
|
|
|
|
Please read the file README.txt for more general STK information.
|
|
|
|
STK for Linux is currently using the OSS sound and MIDI API. The free version of OSS will probably work, though it doesn't work with as many soundcards as the commercial version (which costs about $20).
|
|
|
|
STK should compile without much trouble under Linux. Since all Linux distributions typically include the GNU makefile utilities, you should be able to use the default Makefile. Typing "make" will initiate the compilation process.
|
|
|
|
NOTE REGARDING PTHREADS:
|
|
|
|
The only issue which seems to crop up on different versions of Linux concerns threads. I am using the MIT pthreads API. Under RedHat Linux 4.x, I had to specifically include <pthread/mit/pthread.h> (the default pthread library didn't work). However, under RedHat Linux 5.0 and higher, the default works and the <pthread/mit/> path doesn't exist. I've decided to assume the default works. If you get errors with regard to pthreads when you compile, you'll have to search your system for the MIT pthread distribution and change the appropriate include statements in MIDIIO.cpp, MD2SKINI.cpp, and threads.cpp.
|
|
|
|
|