Skip to content

Commit 917fa0d

Browse files
authored
Fix incorrect systemcore platform (#235)
1 parent 563c0a0 commit 917fa0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ToolchainPlugin/src/main/java/edu/wpi/first/toolchain/systemcore/SystemCoreToolchainPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void apply(Project project) {
5555
toolchainName,
5656
toolchainName + "Gcc",
5757
configuration.getOptional());
58-
descriptor.getToolchainPlatform().set(NativePlatforms.roborio);
58+
descriptor.getToolchainPlatform().set(NativePlatforms.systemcore);
5959
descriptor.getVersionLow().set(systemcoreExt.getVersionLow());
6060
descriptor.getVersionHigh().set(systemcoreExt.getVersionHigh());
6161
configuration.getToolchainDescriptor().set(descriptor);

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java {
1313

1414
allprojects {
1515
group = "edu.wpi.first"
16-
version = "2025.7.0"
16+
version = "2025.7.1"
1717

1818
if (project.hasProperty('publishVersion')) {
1919
version = project.publishVersion

testing/cpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import edu.wpi.first.nativeutils.vendordeps.WPIVendorDepsPlugin
33

44
plugins {
55
id "cpp"
6-
id "edu.wpi.first.NativeUtils" version "2025.7.0"
6+
id "edu.wpi.first.NativeUtils" version "2025.7.1"
77
}
88

99
nativeUtils.addWpiNativeUtils()

0 commit comments

Comments
 (0)