| ... | ... | @@ -607,6 +607,7 @@ pub const ExecutableOptions = struct { |
| 607 | 607 | unwind_tables: ?bool = null, |
| 608 | 608 | omit_frame_pointer: ?bool = null, |
| 609 | 609 | sanitize_thread: ?bool = null, |
| 610 | error_tracing: ?bool = null, |
| 610 | 611 | use_llvm: ?bool = null, |
| 611 | 612 | use_lld: ?bool = null, |
| 612 | 613 | zig_lib_dir: ?LazyPath = null, |
| ... | ... | @@ -632,6 +633,7 @@ pub fn addExecutable(b: *Build, options: ExecutableOptions) *Step.Compile { |
| 632 | 633 | .unwind_tables = options.unwind_tables, |
| 633 | 634 | .omit_frame_pointer = options.omit_frame_pointer, |
| 634 | 635 | .sanitize_thread = options.sanitize_thread, |
| 636 | .error_tracing = options.error_tracing, |
| 635 | 637 | }, |
| 636 | 638 | .version = options.version, |
| 637 | 639 | .kind = .exe, |
| ... | ... | @@ -659,6 +661,7 @@ pub const ObjectOptions = struct { |
| 659 | 661 | unwind_tables: ?bool = null, |
| 660 | 662 | omit_frame_pointer: ?bool = null, |
| 661 | 663 | sanitize_thread: ?bool = null, |
| 664 | error_tracing: ?bool = null, |
| 662 | 665 | use_llvm: ?bool = null, |
| 663 | 666 | use_lld: ?bool = null, |
| 664 | 667 | zig_lib_dir: ?LazyPath = null, |
| ... | ... | @@ -678,6 +681,7 @@ pub fn addObject(b: *Build, options: ObjectOptions) *Step.Compile { |
| 678 | 681 | .unwind_tables = options.unwind_tables, |
| 679 | 682 | .omit_frame_pointer = options.omit_frame_pointer, |
| 680 | 683 | .sanitize_thread = options.sanitize_thread, |
| 684 | .error_tracing = options.error_tracing, |
| 681 | 685 | }, |
| 682 | 686 | .kind = .obj, |
| 683 | 687 | .max_rss = options.max_rss, |
| ... | ... | @@ -703,6 +707,7 @@ pub const SharedLibraryOptions = struct { |
| 703 | 707 | unwind_tables: ?bool = null, |
| 704 | 708 | omit_frame_pointer: ?bool = null, |
| 705 | 709 | sanitize_thread: ?bool = null, |
| 710 | error_tracing: ?bool = null, |
| 706 | 711 | use_llvm: ?bool = null, |
| 707 | 712 | use_lld: ?bool = null, |
| 708 | 713 | zig_lib_dir: ?LazyPath = null, |
| ... | ... | @@ -728,6 +733,7 @@ pub fn addSharedLibrary(b: *Build, options: SharedLibraryOptions) *Step.Compile |
| 728 | 733 | .unwind_tables = options.unwind_tables, |
| 729 | 734 | .omit_frame_pointer = options.omit_frame_pointer, |
| 730 | 735 | .sanitize_thread = options.sanitize_thread, |
| 736 | .error_tracing = options.error_tracing, |
| 731 | 737 | }, |
| 732 | 738 | .kind = .lib, |
| 733 | 739 | .linkage = .dynamic, |
| ... | ... | @@ -756,6 +762,7 @@ pub const StaticLibraryOptions = struct { |
| 756 | 762 | unwind_tables: ?bool = null, |
| 757 | 763 | omit_frame_pointer: ?bool = null, |
| 758 | 764 | sanitize_thread: ?bool = null, |
| 765 | error_tracing: ?bool = null, |
| 759 | 766 | use_llvm: ?bool = null, |
| 760 | 767 | use_lld: ?bool = null, |
| 761 | 768 | zig_lib_dir: ?LazyPath = null, |
| ... | ... | @@ -775,6 +782,7 @@ pub fn addStaticLibrary(b: *Build, options: StaticLibraryOptions) *Step.Compile |
| 775 | 782 | .unwind_tables = options.unwind_tables, |
| 776 | 783 | .omit_frame_pointer = options.omit_frame_pointer, |
| 777 | 784 | .sanitize_thread = options.sanitize_thread, |
| 785 | .error_tracing = options.error_tracing, |
| 778 | 786 | }, |
| 779 | 787 | .kind = .lib, |
| 780 | 788 | .linkage = .static, |
| ... | ... | @@ -802,6 +810,7 @@ pub const TestOptions = struct { |
| 802 | 810 | unwind_tables: ?bool = null, |
| 803 | 811 | omit_frame_pointer: ?bool = null, |
| 804 | 812 | sanitize_thread: ?bool = null, |
| 813 | error_tracing: ?bool = null, |
| 805 | 814 | use_llvm: ?bool = null, |
| 806 | 815 | use_lld: ?bool = null, |
| 807 | 816 | zig_lib_dir: ?LazyPath = null, |
| ... | ... | @@ -822,6 +831,7 @@ pub fn addTest(b: *Build, options: TestOptions) *Step.Compile { |
| 822 | 831 | .unwind_tables = options.unwind_tables, |
| 823 | 832 | .omit_frame_pointer = options.omit_frame_pointer, |
| 824 | 833 | .sanitize_thread = options.sanitize_thread, |
| 834 | .error_tracing = options.error_tracing, |
| 825 | 835 | }, |
| 826 | 836 | .max_rss = options.max_rss, |
| 827 | 837 | .filter = options.filter, |