diff options
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 99d4100..a5097e3 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -3886,7 +3886,10 @@ '-B<!(cd <(DEPTH) && pwd -P)/<(binutils_dir)', ], }], - ['binutils_version>=224', { + # Some binutils 2.23 releases may or may not have new dtags enabled, + # but they are all compatible with --disable-new-dtags, + # because the new dynamic tags are not created by default. + ['binutils_version>=223', { # Newer binutils don't set DT_RPATH unless you disable "new" dtags # and the new DT_RUNPATH doesn't work without --no-as-needed flag. # FIXME(mithro): Figure out the --as-needed/--no-as-needed flags |