Skip to content

Commit

Permalink
build: Workaround for NPE in raspberry-pi build
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmat192 committed Jun 20, 2017
1 parent 282ac88 commit ed70a3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class CompileCppToBitcode extends DefaultTask {

project.exec {
executable "$project.llvmDir/bin/llvm-link"
args project.fileTree(objDir).include('**/*.bc')
args project.fileTree(objDir).include('**/*.bc').sort { a, b -> (a.name <=> b.name) }

args linkerArgs

Expand Down

0 comments on commit ed70a3f

Please sign in to comment.