Skip to content

Commit 038ae17

Browse files
CzarekCzarek
authored andcommitted
Fix the error when building the subprocess project, the libcef.so
library couldn't be found when linking.
1 parent a49892b commit 038ae17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cefpython/cef3/subprocess/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
INC = -I./../ -I/usr/include/python2.7 -I/usr/include/gtk-2.0 -I/usr/include/glib-2.0 -I/usr/lib/i386-linux-gnu/gtk-2.0/include -I/usr/lib/i386-linux-gnu/glib-2.0/include -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/atk-1.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include
66

7-
LIB = -L./../linux/setup/lib_64bit -L./../linux/setup/lib_32bit
7+
LIB = -L./../linux/setup/lib_64bit -L./../linux/setup/lib_32bit -L./../linux/binaries_64bit -L./../linux/binaries_32bit
88

99
subprocess:
1010
# Cython compiler options:
11-
# -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro
11+
# -fPIC -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro
1212
g++ -fPIC $(INC) $(LIB) main.cpp -lcef_dll_wrapper -lcef -o subprocess -Wl,-rpath,.

0 commit comments

Comments
 (0)