Peter Ehikhuemen
02/25/2022, 5:28 PMAn exception occurred applying plugin request [id: 'dev.nokee.c-library', artifact: 'dev.nokee.c-library:dev.nokee.c-library.gradle.plugin:0.5.0-930919a0']
> Failed to apply plugin 'dev.nokee.c-library'.
> Could not create an instance of type dev.nokee.platform.nativebase.internal.dependencies.DefaultNativeLibraryComponentDependencies.
> Cannot reuse existing configuration named 'compileOnly' as a declarable bucket of dependencies because it does not match the expected configuration (expecting: [canBeConsumed: false, canBeResolved: false], actual: [canBeConsumed: false, canBeResolved: true]).
Giuseppe Barbieri
04/18/2022, 2:17 PMGiuseppe Barbieri
04/19/2022, 10:57 AMc
files if I want to do manual but within Gradle? Like setting sources, header and flags?thadhouse
04/26/2022, 4:09 AMMouna
04/27/2022, 9:02 AMPradeep
05/01/2022, 2:29 AMiTrooz_
05/03/2022, 8:13 AMimplementation files("libTest.so")
I use nokee plugins, more specifically dev.nokee.c-applicationErik Schilling
05/09/2022, 1:03 PMunlink0:-1, UnixNativeDispatcher (sun.nio.fs)
unlink:132, UnixNativeDispatcher (sun.nio.fs)
implDelete:235, UnixFileSystemProvider (sun.nio.fs)
deleteIfExists:110, AbstractFileSystemProvider (sun.nio.fs)
deleteIfExists:1191, Files (java.nio.file)
hardLinkOrCopy:457, CxxRegularBuilderKt (com.android.build.gradle.internal.cxx.build)
build:209, CxxRegularBuilder (com.android.build.gradle.internal.cxx.build)
Where do I find the CxxRegularBuilderKt / CxxRegularBuilder classes? I feel a bit stupid, but searching the gradle code, full github or Google does not give me any hint... I assume this is from a plugin, but where do I find the source to it? 🤔Pradeep
05/27/2022, 3:59 AMthadhouse
06/05/2022, 10:30 PMtasks
? We have a bunch where we disable the static or shared binary instance by setting buildable to false, but the tasks still show up, and some users try to build them, which fails.thadhouse
06/13/2022, 8:33 PMMarcell Győrik
07/22/2022, 2:21 PMMartmists
07/25/2022, 2:26 AMlibrary {
toolChains {
configureEach { // I also tried `val devkitA64 by creating(Gcc::class)` but it complained it wasn't able to make it
if (this is Gcc) {
target("nx") {
platform.architecture("aarch64")
cppCompiler.executable = binary("aarch64-none-elf-g++")
cppCompiler.withArguments {
addAll(CPPFLAGS.split(' '))
}
assembler.executable = binary("aarch64-none-elf-as")
assembler.withArguments {
addAll(ASMFLAGS.split(' '))
}
linker.executable = binary("aarch64-none-elf-ld")
linker.withArguments {
addAll(CFLAGS.split(' '))
}
staticLibArchiver.executable = binary("aarch64-none-elf-ar")
}
}
}
}
Martmists
07/25/2022, 8:40 AMMarcell Győrik
07/29/2022, 10:50 AMEivind Naess
08/05/2022, 7:21 PMEivind Naess
08/05/2022, 7:23 PMKapilarny YT
08/31/2022, 12:21 AMKapilarny YT
08/31/2022, 1:15 PManita
09/21/2022, 9:14 PMBasil Mathew
09/27/2022, 6:03 PMthadhouse
11/03/2022, 6:38 AMJendrik Johannes
12/06/2022, 10:59 AMthadhouse
12/09/2022, 9:39 PMthadhouse
12/09/2022, 9:39 PMdaniel
12/12/2022, 9:28 AM