Set ADDR_NO_RANDOMIZE on linux for determinism

This commit is contained in:
2022-01-28 12:48:59 -05:00
parent 301fe24617
commit 9d7bf8b0f9
4 changed files with 17 additions and 3 deletions

View File

@@ -45,8 +45,6 @@ int main(int argc, char **argv)
}
}
if (engine == nullptr) usage();
// Remove one argument from the argument vector,
// so that it looks like a normal argument vector.
driver_drive(engine.get(), argc - 1, argv + 1);
driver_drive(engine.get(), argc, argv);
}