2014-08-28 15:53:34 +02:00
|
|
|
@REM @file
|
2018-07-05 11:40:04 +02:00
|
|
|
@REM This script will exec LzmaCompress tool with --f86 option that enables
|
2014-08-28 15:53:34 +02:00
|
|
|
@REM converter for x86 code.
|
2012-04-10 09:18:20 +02:00
|
|
|
@REM
|
2018-07-05 11:40:04 +02:00
|
|
|
@REM Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:03:11 +02:00
|
|
|
@REM SPDX-License-Identifier: BSD-2-Clause-Patent
|
2012-04-10 09:18:20 +02:00
|
|
|
@REM
|
|
|
|
|
|
|
|
@echo off
|
|
|
|
@setlocal
|
|
|
|
|
|
|
|
:Begin
|
|
|
|
if "%1"=="" goto End
|
|
|
|
if "%1"=="-e" (
|
|
|
|
set FLAG=--f86
|
|
|
|
)
|
|
|
|
if "%1"=="-d" (
|
|
|
|
set FLAG=--f86
|
|
|
|
)
|
|
|
|
set ARGS=%ARGS% %1
|
|
|
|
shift
|
|
|
|
goto Begin
|
|
|
|
|
|
|
|
:End
|
|
|
|
LzmaCompress %ARGS% %FLAG%
|
|
|
|
@echo on
|