SuperPlay
SuperPlay copied to clipboard
compilation error: ../../External/Hekkus/include/include/hssData.h:21:19: fatal error: Array.h: No such file or directory
when I try to compile with "make" on my linux machine, I get this output when trying to compile Hekkus...
make -C SoundLib/Hekkus
make[1]: Entering directory `/home/lowagner/code/SuperPlay/SoundLib/Hekkus'
mkdir -p Release
g++ -O3 -I../Include -I../../Include -I../../PlatformLib/Linux -I../../SuperPlayLib/Include -I../../External/Hekkus/include -O3 -c Sound.cpp -o Release/Sound.o
In file included from ../../External/Hekkus/include/include/hssChannel.h:13:0,
from ../../External/Hekkus/include/include/hssSpeaker.h:13,
from ../../External/Hekkus/include/HSS.h:84,
from SoundSystem.h:13,
from Sound.cpp:14:
../../External/Hekkus/include/include/hssData.h:21:19: fatal error: Array.h: No such file or directory
#include "Array.h"
^
compilation terminated.
make[1]: *** [Release/Sound.o] Error 1
make[1]: Leaving directory `/home/lowagner/code/SuperPlay/SoundLib/Hekkus'
make: *** [build-SoundLib/Hekkus] Error 2
still having trouble compiling Hekkus for linux.
It seems you've deleted HSS.h from External/Hekkus/include, but Hekkus wants it to compile...
make -C SoundLib/Hekkus
make[1]: Entering directory `/home/lowagner/code/SuperPlay/SoundLib/Hekkus'
mkdir -p Release
g++ -O3 -I../Include -I../../Include -I../../PlatformLib/Linux -I../../SuperPlayLib/Include -I../../External/Hekkus/include -O3 -c Sound.cpp -o Release/Sound.o
In file included from Sound.cpp:14:0:
SoundSystem.h:13:17: fatal error: HSS.h: No such file or directory
#include <HSS.h>
^
compilation terminated.
You need to manually include the HSS library and headers. I didn't want to step on any toes by including a version of HSS..