Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Pulling changes from trunk |
---|---|
Timelines: | family | ancestors | descendants | both | practcl |
Files: | files | file ages | folders |
SHA1: |
97b3bd3fc719036d483b3d39f288dccd |
User & Date: | seandeelywoods 2017-11-28 14:53:32.421 |
Context
2021-10-29
| ||
12:56 | Pulling changes from trunk Leaf check-in: 65fbbcf473 user: SeanWoods tags: practcl | |
2017-11-28
| ||
14:53 | Pulling changes from trunk check-in: 97b3bd3fc7 user: seandeelywoods tags: practcl | |
2017-09-16
| ||
12:25 | Enable optimizations for nmake builds check-in: 50e2268a77 user: apnadkarni tags: trunk | |
2017-08-28
| ||
20:07 | Pulling change from trunk check-in: b990a0bdd3 user: seandeelywoods tags: practcl | |
Changes
Changes to win/rules.vc.
|
| | | 1 2 3 4 5 6 7 8 | # rules.vc -- # # Microsoft Visual C++ makefile include for decoding the commandline # macros. This file does not need editing to build Tcl. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. |
︙ | ︙ | |||
109 110 111 112 113 114 115 | !endif #---------------------------------------------------------- # Test for compiler features #---------------------------------------------------------- ### test for optimizations | | | | | | | > > < | < > > > < < < | > > | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | !endif #---------------------------------------------------------- # Test for compiler features #---------------------------------------------------------- ### test for optimizations !if [nmakehlp -c -O2] !message *** Compiler has 'Optimizations' OPTIMIZING = 1 !else !message *** Compiler does not have 'Optimizations' OPTIMIZING = 0 !endif # /O2 optimization includes /Og /Oi /Ot /Oy /Ob2 /Gs /GF /Gy as per # documentation. Note we do NOT want /Gs as that inserts a _chkstk # stack probe at *every* function entry, not just those with more than # a page of stack allocation resulting in a performance hit. However, # /O2 documentation is misleading as its stack probes are simply the # default page size locals allocation probes and not what is implied # by an explicit /Gs option. OPTIMIZATIONS = -O2 # -Op improves float consistency. Note only needed for older compilers # Newer compilers do not need or support this option. !if [nmakehlp -c -Op] OPTIMIZATIONS = $(OPTIMIZATIONS) -Op !endif # Strict floating point semantics !if [nmakehlp -c -fp:strict] OPTIMIZATIONS = $(OPTIMIZATIONS) -fp:strict !endif # Enable security checks for buffer overflows !if [nmakehlp -c -GS] OPTIMIZATIONS = $(OPTIMIZATIONS) -GS !endif # Whole program optimization. Note this makes the generated libraries # potentially incompatible with other versions of Visual C++ !if [nmakehlp -c -GL] OPTIMIZATIONS = $(OPTIMIZATIONS) -GL !endif DEBUGFLAGS = !if [nmakehlp -c -RTC1] |
︙ | ︙ |