8f7af5fb13
Manually rolls:
5488ca8df..53a7b319
Fixes gyp build after:
https: //codereview.chromium.org/2900193003
Change-Id: I0249aa7d1c40bcb1533c56577bfbda4aedd8cbf9
Reviewed-on: https://chromium-review.googlesource.com/518144
Reviewed-by: Jochen Eisinger <jochen@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#45564}
13 lines
350 B
Bash
Executable File
13 lines
350 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2017 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# This is for backwards-compatibility after:
|
|
# https://codereview.chromium.org/2900193003
|
|
|
|
for entry in $@; do
|
|
echo -L$entry
|
|
echo -Wl,-rpath-link=$entry
|
|
done | xargs echo
|