diff options
-rw-r--r-- | deps/gyp/pylib/gyp/generator/make.py | 3 | ||||
-rw-r--r-- | linux/llmr-app.gyp | 2 | ||||
-rw-r--r-- | llmr.gyp | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/deps/gyp/pylib/gyp/generator/make.py b/deps/gyp/pylib/gyp/generator/make.py index b88a433d3d..b6f766d554 100644 --- a/deps/gyp/pylib/gyp/generator/make.py +++ b/deps/gyp/pylib/gyp/generator/make.py @@ -1447,7 +1447,8 @@ $(obj).$(TOOLSET)/$(TARGET)/%%.o: $(obj)/%%%s FORCE_DO_CMD libraries = spec.get('libraries') if libraries: # Remove duplicate entries - libraries = gyp.common.uniquer(libraries) + # Commented out due to https://code.google.com/p/gyp/issues/detail?id=419 + # libraries = gyp.common.uniquer(libraries) if self.flavor == 'mac': libraries = self.xcode_settings.AdjustLibraries(libraries) self.WriteList(libraries, 'LIBS') diff --git a/linux/llmr-app.gyp b/linux/llmr-app.gyp index 2a03d90186..e12737b92c 100644 --- a/linux/llmr-app.gyp +++ b/linux/llmr-app.gyp @@ -42,7 +42,7 @@ '<@(curl_cflags)', ], 'link_settings': { - 'ldflags': [ + 'libraries': [ '<@(glfw3_libraries)', '<@(curl_libraries)', ], @@ -97,7 +97,7 @@ ] } }, { - 'ldflags': [ + 'libraries': [ '<@(png_libraries)', '<@(uv_libraries)', ] @@ -167,7 +167,7 @@ ] } }, { - 'ldflags': [ + 'libraries': [ '<@(png_libraries)', '<@(uv_libraries)', ] |