ecs: update self-hosted compiler TODO

This commit is contained in:
Stephen Gutekanst 2022-08-29 05:56:44 -07:00
parent 701f872ecb
commit e5a7b85e26

View file

@ -10,7 +10,7 @@ pub fn build(b: *std.build.Builder) void {
pub fn testStep(b: *std.build.Builder, mode: std.builtin.Mode, target: std.zig.CrossTarget) *std.build.RunStep {
const main_tests = b.addTestExe("ecs-tests", (comptime thisDir()) ++ "/src/main.zig");
// TODO: remove this when tests passed with self-hosted compiler
// TODO(self-hosted): remove this when tests passed with self-hosted compiler
main_tests.use_stage1 = true;
main_tests.setBuildMode(mode);