This repository was archived by the owner on Jun 25, 2020. It is now read-only.
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ Note that juCi++ must be run in a MinGW Shell (for instance MinGW-w64 Win64 Shel
143
143
144
144
Install dependencies (replace ` x86_64 ` with ` i686 ` for 32-bit MSYS2 installs):
145
145
``` sh
146
- pacman -S git mingw-w64-x86_64-cmake make mingw-w64-x86_64-toolchain mingw-w64-x86_64-clang mingw-w64-x86_64-gtkmm3 mingw-w64-x86_64-gtksourceviewmm3 mingw-w64-x86_64-boost mingw-w64-x86_64-aspell mingw-w64-x86_64-aspell-en
146
+ pacman -S git mingw-w64-x86_64-cmake make mingw-w64-x86_64-toolchain mingw-w64-x86_64-clang mingw-w64-x86_64-gtkmm3 mingw-w64-x86_64-gtksourceviewmm3 mingw-w64-x86_64-boost mingw-w64-x86_64-aspell mingw-w64-x86_64-aspell-en mingw-w64-x86_64-gobject-introspection mingw-w64-x86_64-pygobject-devel mingw-w64-x86_64-python3-gobject
147
147
```
148
148
149
149
Get juCi++ source, compile and install (replace ` mingw64 ` with ` mingw32 ` for 32-bit MSYS2 installs):
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ inline pybind11::module pyobject_from_gobj(gpointer ptr){
27
27
Python::Interpreter::Interpreter (){
28
28
#ifdef _WIN32
29
29
auto root_path=Config::get ().terminal .msys2_mingw_path ;
30
- append_path (root_path/" include/python3.5m" );
31
- append_path (root_path/" lib/python3.5" );
30
+ add_path (root_path/" include/python3.5m" );
31
+ add_path (root_path/" lib/python3.5" );
32
32
long long unsigned size = 0L ;
33
33
#else
34
34
long unsigned size = 0L ;
@@ -95,7 +95,7 @@ Python::Interpreter::Interpreter(){
95
95
for (boost::filesystem::directory_iterator it (plugin_path);it!=end_it;it++){
96
96
auto module_name=it->path ().stem ().string ();
97
97
if (module_name.empty ())
98
- break ;
98
+ continue ;
99
99
auto is_directory=boost::filesystem::is_directory (it->path ());
100
100
auto has_py_extension=it->path ().extension ()==" .py" ;
101
101
auto is_pycache=module_name==" __pycache__" ;
You can’t perform that action at this time.
0 commit comments