Skip to content

Commit

Permalink
Remove workaround to problem with empty test sources
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolamarao committed Oct 17, 2023
1 parent eda160d commit 2bdc728
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
10 changes: 1 addition & 9 deletions multiboot2/start/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,4 @@ dependencies {

metal {
compileOptions = listOf("-fasm-blocks","-g","-std=c++20")
}

// TODO: Gradle Metal incorrectly tries to link empty source set

tasks.`link-test` { enabled = false }

// TODO: Gradle Metal incorrectly tries to run nonexistent link output

tasks.`run-test` { enabled = false }
}
10 changes: 1 addition & 9 deletions psys/start/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,4 @@ dependencies {

metal {
compileOptions = listOf("-std=c++20", "-flto", "-fasm-blocks", "-gdwarf")
}

// TODO: Gradle Metal incorrectly tries to link empty source set

tasks.`link-test` { enabled = false }

// TODO: Gradle Metal incorrectly tries to run nonexistent link output

tasks.`run-test` { enabled = false }
}

0 comments on commit 2bdc728

Please sign in to comment.