Skip to content

Commit

Permalink
fix PATH export in README.windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash committed May 21, 2013
1 parent f991fbe commit b29ed08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@ Unfortunately, the version of gcc installed by Ubuntu is currently 4.6, which do
5. `bash update_source.sh`
4. `bash rebuild_cross.sh`
5. `mv cross ~/cross-w64`
6. `export PATH=$HOME/cross-w64:$PATH` # NOTE: it is important that you remember to always do this before using make in the following steps!
6. `export PATH=$HOME/cross-w64/bin:$PATH` # NOTE: it is important that you remember to always do this before using make in the following steps!
Then we can essentially just repeat these steps for the 32-bit compiler:
7. `cd ..`
8. `cp -a mingw-w64-dgn mingw-w32-dgn`
9. `cd mingw-w32-dgn`
10. `rm -r cross build`
11. `bash rebuild_cross.sh 32r`
12. `mv cross ~/cross-w32`
13. `export PATH=$HOME/cross-w32:$PATH` # NOTE: it is important that you remember to always do this before using make in the following steps!
13. `export PATH=$HOME/cross-w32/bin:$PATH` # NOTE: it is important that you remember to always do this before using make in the following steps!

Note: for systems that support rpm-based package managers, the OpenSUSE build service appears to contain a fully up-to-date versions of the necessary environment.

Expand Down

0 comments on commit b29ed08

Please sign in to comment.