Changeset 34163 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
May 27, 2008, 8:31:44 PM (17 years ago)
Author:
Adam Roben
Message:

Windows build fix

  • DerivedSources.make: Don't generate the bytecode docs if OMIT_BYTECODE_DOCS is set to 1.
  • JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh: Set OMIT_BYTECODE_DOCS for production builds.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r34160 r34163  
     12008-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
    1102008-05-27  Anders Carlsson  <[email protected]>
    211
  • trunk/JavaScriptCore/DerivedSources.make

    r33979 r34163  
    4343    regexp_object.lut.h \
    4444    string_object.lut.h \
    45     $(JavaScriptCore)/docs/bytecode.html \
    4645#
     46
     47ifneq ($(OMIT_BYTECODE_DOCS),1)
     48
     49all : $(JavaScriptCore)/docs/bytecode.html
     50
     51endif
    4752
    4853# lookup tables for classes
  • trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/build-generated-files.sh

    r29663 r34163  
    3535export JavaScriptCore="${XSRCROOT}"
    3636export DFTABLES_EXTENSION=".exe"
     37if [ "$PRODUCTION" == "1" ]; then
     38    export OMIT_BYTECODE_DOCS=1
     39fi
    3740make -f "$JavaScriptCore/DerivedSources.make" -j ${NUMCPUS} || exit 1
Note: See TracChangeset for help on using the changeset viewer.