10 lines
252 B
Batchfile
Executable File
10 lines
252 B
Batchfile
Executable File
@ECHO OFF
|
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
|
|
|
SET "rawArgs=%*"
|
|
IF NOT DEFINED RealCppCompilerAndLinker (
|
|
SET "RealCppCompilerAndLinker=%ANDROID_NDK_HOME%\toolchains\llvm\prebuilt\windows-x86_64\bin\clang.exe"
|
|
)
|
|
|
|
"%RealCppCompilerAndLinker%" !rawArgs!
|