This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
en:tutorials:orx:linux:compiling-orx-linux [2020/08/31 06:38 (5 months ago)] sausage ↷ Page moved from en:tutorials:community:grey:compiling-orx-linux to en:tutorials:orx:linux:compiling-orx-linux |
en:tutorials:orx:linux:compiling-orx-linux [2020/10/02 15:45 (4 months ago)] iarwain Removed freeglut |
||
---|---|---|---|
Line 10: | Line 10: | ||
<code> | <code> | ||
== IMPORTANT - Make sure the following libraries are installed on your system: | == IMPORTANT - Make sure the following libraries are installed on your system: | ||
- | ==[ freeglut3-dev ] | ||
==[ libsndfile1-dev ] | ==[ libsndfile1-dev ] | ||
==[ libopenal-dev ] | ==[ libopenal-dev ] | ||
Line 20: | Line 19: | ||
On linux, these dev libraries are sometimes missing from fresh installs. Or you might have only 64-bit or 32-bit versions of the following libraries. You'll need to add them using your favourite package manager (apt, yum, pacman, rpm etc...). In order to get the 64-bit libraries using something like Ubuntu: | On linux, these dev libraries are sometimes missing from fresh installs. Or you might have only 64-bit or 32-bit versions of the following libraries. You'll need to add them using your favourite package manager (apt, yum, pacman, rpm etc...). In order to get the 64-bit libraries using something like Ubuntu: | ||
- | * apt-get install freeglut3-dev | ||
* apt-get install libsndfile1-dev | * apt-get install libsndfile1-dev | ||
* apt-get install libopenal-dev | * apt-get install libopenal-dev | ||
Line 27: | Line 25: | ||
And, if you want to distribute your game or application more widely, you might want to consider compiling on 32-bit. For that you'll need to install the 32-bit versions to your linux machine with: | And, if you want to distribute your game or application more widely, you might want to consider compiling on 32-bit. For that you'll need to install the 32-bit versions to your linux machine with: | ||
- | * apt-get install freeglut3-dev:i386 | ||
* apt-get install libsndfile1-dev:i386 | * apt-get install libsndfile1-dev:i386 | ||
* apt-get install libopenal-dev:i386 | * apt-get install libopenal-dev:i386 |