[PATCH] D63688: [Support] Fix build under Emscripten

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Jun 22 17:30:17 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL364143: [Support] Fix build under Emscripten (authored by kfischer, committed by ).

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D63688/new/

https://reviews.llvm.org/D63688

Files:
  llvm/trunk/lib/Support/Unix/Path.inc


Index: llvm/trunk/lib/Support/Unix/Path.inc
===================================================================
--- llvm/trunk/lib/Support/Unix/Path.inc
+++ llvm/trunk/lib/Support/Unix/Path.inc
@@ -424,6 +424,9 @@
 #elif defined(__Fuchsia__)
   // Fuchsia doesn't yet support remote filesystem mounts.
   return true;
+#elif defined(__EMSCRIPTEN__)
+  // Emscripten doesn't currently support remote filesystem mounts.
+  return true;
 #elif defined(__HAIKU__)
   // Haiku doesn't expose this information.
   return false;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63688.206127.patch
Type: text/x-patch
Size: 522 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190623/eb937333/attachment.bin>


More information about the llvm-commits mailing list