Open sebtheiler opened 10 months ago
Running ./compilePG.sh
with OF 0.11.0 from that link results in the following errors:
make: Entering directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/apps/projectGenerator/commandLine'
Compiling OF library for Release
make[1]: Entering directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project'
Done!
make[1]: Leaving directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project'
Compiling projectGenerator for Release
make[1]: Entering directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/apps/projectGenerator/commandLine'
/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project/makefileCommon/config.addons.mk:210: *** missing separator. Stop.
make[1]: Leaving directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/apps/projectGenerator/commandLine'
make: *** [/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk:129: Release] Error 2
make: Leaving directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/apps/projectGenerator/commandLine'
There has been a problem compiling the command line projectGenerator.
Please report this problem in the forums.
Which is why I had tried 0.12.0. Do you know if there is a simple fix for this, or should I report it on the OF forums?
Weird, haven't seen that before.
Is there a conflict in the make
version they want us to use vs what you are using? I don't think they specify anything, so might be a tad tricky to find that out.
Found a similar issue on github with that suggestion.
Also, you don't need to have a compiled project generator
to use EmotiBit Software. Once you have downloaded the OF bundle and run scripts to compile the OF libraries, you can just get the required addons and proceed to compile EmotiBitOscilloscope as documented in the readme.
Interested to see if that works.
Also, you don't need to have a compiled project generator to use EmotiBit Software. Once you have downloaded the OF bundle and run scripts to compile the OF libraries, you can just get the required addons and proceed to compile EmotiBitOscilloscope as documented in the readme.
I've tried that (and would prefer it to downgrading my make version, though that might potentially work for compiling project generator as I do have make 4.3, which the user in the issue you mentioned also had before downgrading), but I'm getting the following errors:
sebtheiler@shuttlecraft:~/Code/emotibit/of_v0.11.0_linux64gcc6_release/addons/ofxEmotiBit/EmotiBitOscilloscope$ make
Compiling OF library for Release
make[1]: Entering directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project'
Done!
make[1]: Leaving directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project'
Compiling EmotiBitOscilloscope for Release
make[1]: Entering directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/addons/ofxEmotiBit/EmotiBitOscilloscope'
/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project/makefileCommon/config.addons.mk:210: *** missing separator. Stop.
make[1]: Leaving directory '/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/addons/ofxEmotiBit/EmotiBitOscilloscope'
make: *** [/home/sebtheiler/Code/emotibit/of_v0.11.0_linux64gcc6_release/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk:129: Release] Error 2
This is after running ./compileOF.sh
and following the rest of the instructions in the README, other than ./compilePG.sh
.
I had thought that compiling the project generator would fix this, but I'm not sure anymore. I can still attempt to downgrade my make version and compile it if you believe that's worth persuing.
Describe the bug I've followed the instructions on the README and have been successful up until I try to run
make
in(OF_ROOT)/addons/ofxEmotiBit/EmotiBitOscilloscope
. I was able to compile OF, run the polygon example, and theprojectGenerator
CLI is working. Runningmake
results in the following errors:Additional details
OS: Pop!_OS 22.04 LTS x86_64 (equivalent to Ubuntu 22.04)
OF Version: of_v0.12.0_linux64gcc6_release
gcc -v
:ls addons
I've confirmed that
ofxNetworkUtils
,ofxSerial
, andofxIO
are in thestable
branch.