Changes

Jump to navigation Jump to search
→‎Arch: show equivalent bash commands
</syntaxhighlight>
To run these commands on a real distribution (that is, not in a container), you can simply execute each "RUN" command exactly as it appears and then substitute `cd` commands for the "WORKDIR" lines(or use <code>pushd</code>/<code>popd</code> pairs as shown in the example below). You can ignore the "FROM" line. You will want to adjust the directories for your own computer. So for example, one could use the following commands: <syntaxhighlight lang="bash">mkdir FHSS_Utilscd FHSS_Utilspacman --noconfirm -Sy git make cmake gcc gnuradio boost doxygen graphviz pybind11git clone https://github.com/sandialabs/gr-pdu_utils.gitgit clone https://github.com/sandialabs/gr-timing_utils.gitgit clone https://github.com/sandialabs/gr-fhss_utils.gitfor fn in * ; do pushd $fn && git checkout maint-3.10 && popd ; donepushd gr-pdu_utilsgit fetch origin refs/pull/23/head:pull_23git checkout pull_23cmake -B build && cmake --build build -t installpopdpushd gr-timing_utilsgit fetch origin refs/pull/9/head:pull_9git checkout pull_9cmake -B build && cmake --build build -t installpopdpushd gr-fhss_utilsRUN cmake -B build && cmake --build build -t installpopd</syntaxhighlight>

Navigation menu