subashcanapathy commented on issue #14208:
URL: https://github.com/apache/airflow/issues/14208#issuecomment-782824716


   I used the following on amazonlinux2 to get latest sqlite
   
   ```bash
       # Pre-req
       yum -y install wget tar gzip gcc make expect
   
       wget https://www.sqlite.org/src/tarball/sqlite.tar.gz
       tar xzf sqlite.tar.gz
       cd sqlite/
       export CFLAGS="-DSQLITE_ENABLE_FTS3 \
           -DSQLITE_ENABLE_FTS3_PARENTHESIS \
           -DSQLITE_ENABLE_FTS4 \
           -DSQLITE_ENABLE_FTS5 \
           -DSQLITE_ENABLE_JSON1 \
           -DSQLITE_ENABLE_LOAD_EXTENSION \
           -DSQLITE_ENABLE_RTREE \
           -DSQLITE_ENABLE_STAT4 \
           -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT \
           -DSQLITE_SOUNDEX \
           -DSQLITE_TEMP_STORE=3 \
           -DSQLITE_USE_URI \
           -O2 \
           -fPIC"
       export PREFIX="/usr/local"
       LIBS="-lm" ./configure --disable-tcl --enable-shared 
--enable-tempstore=always --prefix="$PREFIX"
       make
       make install
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to