• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..02-May-2021-

burp/H02-May-2021-1,5921,033

compat/H02-May-2021-4,3312,925

installer/H02-May-2021-1,101930

lib/H02-May-2021-230194

utest/H02-May-2021-1,6111,055

.gitignoreH A D02-May-202180 87

MakefileH A D02-May-20213.2 KiB10794

Makefile.inc.inH A D02-May-20213.2 KiB11894

Makefile.installerH A D02-May-20212.7 KiB11684

Makefile.rulesH A D02-May-20211.1 KiB5141

READMEH A D02-May-2021753 2415

winapi.hH A D02-May-20216.6 KiB18188

README

1How to build the Windows client installers on unix-based systems
2----------------------------------------------------------------
3
4First you need to get a working cross compile area set up.
5See https://github.com/grke/burp-cross-tools
6
7This will install cross compilers for both 32bit and 64bit clients
8and all the burp dependencies, inside a docker image.
9
10You can now start the docker image, copy the burp sources inside, and
11build the burp installers themselves.
12
13Change to the burp source directory.
14
15Standing in src/win32, run the following:
16
17  make            (for 32bit clients)
18  make WIN64=yes  (for 64bit clients)
19
20All being well, the installer file will appear in:
21
22  release32       (for 32bit clients)
23  release64       (for 64bit clients)
24