Building Dolphin on Linux: Difference between revisions

On the step of pulling git submodules, the recursive tage should be used so the submodules of the submodules download. CMake will spit this out as an error if you run CMake without doing so.
m (→‎OpenSuse Tumbleweed: another typo and move workaround.)
(On the step of pulling git submodules, the recursive tage should be used so the submodules of the submodules download. CMake will spit this out as an error if you run CMake without doing so.)
Line 53: Line 53:
Pull the git submodules.
Pull the git submodules.


<code>git submodule update --init</code>
<code>git submodule update --init --recursive</code>


To update the local copy in the future without repeating the whole process, run <code>git pull origin</code> within the <code>dolphin-emu</code> directory and proceed to the following steps.
To update the local copy in the future without repeating the whole process, run <code>git pull origin</code> within the <code>dolphin-emu</code> directory and proceed to the following steps.