Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | revert mistake from last commit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | svn-import |
Files: | files | file ages | folders |
SHA1: | 59cc1242b3640e45bb7fdde391d7cf11 |
User & Date: | baruch 2014-11-01 21:44:38 |
Context
2014-11-02
| ||
13:59 | Options to set trunk/branches/tags folder names and project repository root (filter). Various fixes check-in: f67cb93f user: baruch tags: svn-import | |
2014-11-01
| ||
21:44 | revert mistake from last commit check-in: 59cc1242 user: baruch tags: svn-import | |
2014-10-31
| ||
08:06 | merge trunk check-in: 7427b40d user: baruch tags: svn-import | |
Changes
Changes to win/Makefile.mingw.
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
#### C Compile and options for use in building executables that
# will run on the target platform. This is usually the same
# as BCC, unless you are cross-compiling. This C compiler builds
# the finished binary for fossil. The BCC compiler above is used
# for building intermediate code-generator tools.
#
TCC = $(PREFIX)gcc -g -Wall
#### When not using the miniz compression library, zlib is required.
#
ifndef FOSSIL_ENABLE_MINIZ
TCC += -L$(ZLIBDIR) -I$(ZINCDIR)
endif
|
| |
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
#### C Compile and options for use in building executables that
# will run on the target platform. This is usually the same
# as BCC, unless you are cross-compiling. This C compiler builds
# the finished binary for fossil. The BCC compiler above is used
# for building intermediate code-generator tools.
#
TCC = $(PREFIX)gcc -Os -Wall
#### When not using the miniz compression library, zlib is required.
#
ifndef FOSSIL_ENABLE_MINIZ
TCC += -L$(ZLIBDIR) -I$(ZINCDIR)
endif
|