text
stringlengths
0
834k
""C:\Program Files (x86)\Resource Hacker\ResourceHacker.exe"" -open .\VersionInfo.rc -save .\VersionInfo.res -action compile -log con
REM Update pywinauto_recorder.exe with icons and version info
RENAME .\pywinauto_recorder.dist\pywinauto_recorder.exe pywinauto_recorder_original.exe
""C:\Program Files (x86)\Resource Hacker\ResourceHacker.exe"" -script icon_script_in_dist.txt
DEL .\pywinauto_recorder.dist\pywinauto_recorder_original.exe
DEL VersionInfo.res
REM Make installer
""C:\Program Files (x86)\NSIS\Bin\makensis.exe"" Pywinauto_recorder.nsi
pause",23.2268041237,131,0.7572126054
47,d004f397ff7fd3f90c8d4ac28fccc72bffe812d4,1295,bat,Batchfile,mingw64/bash.bat,zimmermanncode/MSYS2-cmd,8076c7e042429be28805548b9854bc71b3f29a16,['Apache-2.0'],1.0,2019-03-20T22:10:22.000Z,2019-03-20T22:10:22.000Z,mingw64/bash.bat,zimmermanncode/MSYS2-cmd,8076c7e042429be28805548b9854bc71b3f29a16,['Apache-2.0'],,,,mingw64/bash.bat,zimmermanncode/MSYS2-cmd,8076c7e042429be28805548b9854bc71b3f29a16,['Apache-2.0'],2.0,2015-12-21T12:37:38.000Z,2018-09-21T09:55:37.000Z,"@echo off
REM CMD shell integration for MSYS2
REM
REM Copyright (C) 2015-2016 Stefan Zimmermann <zimmermann.code@gmail.com>
REM
REM Licensed under the Apache License, Version 2.0
setlocal EnableExtensions || exit /b
if ""%~1"" == ""/?"" (
echo Runs MSYS2 bash.exe in MINGW64 mode.
echo.
echo BASH [args ...]
echo.
echo First starts a non-interactive bash.exe with --login flag,
echo which then switches to current working directory
echo and runs a new bash.exe instance with the given arguments.
echo.
echo If no arguments are given, a new shell window will be started.
echo Call BASH -i to run an interactive bash.exe in current shell window.
exit /b 0
)
endlocal
setlocal EnableExtensions EnableDelayedExpansion || exit /b
if not ""%MSYS2_MINGW32_PATH%"" == """" (
call set ""PATH=%%PATH:%MSYS2_MINGW32_PATH%;=%%""
)
REM and also remove any extra MSYS/MINGW tool wrapper scripts paths
for %%R in (""%~dp0.."") do (
call set ""PATH=!!PATH:%%~fR\msys;=!!""
call set ""PATH=!!PATH:%%~fR\mingw32;=!!""
call set ""PATH=!!PATH:%%~fR\mingw64;=!!""
)
set MSYSTEM=MINGW64
if ""%~1"" == """" (
start bash.exe --login -c 'cd ""%cd%"" ^&^& bash'
) else (
bash.exe --login -c 'cd ""%cd%"" ^&^& bash %*'
)
endlocal
",28.7777777778,78,0.6378378378
48,d0052a9499674d594c0af2f1511bfa3fbc784661,2790,cmd,Batchfile,boards/ek-lm3s9b90/enet_uip/enet_uip_ccs.cmd,junyanl-code/Luminary-Micro-Library,52dff10f8812558749263b4767de4b0d3c79a9b3,['BSD-3-Clause'],25.0,2015-04-20T13:03:05.000Z,2022-01-06T07:25:02.000Z,boards/ek-lm3s9b90/enet_uip/enet_uip_ccs.cmd,junyanl-code/Luminary-Micro-Library,52dff10f8812558749263b4767de4b0d3c79a9b3,['BSD-3-Clause'],,,,boards/ek-lm3s9b90/enet_uip/enet_uip_ccs.cmd,junyanl-code/Luminary-Micro-Library,52dff10f8812558749263b4767de4b0d3c79a9b3,['BSD-3-Clause'],24.0,2015-09-22T12:08:11.000Z,2021-12-30T10:17:30.000Z,"/******************************************************************************
*
* enet_uip_ccs.cmd - CCS linker configuration file for enet_uip.
*
* Copyright (c) 2009-2012 Texas Instruments Incorporated. All rights reserved.
* Software License Agreement
*
* Texas Instruments (TI) is supplying this software for use solely and
* exclusively on TI's microcontroller products. The software is owned by
* TI and/or its suppliers, and is protected under applicable copyright
* laws. You may not combine this software with ""viral"" open-source
* software in order to form a larger program.
*
* THIS SOFTWARE IS PROVIDED ""AS IS"" AND WITH ALL FAULTS.
* NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
* NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
* CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
* DAMAGES, FOR ANY REASON WHATSOEVER.
*
* This is part of revision 8555 of the EK-LM3S9B90 Firmware Package.
*
*****************************************************************************/
--retain=g_pfnVectors
/* The following command line options are set as part of the CCS project. */
/* If you are building using the command line, or for some reason want to */
/* define them here, you can uncomment and modify these lines as needed. */
/* If you are using CCS for building, it is probably better to make any such */
/* modifications in your CCS project and leave this file alone. */
/* */
/* --heap_size=0 */
/* --stack_size=256 */
/* --library=rtsv7M3_T_le_eabi.lib */
/* The starting address of the application. Normally the interrupt vectors */
/* must be located at the beginning of the application. */
#define APP_BASE 0x00000000
#define RAM_BASE 0x20000000
/* System memory map */