Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | For MSVC build, use /utf-8 option for CL (because some sources need it and this helps when some codepages are in effect) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0324515b5971557bb2e9df35badb482a |
User & Date: | larrybr 2022-03-22 11:46:55 |
Context
2022-03-22
| ||
13:30 | Improved comments on the graph layout rail shuffling. ... (check-in: ebbfe7d9 user: drh tags: trunk) | |
11:46 | For MSVC build, use /utf-8 option for CL (because some sources need it and this helps when some codepages are in effect) ... (check-in: 0324515b user: larrybr tags: trunk) | |
2022-03-21
| ||
17:36 | Typo and link fixes via forum post 09c35aec52377b41. ... (check-in: 1b13f430 user: stephan tags: trunk) | |
Changes
Changes to tools/makemake.tcl.
︙ | ︙ | |||
1628 1629 1630 1631 1632 1633 1634 | INCL = $(INCL) /I"$(SSLINCDIR)" !endif !if $(FOSSIL_ENABLE_TCL)!=0 INCL = $(INCL) /I"$(TCLINCDIR)" !endif | | | 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 | INCL = $(INCL) /I"$(SSLINCDIR)" !endif !if $(FOSSIL_ENABLE_TCL)!=0 INCL = $(INCL) /I"$(TCLINCDIR)" !endif CFLAGS = /nologo /W2 /WX /utf-8 LDFLAGS = CFLAGS = $(CFLAGS) /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS CFLAGS = $(CFLAGS) /D_CRT_NONSTDC_NO_DEPRECATE /D_CRT_NONSTDC_NO_WARNINGS !if $(FOSSIL_DYNAMIC_BUILD)!=0 LDFLAGS = $(LDFLAGS) /MANIFEST |
︙ | ︙ |
Changes to win/Makefile.msc.
︙ | ︙ | |||
170 171 172 173 174 175 176 | INCL = $(INCL) /I"$(SSLINCDIR)" !endif !if $(FOSSIL_ENABLE_TCL)!=0 INCL = $(INCL) /I"$(TCLINCDIR)" !endif | | | 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | INCL = $(INCL) /I"$(SSLINCDIR)" !endif !if $(FOSSIL_ENABLE_TCL)!=0 INCL = $(INCL) /I"$(TCLINCDIR)" !endif CFLAGS = /nologo /W2 /WX /utf-8 LDFLAGS = CFLAGS = $(CFLAGS) /D_CRT_SECURE_NO_DEPRECATE /D_CRT_SECURE_NO_WARNINGS CFLAGS = $(CFLAGS) /D_CRT_NONSTDC_NO_DEPRECATE /D_CRT_NONSTDC_NO_WARNINGS !if $(FOSSIL_DYNAMIC_BUILD)!=0 LDFLAGS = $(LDFLAGS) /MANIFEST |
︙ | ︙ |