Re: [sqlite] compiling tools for winrt

2013-01-09 Thread Joe Mistachkin
E. Timothy Uy wrote: > > Hi, in xcompiling tools for winrt I get the errors below. I suspect this > because I am using the vcvars for cross compiling winrt. Is there a way to > make this work? > In order to build for WinRT, extra options are required on the NMAKE command line. Here is an exam

Re: [sqlite] compiling tools for winrt

2013-01-09 Thread E. Timothy Uy
Thanks Dimiter. I ended up making this change in Makefile.msc 165 165 !IFNDEF NSDKLIBPATH 166 -NSDKLIBPATH = $(WINDOWSSDKDIR)\lib 166 +NSDKLIBPATH = $(WINDOWSSDKDIR)\Lib\win8\um\x86 167 167 !ENDIF On Wed, Jan 9, 2013 at 4:07 PM, Dimiter 'malkia' Stanev wrote: > This looks like general compile p

Re: [sqlite] compiling tools for winrt

2013-01-09 Thread Dimiter 'malkia' Stanev
This looks like general compile problem. The imported functions below are found in kernel32.dll (kernel32.lib import library). But I'm not sure whether under WinRT kernel32.dll is still used (it might be). If you can either add kernel32.lib to your link flags, or with pragma #ifdef _MSC_VER