mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Merge pull request #1263 from Kelimion/ci_build_debug
Don't run demo's `soa_struct` when under -debug.
This commit is contained in:
+10
-1
@@ -2439,7 +2439,16 @@ main :: proc() {
|
|||||||
deprecated_attribute()
|
deprecated_attribute()
|
||||||
range_statements_with_multiple_return_values()
|
range_statements_with_multiple_return_values()
|
||||||
threading_example()
|
threading_example()
|
||||||
soa_struct_layout()
|
|
||||||
|
when !ODIN_DEBUG {
|
||||||
|
/*
|
||||||
|
This test causes the following error when compiled with -`debug`:
|
||||||
|
`Kernel32.lib(KERNEL32.dll) : fatal error LNK1103: debugging information corrupt; recompile module`
|
||||||
|
Only compile when not running under debug for now to not hold up CI for other commits.
|
||||||
|
*/
|
||||||
|
soa_struct_layout()
|
||||||
|
}
|
||||||
|
|
||||||
constant_literal_expressions()
|
constant_literal_expressions()
|
||||||
union_maybe()
|
union_maybe()
|
||||||
explicit_context_definition()
|
explicit_context_definition()
|
||||||
|
|||||||
Reference in New Issue
Block a user