-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update workflow to include gcc 14, and clang 17, 18, 19 (#335)
* Update workflow to include gcc 14, and clang 17, 18, 19 * Gcc 14 not yet supported for CI * Debug on CI * Clang 19 is the first to support date * Fix typo * Focus on Clang 17 for now
- Loading branch information
Showing
25 changed files
with
196 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../compiler/clang) | ||
|
||
[settings] | ||
compiler.version=18 | ||
|
||
[conf] | ||
tools.build:compiler_executables={"c":"clang-18","cpp":"clang++-18"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/debug) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/min-size-rel) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/release) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/rel-with-deb-info) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../compiler/clang) | ||
|
||
[settings] | ||
compiler.version=19 | ||
|
||
[conf] | ||
tools.build:compiler_executables={"c":"clang-19","cpp":"clang++-19"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/debug) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/min-size-rel) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/release) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/rel-with-deb-info) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/debug) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/min-size-rel) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/release) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/rel-with-deb-info) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/debug) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/min-size-rel) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/release) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/armv8) | ||
include(../../cpp/23) | ||
include(../../config/rel-with-deb-info) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../compiler/gcc) | ||
|
||
[settings] | ||
compiler.version=14 | ||
|
||
[conf] | ||
tools.build:compiler_executables={"c":"gcc-14","cpp":"g++-14"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/debug) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/min-size-rel) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/release) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
include(../../default) | ||
include(../../arch/x64) | ||
include(../../config/rel-with-deb-info) | ||
include(../../os/current) | ||
include(../../packages/settings) | ||
include(compiler) | ||
include(../../cpp/23) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters