ValuePrinter errors on Windows

Has anyone looked into (or fixed) the value printer? This works well on Linux (leave off the semi-colon and cling just prints the result of the expression), but does the following on Windows:

****************** CLING ******************
* Type C++ code and press enter to run it *
*             Type .q to exit             *
*******************************************
[cling]$ int myint = 123;
[cling]$ myint
ExecutionContext: use of undefined symbol '_ZN5cling16ValuePrinterInfoC1EPN5clan
g4ExprEPNS1_10ASTContextE'!
ExecutionContext: use of undefined symbol '_ZN5cling12flushOStreamERN4llvm11raw_
ostreamE'!
ExecutionContext: use of undefined symbol '_ZN5cling23printValuePublicDefaultERN
4llvm11raw_ostreamEPKvRKNS_16ValuePrinterInfoE'!
ExecutionContext::executeFunction: symbol '_ZN5cling12flushOStreamERN4llvm11raw_
ostreamE' unresolved while linking function '_Z15__cling_Un1Qu31v'!
ExecutionContext::executeFunction: symbol '_ZN5cling16ValuePrinterInfoC1EPN5clan
g4ExprEPNS1_10ASTContextE' unresolved while linking function '_Z15__cling_Un1Qu3
1v'!
ExecutionContext::executeFunction: symbol '_ZN5cling23printValuePublicDefaultERN
4llvm11raw_ostreamEPKvRKNS_16ValuePrinterInfoE' unresolved while linking functio
n '_Z15__cling_Un1Qu31v'!
[cling]$

Hi,
That is expected cling in C++ mode doesn’t work on Windows yet. If you want you could run cling -x c (running cling in C mode)
Cheers,
Vassil