Skip to content

Commit

Permalink
Attempt to fix C++ exceptions on macOS part 4: undo da changes
Browse files Browse the repository at this point in the history
The linker flag wasn't needed apparently
  • Loading branch information
qwertychouskie committed Jul 1, 2024
1 parent 7a2a655 commit e5b0f8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ model {
}
binaries.all {
if (it.targetPlatform.name == 'osxuniversal') {
linker.args '-framework', 'IOKit', '-Wl,-keep_dwarf_unwind'
linker.args '-framework', 'IOKit'
}
if (it.targetPlatform.name == nativeUtils.wpi.platforms.roborio) {
it.buildable = false
Expand Down
2 changes: 1 addition & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'maven-publish'

ext.licenseFile = files("$rootDir/LICENSE.txt")

def pubVersion = '2.3.7'
def pubVersion = '2.3.8'

def outputsFolder = file("$buildDir/allOutputs")

Expand Down
2 changes: 1 addition & 1 deletion vendordeps/CANBridge.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"fileName": "CANBridge.json",
"name": "CANBridge",
"version": "2.3.7",
"version": "2.3.8",
"uuid": "34b37c7c-8acc-405f-9631-d21f20dc59d8",
"mavenUrls": [
"http://www.revrobotics.com/content/sw/max/sdk/maven/"
Expand Down

0 comments on commit e5b0f8b

Please sign in to comment.