Adds check to ensure all JNI symbols have been defined properly (#373)

This commit is contained in:
Thad House
2016-11-25 18:07:36 -07:00
committed by Peter Johnson
parent 7d721eb569
commit 30b1efc354
2 changed files with 51 additions and 2 deletions

View File

@@ -151,10 +151,14 @@ subprojects {
}
}
plugins.withType(CppPlugin).whenPluginAdded {
ext.defineCrossCompilerProperties = {
// We use a custom-built cross compiler with the prefix arm-frc-linux-gnueabi-<util name>
// If this ever changes, the prefix will need to be changed here
def compilerPrefix = 'arm-frc-linux-gnueabi-'
ext.compilerPrefix = 'arm-frc-linux-gnueabi-'
}
plugins.withType(CppPlugin).whenPluginAdded {
defineCrossCompilerProperties()
model {
buildTypes {
debug