diff options
Diffstat (limited to 'README')
-rw-r--r-- | README | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -69,3 +69,19 @@ install the package on most systems. | |||
69 | ./configure # see ./configure --help for configuration options | 69 | ./configure # see ./configure --help for configuration options |
70 | make check # runs builtin unit tests | 70 | make check # runs builtin unit tests |
71 | make install # set DESTDIR= to install to an alternate location | 71 | make install # set DESTDIR= to install to an alternate location |
72 | |||
73 | OS specific build information: | ||
74 | |||
75 | - HP-UX (11i) | ||
76 | Set the UNIX_STD environment variable to '2003' before running 'configure' | ||
77 | in order to build with the HP C/aC++ compiler. See the "standards(5)" man | ||
78 | page for more details. | ||
79 | |||
80 | export UNIX_STD=2003 | ||
81 | ./configure | ||
82 | make | ||
83 | |||
84 | - Windows - Mingw-w64 | ||
85 | LibreSSL builds against relatively recent versions of Mingw-w64, not to be | ||
86 | confused with the original mingw.org project. Mingw-w64 3.2 or later | ||
87 | should work. See README.windows for more information | ||