nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | $Id: INSTALL,v 1.1.1.1 2004/05/18 01:50:44 kgibbs Exp $ |
2 | |||
3 | Platform Specific Notes |
||
4 | |||
5 | FreeBSD |
||
6 | |||
7 | If you use a cc or c++ other than the system one, threads may not be |
||
8 | detected properly. To work around this set the following environment |
||
9 | variables: |
||
10 | |||
11 | setenv CC /usr/bin/cc |
||
12 | setenv CXX /usr/bin/c++ |
||
13 | |||
14 | --- |
||
15 | |||
16 | Windows (Cygwin) |
||
17 | |||
18 | configure / make as normal: |
||
19 | |||
20 | $ ../iperf2-code/configure |
||
21 | $ make |
||
22 | |||
23 | The result requires Cygwin on client machines. |
||
24 | |||
25 | --- |
||
26 | |||
27 | Windows (Cygwin + i686-w64-mingw32) |
||
28 | |||
29 | Use Cygwin Setup to install i686-w64-mingw32 and related packages |
||
30 | |||
31 | Configure as a cross-compile: |
||
32 | |||
33 | $ ../iperf2-code/configure -host i686-w64-mingw32 |
||
34 | $ make |
||
35 | |||
36 | The result runs natively on WinXP and above without requiring Cygwin |
||
37 | |||
38 | --- |
||
39 | |||
40 | Windows (MinGW + Msys) |
||
41 | |||
42 | Install MinGW+Msys |
||
43 | https://sourceforge.net/projects/mingw/ |
||
44 | http://www.mingw.org/wiki/MinGW |
||
45 | http://www.mingw.org/wiki/MSYS |
||
46 | |||
47 | configure / make as normal: |
||
48 | |||
49 | $ ../iperf2-code/configure |
||
50 | $ make |
||
51 | |||
52 | The result runs natively on WinXP and above without requiring |
||
53 | MinGW+Msys on client machines. |
||
54 | |||
55 | --- |