Commit 3bdff804296fcd8e91fb6fca5de3ecb48defb5d1

Authored by Perry Werneck
Committed by GitHub
1 parent 0f45b2a3
Exists in v5.2

Updating cross-compiler guide.

Showing 1 changed file with 10 additions and 8 deletions   Show diff stats
README.md
... ... @@ -34,15 +34,17 @@ sudo zypper in pw3270
34 34 Cross-compiling on SuSE Linux (Native or WSL) - The easier way!
35 35 ---------------------------------------------------------------
36 36  
37   -1. First add the MinGW Repositories for your SuSE version from:
  37 +1. Add the MinGW Repositories
38 38  
39   - * https://build.opensuse.org/project/show/windows:mingw:win32
40   - * https://build.opensuse.org/project/show/windows:mingw:win64
  39 +```
  40 +sudo zypper ar obs://windows:mingw:win32 mingw32
  41 +sudo zypper ar obs://windows:mingw:win64 mingw64
  42 +sudo zypper ref
  43 +```
41 44  
42 45 2. Run the build script
43 46  
44   - * get it from https://github.com/PerryWerneck/pw3270/blob/master/win/pack.sh
45   - * Run the build script: ./pack.sh --pre-reqs
46   -
47   -
48   -
  47 +```
  48 +wget https://github.com/PerryWerneck/pw3270/blob/master/win/pack.sh pack.sh
  49 +./pack.sh --pre-reqs
  50 +```
... ...