aerys / minko

3D framework for web, desktop and mobile devices.
http://minko.io
Other
904 stars 210 forks source link

What is "-lcef" #238

Closed gerardogc2378 closed 8 years ago

gerardogc2378 commented 8 years ago

On ArchLinux I have this output compiling html-overlay example

$ make config=linux64_release
Running pre-link commands
mkdir -p bin/linux64/release; cp -R /home/ggc/tmp/minko/framework/asset/ bin/linux64/release
mkdir -p bin/linux64/release; cp -R /home/ggc/tmp/minko/plugin/html-overlay/asset/ bin/linux64/release
mkdir -p bin/linux64/release; cp -R /home/ggc/tmp/minko/plugin/html-overlay/lib/resource/locales/ bin/linux64/release
mkdir -p bin/linux64/release; cp -R /home/ggc/tmp/minko/plugin/html-overlay/lib/resource/cef.pak bin/linux64/release
mkdir -p bin/linux64/release; cp -R /home/ggc/tmp/minko/plugin/html-overlay/lib/resource/devtools_resources.pak bin/linux64/release
mkdir -p bin/linux64/release; cp -R asset/ bin/linux64/release
Linking minko-example-html-overlay
+ g++ -o bin/linux64/release/minko-example-html-overlay obj/linux64/release/Main.o -s -m64 -L/usr/lib64 -L../../framework/bin/linux64/release -L../../plugin/html-overlay/lib/linux64 -Wl,--no-as-needed -Wl,-rpath,. -Wl,--start-group ../../framework/bin/linux64/release/libminko-framework.a ../../plugin/html-overlay/bin/linux64/release/libminko-plugin-html-overlay.a ../../plugin/sdl/bin/linux64/release/libminko-plugin-sdl.a ../../plugin/http-loader/bin/linux64/release/libminko-plugin-http-loader.a ../../plugin/http-worker/bin/linux64/release/libminko-plugin-http-worker.a -lGL -lm -lpthread -lSDL2 -lcurl -lcef -Wl,--end-group
/usr/bin/ld: cannot find -lcef

So, What is -lcef?

Noxalus commented 8 years ago

"-lcef" is for Chromium Embedded Framework library. This library is too large to be on the repository, so like said here, you need to download the CEF library files yourself.

gerardogc2378 commented 8 years ago

Thanks