aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorZac Pierson <zacpiersonhehe@gmail.com>2017-02-11 01:10:03 -0600
committerZac Pierson <zacpiersonhehe@gmail.com>2017-02-11 01:10:03 -0600
commit99c663d9f309e694575151e655967f621150ec22 (patch)
tree75cbd2e95a0104b630fb6f44105f01c8954739c6 /src/main.c
parentafac95e092585c27650c1e53605c2b5401995bd3 (diff)
Questioning whether MacOS libraries should be .dylib or .so
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index e7f656cfa..ba05144f7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -401,6 +401,7 @@ int main(int argc, char **argv) {
char *linker;
if (build_context.is_dll) {
// Shared libraries are .dylib on MacOS and .so on Linux.
+ // TODO(zangent): Is that statement entirely truthful?
#if defined(GB_SYSTEM_OSX)
output_ext = ".dylib";
#else