OLD | NEW |
1 .. _devcycle-building: | 1 .. _devcycle-building: |
2 | 2 |
3 ######## | 3 ######## |
4 Building | 4 Building |
5 ######## | 5 ######## |
6 | 6 |
7 .. contents:: Table Of Contents | 7 .. contents:: Table Of Contents |
8 :local: | 8 :local: |
9 :backlinks: none | 9 :backlinks: none |
10 :depth: 2 | 10 :depth: 2 |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 Implements the Pepper (PPAPI) GLES interface. Needed by applications | 582 Implements the Pepper (PPAPI) GLES interface. Needed by applications |
583 that use the 3D graphics API. | 583 that use the 3D graphics API. |
584 | 584 |
585 libnacl_io.a | 585 libnacl_io.a |
586 Provides a POSIX layer for NaCl. In particular, the library provides a | 586 Provides a POSIX layer for NaCl. In particular, the library provides a |
587 virtual file system and support for sockets. The virtual file system | 587 virtual file system and support for sockets. The virtual file system |
588 allows a module to "mount" a given directory tree. Once a module has | 588 allows a module to "mount" a given directory tree. Once a module has |
589 mounted a file system, it can use standard C library file operations: | 589 mounted a file system, it can use standard C library file operations: |
590 ``fopen``, ``fread``, ``fwrite``, ``fseek``, and ``fclose``. | 590 ``fopen``, ``fread``, ``fwrite``, ``fseek``, and ``fclose``. |
591 For more detail, see the header ``include/nacl_io/nacl_io.h``. | 591 For more detail, see the header ``include/nacl_io/nacl_io.h``. |
592 For an example of how to use nacl_io, see ``examples/demo/nacl_io``. | 592 For an example of how to use nacl_io, see ``examples/demo/nacl_io_demo``. |
593 | 593 |
594 libppapi_simple.a | 594 libppapi_simple.a |
595 Provides a familiar C programming environment by letting a module have a | 595 Provides a familiar C programming environment by letting a module have a |
596 simple entry point that is registered by ``PPAPI_SIMPLE_REGISTER_MAIN``. | 596 simple entry point that is registered by ``PPAPI_SIMPLE_REGISTER_MAIN``. |
597 The entry point is similar to the standard C ``main()`` function, complete | 597 The entry point is similar to the standard C ``main()`` function, complete |
598 with ``argc`` and ``argv[]`` parameters. For details see | 598 with ``argc`` and ``argv[]`` parameters. For details see |
599 ``include/ppapi_simple/ps.h``. For an example of | 599 ``include/ppapi_simple/ps.h``. For an example of |
600 how to use ppapi_simple, ``see examples/tutorial/using_ppapi_simple``. | 600 how to use ppapi_simple, ``see examples/tutorial/using_ppapi_simple``. |
601 | 601 |
602 | 602 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 Function foo has disallowed type: i128 (i128) | 685 Function foo has disallowed type: i128 (i128) |
686 LLVM ERROR: PNaCl ABI verification failed | 686 LLVM ERROR: PNaCl ABI verification failed |
687 | 687 |
688 When faced with a PNaCl ABI verification error, check the list of features | 688 When faced with a PNaCl ABI verification error, check the list of features |
689 that are :ref:`not supported by PNaCl <when-to-use-nacl>`. | 689 that are :ref:`not supported by PNaCl <when-to-use-nacl>`. |
690 If the problem you face is not listed as restricted, | 690 If the problem you face is not listed as restricted, |
691 :ref:`let us know <help>`! | 691 :ref:`let us know <help>`! |
692 | 692 |
693 .. _glibc: http://www.gnu.org/software/libc/ | 693 .. _glibc: http://www.gnu.org/software/libc/ |
694 .. _newlib: http://sourceware.org/newlib/ | 694 .. _newlib: http://sourceware.org/newlib/ |
OLD | NEW |