diff options
author | Brent Cook <bcook@openbsd.org> | 2015-06-11 06:25:41 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-06-11 06:26:20 -0500 |
commit | cf0bcbd5990e921fff9e50c0d1b890cf13dea30a (patch) | |
tree | f925a9b2340155ac1981930edadfc3517d7774e4 | |
parent | aed0eee7683f6223a3f7c4a9642c7cfdfdf65f57 (diff) | |
download | portable-cf0bcbd5990e921fff9e50c0d1b890cf13dea30a.tar.gz portable-cf0bcbd5990e921fff9e50c0d1b890cf13dea30a.tar.bz2 portable-cf0bcbd5990e921fff9e50c0d1b890cf13dea30a.zip |
add OS-specific build notes
-rw-r--r-- | README | 16 | ||||
-rw-r--r-- | README.windows | 6 |
2 files changed, 20 insertions, 2 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 | ||
diff --git a/README.windows b/README.windows index 12e4963..cdaed2e 100644 --- a/README.windows +++ b/README.windows | |||
@@ -36,5 +36,7 @@ cv2pdb to generate Visual Studio and windbg compatible debug files. cv2pdb is a | |||
36 | tool developed for the D language and can be found here: | 36 | tool developed for the D language and can be found here: |
37 | https://github.com/rainers/cv2pdb | 37 | https://github.com/rainers/cv2pdb |
38 | 38 | ||
39 | Pre-build Windows binaries are available with the LibreSSL release for your | 39 | Pre-built Windows binaries are available with LibreSSL releases if you do not |
40 | convenience. | 40 | have a mingw-w64 build environment. Mingw-w64 code is largely, but not 100%, |
41 | compatible with code built from Visual Studio. Notably, FILE * pointers cannot | ||
42 | be shared between code built for Mingw-w64 and Visual Studio. | ||