Skip to content

Commit 25632f4

Browse files
committed
stage2: enable building libssp
This was disabled when self-hosted was less capable; now it is time to enable it. See related issue #7265
1 parent 9ae5438 commit 25632f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compilation.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1932,7 +1932,7 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation {
19321932
const capable_of_building_compiler_rt = build_options.have_llvm;
19331933

19341934
const capable_of_building_zig_libc = build_options.have_llvm;
1935-
const capable_of_building_ssp = comp.bin_file.options.use_stage1;
1935+
const capable_of_building_ssp = build_options.have_llvm;
19361936

19371937
if (comp.bin_file.options.include_compiler_rt and capable_of_building_compiler_rt) {
19381938
if (is_exe_or_dyn_lib) {

0 commit comments

Comments
 (0)