Changeset 34163 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 27, 2008, 8:31:44 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34160 r34163 1 2008-05-27 Adam Roben <[email protected]> 2 3 Windows build fix 4 5 * DerivedSources.make: Don't generate the bytecode docs if 6 OMIT_BYTECODE_DOCS is set to 1. 7 * JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh: Set 8 OMIT_BYTECODE_DOCS for production builds. 9 1 10 2008-05-27 Anders Carlsson <[email protected]> 2 11 -
trunk/JavaScriptCore/DerivedSources.make
r33979 r34163 43 43 regexp_object.lut.h \ 44 44 string_object.lut.h \ 45 $(JavaScriptCore)/docs/bytecode.html \46 45 # 46 47 ifneq ($(OMIT_BYTECODE_DOCS),1) 48 49 all : $(JavaScriptCore)/docs/bytecode.html 50 51 endif 47 52 48 53 # lookup tables for classes -
trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh
r29663 r34163 35 35 export JavaScriptCore="${XSRCROOT}" 36 36 export DFTABLES_EXTENSION=".exe" 37 if [ "$PRODUCTION" == "1" ]; then 38 export OMIT_BYTECODE_DOCS=1 39 fi 37 40 make -f "$JavaScriptCore/DerivedSources.make" -j ${NUMCPUS} || exit 1
Note:
See TracChangeset
for help on using the changeset viewer.