Skip to content

Commit

Permalink
Sync the build files with the new compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
Gene Gleyzer authored and lagergren committed Feb 21, 2024
1 parent 26a89cd commit e0b4b32
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tasks.register("build") {
val srcModule = "${projectDir}/src/main/x/common.x"

project.exec {
commandLine("xcc", "-verbose",
commandLine("xcc", "--verbose",
"-o", libDir,
srcModule)
}
Expand Down
2 changes: 1 addition & 1 deletion host/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tasks.register("build") {
val srcModule = "${projectDir}/src/main/x/host.x"

project.exec {
commandLine("xcc", "-verbose",
commandLine("xcc", "--verbose",
"-o", libDir,
"-L", libDir,
srcModule)
Expand Down
2 changes: 1 addition & 1 deletion kernel/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ tasks.register("build") {
val srcModule = "${projectDir}/src/main/x/kernel.x"

project.exec {
commandLine("xcc", "-verbose",
commandLine("xcc", "--verbose",
"-o", libDir,
"-L", libDir,
srcModule)
Expand Down
2 changes: 1 addition & 1 deletion platformDB/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tasks.register("build") {
val srcModule = "${projectDir}/src/main/x/platformDB.x"

project.exec {
commandLine("xcc", "-verbose",
commandLine("xcc", "--verbose",
"-o", libDir,
"-L", libDir,
srcModule)
Expand Down
2 changes: 1 addition & 1 deletion platformUI/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ tasks.register("build") {
val srcModule = "${projectDir}/src/main/x/platformUI.x"

project.exec {
commandLine("xcc", "-verbose",
commandLine("xcc", "--verbose",
"-o", libDir,
"-L", libDir,
"-r", webContent,
Expand Down

0 comments on commit e0b4b32

Please sign in to comment.