diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-10-09 13:20:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-09 13:20:27 -0400 |
| commit | 9e38a81230bcaefb50fae610c071005449a7abfb (patch) | |
| tree | f706728a6b853da0b66379539018645df583519b /src/target.cpp | |
| parent | d40c4e7c896c5dfed9dd35e8c0d2117f7cf5c53c (diff) | |
| parent | 81c6f087241b6b7a1c12de72a2061cb02df0f93f (diff) | |
| download | zig-9e38a81230bcaefb50fae610c071005449a7abfb.tar.gz zig-9e38a81230bcaefb50fae610c071005449a7abfb.zip | |
Merge pull request #1647 from ziglang/static-libs
Support building static libraries
Diffstat (limited to 'src/target.cpp')
| -rw-r--r-- | src/target.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target.cpp b/src/target.cpp index 525935310a..25dfa9d3cb 100644 --- a/src/target.cpp +++ b/src/target.cpp @@ -250,7 +250,7 @@ Os get_target_os(size_t index) { return os_list[index]; } -static ZigLLVM_OSType get_llvm_os_type(Os os_type) { +ZigLLVM_OSType get_llvm_os_type(Os os_type) { switch (os_type) { case OsFreestanding: case OsZen: |
