linux上安装openal

GitHub - JogAmp/openal-soft: Original: git://repo.or.cz/openal-soft.giticon-default.png?t=LA92https://github.com/JogAmp/openal-soft

1、下载安装包

OpenAL Soft - Software 3D Audio

https://openal-soft.org/openal-releases/openal-soft-1.21.1.tar.bz2

或者:git 

git clone https://github.com/JogAmp/openal-soft.git

2、安装

cd openal-soft 
cd build 
cmake .. 
make 

3、如果没有错误,然后安装:

sudo make install 

4、配置

sudo ln /usr/local/lib/libopenal.so.1 /usr/lib/libopenal.so.1
sudo ldconfig

5、就可以使用了

gcc test.cpp -o test -lopenal
./test

你可能感兴趣的:(工具,linux,运维,服务器)