Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.24 KB

File metadata and controls

31 lines (24 loc) · 1.24 KB

http-server

This project is a http server, and it would focus on I/O issue first. It is expected that replace with flask to provide RESTful API in our project.

Reference

Prerequisite

  • libsqlite3.la ( or you can use sqlite3.c/.h, which is the "amalgamation" source file)
    • how to compile sqlite3
    • download the source file
    • compile the library
      • mkdir build
      • cd build
      • [sqlite3 source directory]/configure
      • make
      • make test (optional)
    • create two directories: include and lib
    • move sqlite3.h to the include directory
    • move libsqlite3.[version].so to the lib directory and make a softlink ln -s [the file] libsqlite3