Skip to content

Commit

Permalink
[Docs] Add link to The magic behind configure, make, make install (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tomayac authored Jun 23, 2023
1 parent 01f13eb commit 9f9abed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion site/source/docs/compiling/Building-Projects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Consider the case where you normally build with the following commands:
./configure
make
.. tip:: If you're not familiar with these build commands, the article `The magic behind configure, make, make install <https://thoughtbot.com/blog/the-magic-behind-configure-make-make-install>`_ is a good primer.

To build with Emscripten, you would instead use the following commands:

.. code-block:: bash
Expand Down Expand Up @@ -213,7 +215,7 @@ For example, consider the case where a project "project" uses a library "libstuf
Emscripten Ports
================

Emscripten Ports is a collection of useful libraries, ported to Emscripten. They reside `on github <https://github.com/emscripten-ports>`_, and have integration support in *emcc*. When you request that a port be used, emcc will fetch it from the remote server, set it up and build it locally, then link it with your project, add necessary include to your build commands, etc. For example, SDL2 is in ports, and you can request that it be used with ``-sUSE_SDL=2``. For example,
Emscripten Ports is a collection of useful libraries, ported to Emscripten. They reside `on GitHub <https://github.com/emscripten-ports>`_, and have integration support in *emcc*. When you request that a port be used, emcc will fetch it from the remote server, set it up and build it locally, then link it with your project, add necessary include to your build commands, etc. For example, SDL2 is in ports, and you can request that it be used with ``-sUSE_SDL=2``. For example,

.. code-block:: bash
Expand Down

0 comments on commit 9f9abed

Please sign in to comment.