Changeset 175436 in webkit


Ignore:
Timestamp:
Oct 31, 2014 4:37:25 PM (10 years ago)
Author:
mitz@apple.com
Message:

llvmForJSC build emits a linker warning that it can't find usr/local/LLVMForJavaScriptCore/lib under the build directory
https://bugs.webkit.org/show_bug.cgi?id=138259

Reviewed by Geoff Garen.

  • Scripts/copy-webkitlibraries-to-product-directory: Create this directory even if it’s

going to be empty to silence the warning.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r175414 r175436  
     12014-10-31  Dan Bernstein  <mitz@apple.com>
     2
     3        llvmForJSC build emits a linker warning that it can't find usr/local/LLVMForJavaScriptCore/lib under the build directory
     4        https://bugs.webkit.org/show_bug.cgi?id=138259
     5
     6        Reviewed by Geoff Garen.
     7
     8        * Scripts/copy-webkitlibraries-to-product-directory: Create this directory even if it’s
     9        going to be empty to silence the warning.
     10
    1112014-10-31  Adrian Perez de Castro  <aperez@igalia.com>
    212
  • trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory

    r174196 r175436  
    161161
    162162    my $libraryDir = $useFullLibPaths ? "$productDir$llvmPrefix/lib" : $productDir;
    163     (system("mkdir", "-p", $libraryDir) == 0) or die;
     163    # Always create a directory at the full library path, because the JavaScriptCore build emits a warning if it's not there.
     164    (system("mkdir", "-p", "$productDir$llvmPrefix/lib") == 0) or die;
    164165
    165166    # Determine where to get LLVM binaries and headers.
Note: See TracChangeset for help on using the changeset viewer.