Re: [sqlite] Intel 17

2017-09-13 Thread Dominique Devienne
On Tue, Sep 12, 2017 at 3:56 PM, Richard Hipp wrote: > On 9/11/17, Dominique Devienne wrote: > > FYI, here are the modifications we did to a 3.19.3 amalgamation to build > > with the Intel 17 compiler. Note that we have a few modifs of our own, so > > line

Re: [sqlite] Intel 17

2017-09-12 Thread Richard Hipp
On 9/12/17, Clemens Ladisch wrote: > Richard Hipp wrote: >> Please try the latest trunk version of SQLite and let me know if it >> works for you. > > I don't have the Intel compiler, but the sign is missing: > > SELECT CAST('-1e359' AS NUMBER), CAST('-1e360' AS NUMBER); >

Re: [sqlite] Intel 17

2017-09-12 Thread Clemens Ladisch
Richard Hipp wrote: > Please try the latest trunk version of SQLite and let me know if it > works for you. I don't have the Intel compiler, but the sign is missing: SELECT CAST('-1e359' AS NUMBER), CAST('-1e360' AS NUMBER); -Inf|Inf I take everything back and state the opposite: I guess an

Re: [sqlite] Intel 17

2017-09-12 Thread Richard Hipp
On 9/11/17, Dominique Devienne wrote: > FYI, here are the modifications we did to a 3.19.3 amalgamation to build > with the Intel 17 compiler. Note that we have a few modifs of our own, so > line numbers might be off. --DD Please try the latest trunk version of SQLite and

Re: [sqlite] Intel 17

2017-09-12 Thread Dominique Devienne
On Tue, Sep 12, 2017 at 8:47 AM, Clemens Ladisch wrote: > Dominique Devienne wrote: > > sqlite3.c(17654): error #265: floating-point operation result is out of > range > > Could this error be reduced to a warning? > Probably. We typically compile with a strict

Re: [sqlite] Intel 17

2017-09-12 Thread Clemens Ladisch
Dominique Devienne wrote: > sqlite3.c(17654): error #265: floating-point operation result is out of range Could this error be reduced to a warning? > // around line 17644 > - result = 1e308*1e308*s; /* Infinity */ > + result = 1e308*(1e308*s); /* Infinity */ C99 7.12 () says: | 4 The macro

Re: [sqlite] Intel 17

2017-09-11 Thread Dominique Devienne
On Mon, Sep 11, 2017 at 4:49 PM, Richard Hipp wrote: > On 9/11/17, Dominique Devienne wrote: > > FYI, here are the modifications we did to a 3.19.3 amalgamation to build > > with the Intel 17 compiler. Note that we have a few modifs of our own, so > > line

Re: [sqlite] Intel 17

2017-09-11 Thread Richard Hipp
On 9/11/17, Dominique Devienne wrote: > FYI, here are the modifications we did to a 3.19.3 amalgamation to build > with the Intel 17 compiler. Note that we have a few modifs of our own, so > line numbers might be off. --DD > > PS: I hope the formatting goes through. Was