Closed stephansgit closed 6 years ago
Can you provide the entirety of the output from the initial cmake ..
(the configuration) step?
@kernhanda I've update my initial post with the full output of cmake ..
- please see above.
Thanks for looking into it!
Sorry, please delete CMakeCache.txt
and run cmake ..
again. In particular, I'm looking for your compiler with its full version.
I edited my original post for missing information. If it helps:
cmake --version
gives cmake version 3.11.3
;
gcc-8 --version
gives gcc-8 (Ubuntu 8.1.0-5ubuntu1~16.04) 8.1.0
Thanks. While you have GCC 8 installed, the cmake configuration step is using GCC 5.5.0.
-- The C compiler identification is GNU 5.5.0 -- The CXX compiler identification is GNU 5.5.0
Try deleting CMakeCache.txt
and running the following CC=gcc-8 CXX=g++-8 cmake ..
and then try building.
@kernhanda, this solved the issue. Thanks, really glad you took the time to look into it!
error.txt Hi @kernhanda , Am stuck at the same error Thanks in advance, Varsha
error.txt Hi @kernhanda , Am stuck at the same error Thanks in advance, Varsha
I don't see an error in your link. Just some CMake warnings that can be safely ignored. Do you see a failure when you build? If so, please open a new issue.
I don't find the _model.pyd file in build/Release folder as mentioned in https://github.com/Microsoft/ELL/issues/101. I dont see a Release folder infact.
This is my terminal:
(py36) varshalalapura@hpcl011:~/Desktop/git-prjoects/ELL/ELL/tools/wrap/host$ python call_model.py
Traceback (most recent call last):
File "/home/varshalalapura/Desktop/git-prjoects/ELL/ELL/tools/wrap/host/model.py", line 14, in swig_import_helper
return importlib.import_module(mname)
File "/home/varshalalapura/anaconda3/envs/py36/lib/python3.6/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "call_model.py", line 18, in
Do I open an issue freshly? Thank you for your time and response, Varsha
Varsha I think your issue is unrelated to the original issue #179 here, can you open a new issue and provide more context on what you are trying to do? Are you building some tutorial ? Also Can you compare your call_model.py with this one?
Yes Sir, am trying to build a tutorial , image classification on RPi, have opened a new issue, #208
Thank you for your time and response, Varsha
I am trying to build on Linux Mint 18.3.
make
fails early in the process, related toArchiver.cpp.o
onTypeTraits.h
:Before that,
cmake ..
works, but gives some warnings:It looks like something very basic, but searching for the message does not reveal anything. So I appreciate any support.
Thanks!