This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Merge chakra-core/ChakraCore@8bbe7b2e82] [1.6>1.7] [MERGE #3323 @dil…
…ijev] Fix #3203, Fix #3204: Intl.getCanonicalLocales: name, toString, cannot call with new Merge pull request #3323 from dilijev:intl-gcl-fix Fixes #3203 Fixes #3204
- Loading branch information
Showing
9 changed files
with
16,386 additions
and
15,849 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
::------------------------------------------------------------------------------------------------------- | ||
:: Copyright (C) Microsoft. All rights reserved. | ||
:: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. | ||
::------------------------------------------------------------------------------------------------------- | ||
|
||
:: WARNING: be careful when using this script as it assumes that | ||
:: you already have bytecode-format-compatible builds for all required flavors. | ||
:: This script helps speed things up when you are only making changes to scripts, | ||
:: e.g. Intl.js, without making any changes to bytecode format, since rebuilding | ||
:: every flavor of ChakraCore.dll when there are no relevant changes is a waste of time. | ||
:: Please ensure that you use buddy builds to validate the results. | ||
|
||
:: Regenerate all bytecode (without rebuilding each flavor of ch.exe) | ||
:: ch.exe is used to generate Intl bytecodes. | ||
:: ch.exe (NoJIT variety) is used to generate NoJIT Intl bytecodes. | ||
:: Each set of bytecode requires an x86_debug and x64_debug binary. | ||
:: | ||
:: Thus we need to already have compatible builds of the following: | ||
:: [Core] ch.exe x64_debug | ||
:: [Core] ch.exe x86_debug | ||
:: [Core] ch.exe x64_debug (NoJIT) | ||
:: [Core] ch.exe x86_debug (NoJIT) | ||
|
||
@echo off | ||
setlocal | ||
set _reporoot=%~dp0 | ||
pushd %_reporoot%\lib\Runtime\Library\InJavascript | ||
call GenByteCode.cmd | ||
call GenByteCode.cmd -nojit | ||
popd | ||
endlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.