aboutsummaryrefslogtreecommitdiff
path: root/src/userland.cpp
diff options
context:
space:
mode:
authorLayne Gustafson <lgustaf1@binghamton.edu>2019-12-20 21:46:42 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-01-19 20:53:19 -0500
commitbd6ef21f8556b3872c5780eee70621e6c66a0aa4 (patch)
tree8b7c28b324ff41905b26d28c5e0c3441f93c06f0 /src/userland.cpp
parentc8f1e0d6d8f3ccfa952e9612903783baa9b2c12f (diff)
downloadzig-bd6ef21f8556b3872c5780eee70621e6c66a0aa4.tar.gz
zig-bd6ef21f8556b3872c5780eee70621e6c66a0aa4.zip
Add cpu/feature specification to cmndline
Diffstat (limited to 'src/userland.cpp')
-rw-r--r--src/userland.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/userland.cpp b/src/userland.cpp
index 87ef99c03a..e0c8b33fa2 100644
--- a/src/userland.cpp
+++ b/src/userland.cpp
@@ -91,3 +91,4 @@ void stage2_progress_update_node(Stage2ProgressNode *node, size_t completed_coun
void stage2_list_features_for_arch(const char *arch_name_ptr, size_t arch_name_len, bool show_subfeatures) {}
void stage2_list_cpus_for_arch(const char *arch_name_ptr, size_t arch_name_len, bool show_subfeatures) {}
+bool stage2_validate_cpu_and_features(const char *arch_name, const char *cpu, const char *features) { return true; }