diff options
| author | LemonBoy <thatlemon@gmail.com> | 2019-11-30 21:14:32 +0100 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2019-11-30 21:14:32 +0100 |
| commit | 6f105b5ae7b66ca7e46347b97e5630b866087b87 (patch) | |
| tree | 8df567bdc5fed27682ac6c766ea8a3d503bc8d73 /src/target.cpp | |
| parent | d0c6728d59c6061d18337dde77670551721cde95 (diff) | |
| download | zig-6f105b5ae7b66ca7e46347b97e5630b866087b87.tar.gz zig-6f105b5ae7b66ca7e46347b97e5630b866087b87.zip | |
Implement target_dynamic_linker for mips
Diffstat (limited to 'src/target.cpp')
| -rw-r--r-- | src/target.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/target.cpp b/src/target.cpp index 538f836f24..3a6d8d19f4 100644 --- a/src/target.cpp +++ b/src/target.cpp @@ -1306,6 +1306,8 @@ const char *target_dynamic_linker(const ZigTarget *target) { case ZigLLVM_mips: case ZigLLVM_mipsel: + return "/lib/ld.so.1"; + case ZigLLVM_mips64: case ZigLLVM_mips64el: zig_panic("TODO implement target_dynamic_linker for mips"); |
