BUILD.gn 418 B

123456789101112131415161718192021
  1. # Copyright 2014 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. config("compiler_defaults") {
  5. if (current_os == "linux") {
  6. cflags = [
  7. "-fPIC",
  8. "-pthread",
  9. ]
  10. }
  11. }
  12. config("executable_ldconfig") {
  13. if (!is_mac) {
  14. ldflags = [
  15. "-Wl,-rpath=\$ORIGIN/",
  16. "-Wl,-rpath-link=",
  17. ]
  18. }
  19. }