build: download llvm and libffi from the JFrog repo

This commit is contained in:
Svyatoslav Scherbina
2016-10-17 17:35:25 +03:00
parent 7ed9d9c633
commit e4bc19b145
9 changed files with 30 additions and 25 deletions
+8 -8
View File
@@ -17,15 +17,15 @@ task test {
doLast {
exec {
commandLine "$llvmInstallPath/bin/clang", 'src/test/c/main.c', '-c', '-emit-llvm', '-o', "$buildDir/main.bc"
}
commandLine "$llvmDir/bin/clang", 'src/test/c/main.c', '-c', '-emit-llvm', '-o', "$buildDir/main.bc"
}
exec {
commandLine "$llvmInstallPath/bin/clang++", build.outFile, "$buildDir/main.bc", '-o', "$buildDir/main"
}
exec {
workingDir buildDir
commandLine './main'
}
commandLine "$llvmDir/bin/clang++", build.outFile, "$buildDir/main.bc", '-o', "$buildDir/main"
}
exec {
workingDir buildDir
commandLine './main'
}
}
}