projectGenerator
projectGenerator copied to clipboard
cannot compile projectGenerator
- openFrameworks 0.11.0
- linux 5.4.23-1 manjaro linux (arch linux based)
since last system update, projectGenerator is not working. I have multiple linux device(laptop and lenovo p330). both are not work (but different error)
[p330]
projectGenerator: error while loading shared libraries: libPocoFoundation.so.64: cannot open shared object file: No such file or directory
[lenovo thinkpad 25Anniverssary]
projectGenerator: error while loading shared libraries: libboost-1.71.0 shared library missing.
I tried re compile projectGenerator with compilePG.sh where _OF_/scripts/linux, but cannot.
here's log
Compiling projectGenerator for Release
make[1]: Entering directory '/home/p330/oF/apps/projectGenerator/commandLine'
/home/p330/oF/libs/openFrameworksCompiled/project/makefileCommon/config.addons.mk:210: *** missing separator. Stop.
make[1]: Leaving directory '/home/p330/oF/apps/projectGenerator/commandLine'
make: *** [/home/p330/oF/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk:129: Release] Error 2
make: Leaving directory '/home/p330/oF/apps/projectGenerator/commandLine'
There has been a problem compiling the command line projectGenerator.
Please report this problem in the forums.
config.addons.mk
210 $(foreach addon_to_parse, $(PROJECT_ADDONS), \
211 $(call parse_addon,$(addon_to_parse)) \
212 )
compile.project.mk
Release:
124 @echo Compiling OF library for Release
125 @$(MAKE) -C $(OF_ROOT)/libs/openFrameworksCompiled/project/ Release PLATFORM_OS=$ (PLATFORM_OS) ABIS_TO_COMPILE_RELEASE="$(ABIS_TO_COMPILE_RELEASE)"
126 @echo
127 @echo
128 @echo Compiling $(APPNAME) for Release
129 ifndef ABIS_TO_COMPILE_RELEASE
130 @$(MAKE) ReleaseABI
131 else
132 @$(foreach abi,$(ABIS_TO_COMPILE_RELEASE),$(MAKE) ReleaseABI ABI=$(abi) &&) echo
133 endif
by the way, I wrote thread on OF forum.
https://forum.openframeworks.cc/t/projectgenerator-is-not-work-with-libboost-1-72-0/34712
it turns out that make v4.3 related issue. I downgrade to 4.2.1 and can compile.
@icq4ever can you please check it again if the issue still persists?