Skip to content

Instantly share code, notes, and snippets.

Created December 1, 2014 06:34
Show Gist options
  • Save anonymous/f208697a8231d5539b24 to your computer and use it in GitHub Desktop.
Save anonymous/f208697a8231d5539b24 to your computer and use it in GitHub Desktop.
Errors I get when I try to build Cling using Mingw-w64.
[ 98%] Building CXX object tools/cling/lib/Interpreter/CMakeFiles/clingInterpreter.dir/ValuePrinter.cpp.obj
In file included from C:\Users\richa_000\cling-build\src\tools\cling\lib\Interpreter\ValuePrinter.cpp:10:0:
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h: In instantiation of 'static T cling::Value::CastFwd<T>::cast(const cling::Value&) [with
T = long double]':
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:209:36: required from 'T cling::Value::simplisticCastAs() const [with T = long double]'
C:\Users\richa_000\cling-build\src\tools\cling\lib\Interpreter\ValuePrinter.cpp:213:48: required from here
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:104:53: error: cast from 'void*' to 'long unsigned int' loses precision [-fpermissive]
return (T) (unsigned long) V.getAs<void*>();
^
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h: In instantiation of 'static T cling::Value::CastFwd<T>::cast(const cling::Value&) [with
T = double]':
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:209:36: required from 'T cling::Value::simplisticCastAs() const [with T = double]'
C:\Users\richa_000\cling-build\src\tools\cling\lib\Interpreter\ValuePrinter.cpp:231:44: required from here
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:104:53: error: cast from 'void*' to 'long unsigned int' loses precision [-fpermissive]
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h: In instantiation of 'static T cling::Value::CastFwd<T>::cast(const cling::Value&) [with
T = long long int]':
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:209:36: required from 'T cling::Value::simplisticCastAs() const [with T = long long int]'
C:\Users\richa_000\cling-build\src\tools\cling\lib\Interpreter\ValuePrinter.cpp:234:49: required from here
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:104:53: error: cast from 'void*' to 'long unsigned int' loses precision [-fpermissive]
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h: In instantiation of 'static T cling::Value::CastFwd<T>::cast(const cling::Value&) [with
T = long long unsigned int]':
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:209:36: required from 'T cling::Value::simplisticCastAs() const [with T = long long unsigned int]'
C:\Users\richa_000\cling-build\src\tools\cling\lib\Interpreter\ValuePrinter.cpp:236:58: required from here
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:104:53: error: cast from 'void*' to 'long unsigned int' loses precision [-fpermissive]
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h: In instantiation of 'static T cling::Value::CastFwd<T>::cast(const cling::Value&) [with
T = bool]':
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:209:36: required from 'T cling::Value::simplisticCastAs() const [with T = bool]'
C:\Users\richa_000\cling-build\src\tools\cling\lib\Interpreter\ValuePrinter.cpp:238:43: required from here
C:/Users/richa_000/cling-build/src/tools/cling/include/cling/Interpreter/Value.h:104:53: error: cast from 'void*' to 'long unsigned int' loses precision [-fpermissive]
tools\cling\lib\Interpreter\CMakeFiles\clingInterpreter.dir\build.make:688: recipe for target 'tools/cling/lib/Interpreter/CMakeFiles/clingInterpreter.dir/ValuePrinter.cpp.obj' failed
mingw32-make[2]: *** [tools/cling/lib/Interpreter/CMakeFiles/clingInterpreter.dir/ValuePrinter.cpp.obj] Error 1
CMakeFiles\Makefile2:11223: recipe for target 'tools/cling/lib/Interpreter/CMakeFiles/clingInterpreter.dir/all' failed
mingw32-make[1]: *** [tools/cling/lib/Interpreter/CMakeFiles/clingInterpreter.dir/all] Error 2
makefile:135: recipe for target 'all' failed
mingw32-make: *** [all] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment