[fuchsia] Disable static libc temporarily

If fx logger fails to send it will fall back to stderr,
so we need to avoid recursion before enabling this.

Change-Id: I3ddd1a81f0a66aa360b5150c22a4fd97c75e1938
diff --git a/src/intel/vulkan/BUILD.gn b/src/intel/vulkan/BUILD.gn
index 3dbf61a..ccf6c5c 100644
--- a/src/intel/vulkan/BUILD.gn
+++ b/src/intel/vulkan/BUILD.gn
@@ -43,7 +43,8 @@
         rebase_path("$magma_build_root/gnbuild/imported_symbols.allowlist")
     deps += [
       "$magma_build_root/src/libmagma",
-      "$mesa_build_root/src/os:fuchsia_libc_static",
+      # TODO(fxb/13095); enable this when fx logger failure case is handled
+      #"$mesa_build_root/src/os:fuchsia_libc_static",
     ]
   }
 
diff --git a/src/os/fuchsia_cstubs.c b/src/os/fuchsia_cstubs.c
index ceb7c96..818b55e 100644
--- a/src/os/fuchsia_cstubs.c
+++ b/src/os/fuchsia_cstubs.c
@@ -20,6 +20,7 @@
  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  * IN THE SOFTWARE.
  */
+#error Not ready yet
 
 #include <assert.h>
 #include <dirent.h>
diff --git a/src/os/fuchsia_stdio.c b/src/os/fuchsia_stdio.c
index 043bc7f..d024360 100644
--- a/src/os/fuchsia_stdio.c
+++ b/src/os/fuchsia_stdio.c
@@ -20,6 +20,7 @@
  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  * IN THE SOFTWARE.
  */
+#error Not ready yet
 
 #include <assert.h>
 #include <errno.h>