RE: Building SQLite3 CLI without

2022-12-03 Thread Jose Isaias Cabrera via Cygwin
On December 3, 2022 5:21 PM, Ken Brown expressed: > > On 12/3/2022 4:14 PM, Jose Isaias Cabrera via Cygwin wrote: > > To do this, use the mingw32 or 64 compiler, as this, > > > > CC=i686-w64-mingw32-gcc ./configure > > > > and the SQLite3 tool will work without the cygwin1.dll. > > I think the

Re: Building SQLite3 CLI without

2022-12-03 Thread Ken Brown via Cygwin
On 12/3/2022 4:14 PM, Jose Isaias Cabrera via Cygwin wrote: To do this, use the mingw32 or 64 compiler, as this, CC=i686-w64-mingw32-gcc ./configure and the SQLite3 tool will work without the cygwin1.dll. I think the preferred way to do this is ./configure --host=i686-w64-mingw32 , althou

RE: Building SQLite3 CLI without

2022-12-03 Thread Jose Isaias Cabrera via Cygwin
On December 2, 2022 4:37 PM, Oskar Skog expressed: > > On 2022-12-02 22:37, Jose Isaias Cabrera via Cygwin wrote: > > > > Is there an option that I can do to build the tool without the need of > > the cygwin1.dll? I know that I can move the file in the same spot, but I > > want to create it wit

RE: Building SQLite3 CLI without

2022-12-03 Thread Jose Isaias Cabrera via Cygwin
On December 3, 2022 11:23 AM, Andrey Repin expressed: > > Greetings, Jose Isaias Cabrera! Salutations Andrey. > > > I can build SQLite DLL and use it under Windows without any problem > > using this command: > > > i686-w64-mingw32-gcc -shared -static-libgcc sqlite3.c -o sqlite3.dll > > To

Re: Building SQLite3 CLI without

2022-12-03 Thread Andrey Repin via Cygwin
Greetings, Jose Isaias Cabrera! > I can build SQLite DLL and use it under Windows without any problem using > this command: > i686-w64-mingw32-gcc -shared -static-libgcc sqlite3.c -o sqlite3.dll To the best of my knowledge, you should not use cross-compilers directly. > And I can use that DLL o

RE: Building SQLite3 CLI without

2022-12-02 Thread Jose Isaias Cabrera via Cygwin
Oskar Skog via Cygwin, on December 2, 2022 4:37 PM said, >> On 2022-12-02 22:37, Jose Isaias Cabrera via Cygwin wrote: > > Is there an option that I can do to build the tool without the need of >> the cygwin1.dll? I know that I can move the file in the same spot, but I >> want to create it witho

Re: Building SQLite3 CLI without

2022-12-02 Thread Oskar Skog via Cygwin
On 2022-12-02 22:37, Jose Isaias Cabrera via Cygwin wrote: Greetings and salutations! I can build SQLite DLL and use it under Windows without any problem using this command: i686-w64-mingw32-gcc -shared -static-libgcc sqlite3.c -o sqlite3.dll And I can use that DLL outside cygwin without any

Building SQLite3 CLI without

2022-12-02 Thread Jose Isaias Cabrera via Cygwin
Greetings and salutations! I can build SQLite DLL and use it under Windows without any problem using this command: i686-w64-mingw32-gcc -shared -static-libgcc sqlite3.c -o sqlite3.dll And I can use that DLL outside cygwin without any problem. I can also build the SQLite3.exe tool using this