Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch MISTAKE Excluding Merge-Ins
This is equivalent to a diff from 3ce667ae58 to 9990c2d1db
2025-01-31
| ||
11:49 | Correct a typo in tool/emcc.sh.in which could cause all of the configure-time work to locate the emcc binary to go unused. Reported in sqlite forum post feb325cdde5b6f37 (sqlite uses a slight variant of this script). check-in: f020f45681 user: stephan tags: trunk | |
2025-01-30
| ||
20:33 | Partial work toward copying sqlite3-src.tar.gz in to build libsqlite3.a in parallel instead of a single-core build from extsrc/sqlite3.c. Closed-Leaf check-in: 9990c2d1db user: wyoung tags: MISTAKE | |
2025-01-29
| ||
20:28 | Update the built-in SQLite to the latest trunk version for testing. Enable floating-point math functions in SQLite. check-in: 3ce667ae58 user: drh tags: trunk | |
2025-01-28
| ||
21:48 | (Typo) Correcting substitution. Forum post [forum:/forumpost/e0c11cfb01|Forum thread e0c11cfb01]. check-in: 2e41b8c32f user: brickviking tags: trunk | |
Changes to Dockerfile.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | ### leveraging its DVCS nature via the "tarball" command and passing the ### resulting file's name in. ARG FSLCFG="" ARG FSLVER="trunk" ARG FSLURL="https://fossil-scm.org/home/tarball/src?r=${FSLVER}" ENV FSLSTB=/fsl/src.tar.gz ADD $FSLURL $FSLSTB RUN set -x \ && if [ -d $FSLSTB ] ; \ then mv $FSLSTB/src . ; \ else tar -xf src.tar.gz ; fi \ && src/configure --static CFLAGS='-Os -s' $FSLCFG && make -j16 | > > > > > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | ### leveraging its DVCS nature via the "tarball" command and passing the ### resulting file's name in. ARG FSLCFG="" ARG FSLVER="trunk" ARG FSLURL="https://fossil-scm.org/home/tarball/src?r=${FSLVER}" ENV FSLSTB=/fsl/src.tar.gz ADD $FSLURL $FSLSTB COPY sqlite3-src.tar.gz /src/sqlite3 RUN set -x \ && cd /src/sqlite3 \ && ./configure --disable-amalgamation \ && make -j16 libsqlite3.a RUN set -x \ && if [ -d $FSLSTB ] ; \ then mv $FSLSTB/src . ; \ else tar -xf src.tar.gz ; fi \ && src/configure --static CFLAGS='-Os -s' $FSLCFG && make -j16 |
︙ | ︙ |