Re: [sqlite] SQLite does not support ARM platform?

2017-03-21 Thread Jaime Stuardo
What are you smoking? Do you feel good? -Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Jens Alfke Sent: martes, 21 de marzo de 2017 2:01 To: SQLite mailing list Subject: Re: [sqlite] SQLite does not support ARM platform? >

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jens Alfke
> On Mar 20, 2017, at 3:38 PM, Jaime Stuardo wrote: > > That is why I suspect about SQLite3 to be really multiplatform. Why can my > own C++ program, that is not small, be successfully compiled and then run in > the machine? Why cannot SQLite source code? You’re using a nine-year-old compiler

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jaime Stuardo
Lean\RFID\SQLite3\btree.c" And a lot of similar warnings. 82 in total. Can I safely ignore them? Regards Jaime -Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Jim Borden Sent: lunes, 20 de marzo de 2017 19:54 To: SQLite mai

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Deon Brewis
users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Jaime Stuardo Sent: Monday, March 20, 2017 3:39 PM To: 'SQLite mailing list' Subject: Re: [sqlite] SQLite does not support ARM platform? When I build my own program using Visual Studio 2008 IDE to be run in the device, it compiles pe

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jim Borden
Oh, you are talking about WinCE? I don’t think you should be thinking in terms of “ARM vs non-ARM” but rather “X platform vs Y platform.” As others have noted, sqlite obviously runs on ARM and the issue is not with sqlite but with the way you are trying to compile it or the platform you are tr

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jaime Stuardo
I use to develop mobile applications for years using VS 2008, and in fact, I have just developed a MFC C++ application that runs in the ARM machine without problem. I need to use SQLite3 for my application. That is why I need to compile it. > On 20 Mar 2017, at 23:17, Jaime Stuardo wrote: >

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jaime Stuardo
machine. What command line do you use for your target machine? Regards Jaime -Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Deon Brewis Sent: lunes, 20 de marzo de 2017 19:25 To: SQLite mailing list Subject: Re: [sqlite] SQLite d

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Hugo Beauzée-Luyssen
> On 20 Mar 2017, at 23:17, Jaime Stuardo wrote: > > Thanks all who answered. > > Yes... it seems a MSVC limitation, however, it is very strange. I am using > Visual Studio 2008 which does support ARM compilation. I did that, adding > some compiler switches for target WIN32_CE but I got mil

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Deon Brewis
hat you're trying to build for? - Deon -Original Message- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Jaime Stuardo Sent: Monday, March 20, 2017 3:17 PM To: 'SQLite mailing list' Subject: Re: [sqlite] SQLite does not support ARM

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jaime Stuardo
not actually. Does somebody have experience compiling this in MSVC? Regards Jaime -----Original Message----- From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org] On Behalf Of Joseph Stockman Sent: lunes, 20 de marzo de 2017 18:34 To: SQLite mailing list Subject: R

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Joseph Stockman
Jaime Stuardo [jstua...@desytec.com] Sent: Monday, March 20, 2017 4:24 PM To: 'SQLite mailing list' Subject: [sqlite] SQLite does not support ARM platform? Hello, I have finally given up. After almost all day trying to compile SQLite amalgamated source code files for ARM platform I got the

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Hugo Beauzée-Luyssen
Hi, > On 20 Mar 2017, at 22:24, Jaime Stuardo wrote: > > Hello, > > I have finally given up. After almost all day trying to compile SQLite > amalgamated source code files for ARM platform I got the conclusion that > SQLite is not for ARM platform, even when documentation says the contrary. I

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Eric Sink
You are encountering a limitation of the compiler you are using, not a limitation of SQLite (which compiles for ARM just fine). The error message is telling you that Microsoft does not support desktop applications compiled for ARM. What environment are you trying to compile for? -- E On Mon, M

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jim Borden
That error has nothing to do with SQLite, really. SQLite is deployed on ARM platforms and ships as a system library on iOS. It sounds like you are running into this -> https://stackoverflow.com/questions/11151474/can-arm-desktop-programs-be-built-using-visual-studio-2012 Keep in mind that Vis

Re: [sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Christian Schmitz
> Am 20.03.2017 um 22:24 schrieb Jaime Stuardo : > > Hello, > > I have finally given up. After almost all day trying to compile SQLite > amalgamated source code files for ARM platform I got the conclusion that > SQLite is not for ARM platform,… Really? I do that now for over 1.5 years. With G

[sqlite] SQLite does not support ARM platform?

2017-03-20 Thread Jaime Stuardo
Hello, I have finally given up. After almost all day trying to compile SQLite amalgamated source code files for ARM platform I got the conclusion that SQLite is not for ARM platform, even when documentation says the contrary. I have VS 2008 and I tried to compile some C++ wrappers out there tha