Skip to content

Commit 9f9abed

Browse files
authored
[Docs] Add link to The magic behind configure, make, make install (#19696)
1 parent 01f13eb commit 9f9abed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

site/source/docs/compiling/Building-Projects.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ Consider the case where you normally build with the following commands:
2121
./configure
2222
make
2323
24+
.. 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.
25+
2426
To build with Emscripten, you would instead use the following commands:
2527

2628
.. code-block:: bash
@@ -213,7 +215,7 @@ For example, consider the case where a project "project" uses a library "libstuf
213215
Emscripten Ports
214216
================
215217

216-
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,
218+
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,
217219

218220
.. code-block:: bash
219221

0 commit comments

Comments
 (0)