Просмотр исходного кода

remove stack protector
dragonOS kernel doesn't need it

Yao Zhao 1 год назад
Родитель
Сommit
ba98506685
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      build.rs

+ 1 - 0
build.rs

@@ -8,6 +8,7 @@ fn compile_libunwind() {
     cfg.cpp_set_stdlib(None);
     cfg.cpp(true);
     cfg.flag("-std=c++11");
+    cfg.flag("-fno-stack-protector");
     cfg.flag("-fno-exceptions");
     cfg.flag("-fno-rtti");
     cfg.flag("-fstrict-aliasing");