Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Jens Alfke


> On Feb 23, 2018, at 4:25 AM, Ashley Collins-Richardson 
>  wrote:
> 
> I am trying to add sqlite amalgamation into xcode and I keep getting the
> error
> error SQLite will not work correctly with the -ffast-math option of GCC.

Why not just link with the copy of SQLite that’s already built into the OS? 
Unless you absolutely need the very latest version, this will be easier (and 
make your app about 1MB smaller.)

—Jens
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Ashley Collins-Richardson
I'm still getting the error

---

Ashley Collins-Richardson
Technical Director | Scrapbook Development Limited |
www.scrapbookdev.com [1] 
Electric Works - Digital Campus, 3 Concourse Way, Sheffield, S1 2BJ 

On 2018-02-23 13:18, Simon Slavin wrote:

> On 23 Feb 2018, at 12:25pm, Ashley Collins-Richardson 
>  wrote:
> 
>> error SQLite will not work correctly with the -ffast-math option of GCC.
> 
> For now, turn off all optmization:
> 
> Select the Project folder
> Build Settings
> Compiler Options
> Apple LLVM 8.0 Code Generation
> Optimization Level
> 
> set it to None.
> 
> If that gets rid of the problem then you can worry about the specific option 
> the error message mentions.
> 
> Simon.
> ___
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
 

Links:
--
[1] http://www.scrapbookdev.com/
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Ashley Collins-Richardson
got it working. thank you for your help

---

Ashley Collins-Richardson
Technical Director | Scrapbook Development Limited |
www.scrapbookdev.com [1] 
Electric Works - Digital Campus, 3 Concourse Way, Sheffield, S1 2BJ 

On 2018-02-23 13:40, Simon Slavin wrote:

> On 23 Feb 2018, at 1:38pm, Ashley Collins-Richardson 
>  wrote:
> 
>> now I have the error 'system' is unavailable: not available on iOS
> 
> Are you trying to compile the executable "sqlite3" program ?  That won't run 
> on iOS.  You need to be using just the amalgamation source code, which is one 
> .c file and one .h file.
> 
> Simon.
> ___
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
 

Links:
--
[1] http://www.scrapbookdev.com/
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Simon Slavin
On 23 Feb 2018, at 1:38pm, Ashley Collins-Richardson 
 wrote:

> now I have the error 'system' is unavailable: not available on iOS

Are you trying to compile the executable "sqlite3" program ?  That won't run on 
iOS.  You need to be using just the amalgamation source code, which is one .c 
file and one .h file.

Simon.
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Ashley Collins-Richardson
found that issue - you have to set the relax iee compliance to NO

now I have the error 'system' is unavailable: not available on iOS

---

Ashley Collins-Richardson
Technical Director | Scrapbook Development Limited |
www.scrapbookdev.com [1] 
Electric Works - Digital Campus, 3 Concourse Way, Sheffield, S1 2BJ 

On 2018-02-23 13:24, Simon Slavin wrote:

> On 23 Feb 2018, at 1:18pm, Simon Slavin  wrote:
> 
>> For now, turn off all optmization:
>> 
>> Select the Project folder
>> Build Settings
>> Compiler Options
>> Apple LLVM 8.0 Code Generation
>> Optimization Level
>> 
>> set it to None.
> 
> Whoops sorry you're using GCC not LLVM.  Look for an equivalent setting.
> 
> Simon.
> ___
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
 

Links:
--
[1] http://www.scrapbookdev.com/
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Simon Slavin
On 23 Feb 2018, at 1:18pm, Simon Slavin  wrote:

> For now, turn off all optmization:
> 
> Select the Project folder
> Build Settings
> Compiler Options
> Apple LLVM 8.0 Code Generation
> Optimization Level
> 
> set it to None.

Whoops sorry you're using GCC not LLVM.  Look for an equivalent setting.

Simon.
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Simon Slavin
On 23 Feb 2018, at 12:25pm, Ashley Collins-Richardson 
 wrote:

> error SQLite will not work correctly with the -ffast-math option of GCC.

For now, turn off all optmization:

Select the Project folder
Build Settings
Compiler Options
Apple LLVM 8.0 Code Generation
Optimization Level

set it to None.

If that gets rid of the problem then you can worry about the specific option 
the error message mentions.

Simon.
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Ashley Collins-Richardson
how do you do it ? in the other linker flage setting?

---

Ashley Collins-Richardson
Technical Director | Scrapbook Development Limited |
www.scrapbookdev.com [1] 
Electric Works - Digital Campus, 3 Concourse Way, Sheffield, S1 2BJ 

On 2018-02-23 12:38, Richard Hipp wrote:

> On 2/23/18, Ashley Collins-Richardson  wrote: 
> 
>> Hi There,
>> 
>> I am trying to add sqlite amalgamation into xcode and I keep getting the
>> error
>> 
>> error SQLite will not work correctly with the -ffast-math option of GCC.
>> 
>> I have swapped  with #sqlite3.h and removed the dependencies
>> from the previous library but I think I'm missing something.
> 
> Disable the -ffast-math compile-time option since it is incompatible
> with SQLite.
 

Links:
--
[1] http://www.scrapbookdev.com/
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] error SQLite will not work correctly with the -ffast-math option of GCC.

2018-02-23 Thread Richard Hipp
On 2/23/18, Ashley Collins-Richardson  wrote:
> Hi There,
>
> I am trying to add sqlite amalgamation into xcode and I keep getting the
> error
>
> error SQLite will not work correctly with the -ffast-math option of GCC.
>
> I have swapped  with #sqlite3.h and removed the dependencies
> from the previous library but I think I'm missing something.

Disable the -ffast-math compile-time option since it is incompatible
with SQLite.
-- 
D. Richard Hipp
d...@sqlite.org
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users