Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove surplus quotation marks from the COMPILER= compile_options setting for GCC. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ctimeCompiler |
Files: | files | file ages | folders |
SHA1: |
664c132dabe4a871d5c39c11b339f871 |
User & Date: | drh 2016-05-27 19:34:29.738 |
Context
2016-05-27
| ||
20:30 | Remove surplus quotation marks from the COMPILER= compile_options setting for Clang. (check-in: 5c966f2000 user: mistachkin tags: ctimeCompiler) | |
19:34 | Remove surplus quotation marks from the COMPILER= compile_options setting for GCC. (check-in: 664c132dab user: drh tags: ctimeCompiler) | |
18:09 | Add basic compiler information to the results of 'PRAGMA compile_options'. (check-in: d734e2df40 user: mistachkin tags: ctimeCompiler) | |
Changes
Changes to src/ctime.c.
︙ | ︙ | |||
44 45 46 47 48 49 50 | #endif #if SQLITE_CHECK_PAGES "CHECK_PAGES", #endif #if defined(_MSC_VER) "COMPILER=msvc-" CTIMEOPT_VAL(_MSC_VER), #elif defined(__GNUC__) && defined(__VERSION__) | | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #endif #if SQLITE_CHECK_PAGES "CHECK_PAGES", #endif #if defined(_MSC_VER) "COMPILER=msvc-" CTIMEOPT_VAL(_MSC_VER), #elif defined(__GNUC__) && defined(__VERSION__) "COMPILER=gcc-" __VERSION__, #elif defined(__clang__) && defined(__clang_version__) "COMPILER=clang-" CTIMEOPT_VAL(__clang_version__), #endif #if SQLITE_COVERAGE_TEST "COVERAGE_TEST", #endif #if SQLITE_DEBUG |
︙ | ︙ |