Skip to content

Commit d727d5d

Browse files
danbevrefack
authored andcommitted
build: enable cctest to use objects (gyp part)
this is a re-base of the gyp part of 6a09a69 after bumping GYP version to https://chromium.googlesource.com/external/gyp/+/eb296f67da078ec01f5e3a9ea9cdc6d26d680161 Original-PR-URL: #11956 Original-Ref: #9163 Original-Reviewed-By: James M Snell <[email protected]> PR-URL: #12450 Reviewed-By: João Reis <[email protected]>
1 parent e6eac85 commit d727d5d

File tree

1 file changed

+1
-1
lines changed
  • tools/gyp/pylib/gyp/generator

1 file changed

+1
-1
lines changed

tools/gyp/pylib/gyp/generator/make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def CalculateGeneratorInputInfo(params):
147147
# special "figure out circular dependencies" flags around the entire
148148
# input list during linking.
149149
quiet_cmd_link = LINK($(TOOLSET)) $@
150-
cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS)
150+
cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) $(LIBS) -Wl,--end-group
151151
152152
# We support two kinds of shared objects (.so):
153153
# 1) shared_library, which is just bundling together many dependent libraries

0 commit comments

Comments
 (0)