diff --git a/gradle/build.gradle b/gradle/build.gradle index a7308505..2582327f 100644 --- a/gradle/build.gradle +++ b/gradle/build.gradle @@ -32,6 +32,6 @@ subprojects { google() jcenter() mavenCentral() - maven { url 'http://maven.lyndir.com' } + maven { url 'https://maven.lyndir.com' } } } diff --git a/platform-independent/c/core/build.gradle b/platform-independent/c/core/build.gradle index 81f8b05a..a4bfca76 100644 --- a/platform-independent/c/core/build.gradle +++ b/platform-independent/c/core/build.gradle @@ -26,8 +26,6 @@ library { // Reconfigure the toolchain from C++ to C. toolChains { withType( GccCompatibleToolChain ) { - //TODO: Cross-compiling, blocked by: https://github.com/gradle/gradle-native/issues/169 - //setTargets( "arm", "arm64", "x86-64", "x86" ) eachPlatform { cppCompiler.withArguments { addAll( ["-x", "c", "-std=c11", "-Werror", "-DMPW_SODIUM=1"] ) } } @@ -38,11 +36,11 @@ library { } // Cross-compile for these host platforms. + // TODO: Cross-compiling, blocked by: https://github.com/gradle/gradle-native/issues/169 - CppLibraryPlugin.java:163 operatingSystems.set( [objects.named( OperatingSystemFamily, OperatingSystemFamily.WINDOWS ), objects.named( OperatingSystemFamily, OperatingSystemFamily.LINUX ), objects.named( OperatingSystemFamily, OperatingSystemFamily.MAC_OS )] ) - // binaries.configureEach { // Resolve a standard name for the platform. def platform = standardOperatingSystem( targetPlatform )