I changed the Java JDK version to version 8, redefined the environment variables, reinstalled the JCC module successfully and changed the Makefile to have:
JAVA_HOME = C:/PROGRA~1/Java/jdk1.8.0_231
And now when I hit 'make' this error occurred:
While loading org/apache/pylucene/util/PythonComparable
Traceback (most recent call last):
File "D:\Anaconda\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "D:\Anaconda\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "D:\Anaconda\lib\site-packages\jcc-3.7-py3.7-win-amd64.egg\jcc\__main__.py", line 107, in <module>
cpp.jcc(sys.argv)
File "D:\Anaconda\lib\site-packages\jcc-3.7-py3.7-win-amd64.egg\jcc\cpp.py", line 651, in jcc
cls = findClass(className.replace('.', '/'))
File "D:\Anaconda\lib\site-packages\jcc-3.7-py3.7-win-amd64.egg\jcc\cpp.py", line 44, in findClass
cls = _findClass(className)
jcc.cpp.JavaError: Java Error
make: *** [Makefile:386: compile] Error 1
What could be a possible solution?