aboutsummaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
authortemporal <temporal@630680e5-0e50-0410-840e-4b1c322b438d>2008-07-21 20:28:30 +0000
committertemporal <temporal@630680e5-0e50-0410-840e-4b1c322b438d>2008-07-21 20:28:30 +0000
commitcc930432c2823c3d82e0b8dd2ae4f446c82f4fce (patch)
tree034374c1b36c3acd45957c4fd294bb89d866ce02 /README.txt
parente8564291e29c7bb07b626ee4b0c5e99e6b2270d3 (diff)
downloadprotobuf-cc930432c2823c3d82e0b8dd2ae4f446c82f4fce.tar.gz
protobuf-cc930432c2823c3d82e0b8dd2ae4f446c82f4fce.tar.bz2
protobuf-cc930432c2823c3d82e0b8dd2ae4f446c82f4fce.zip
misc. stuff:
- Improved readmes. - Fixed incorrect definition of kint32min. - Fixed absolute output paths on Windows. - Added info to Java POM that will be required when we upload the package to a Maven repo.
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt26
1 files changed, 23 insertions, 3 deletions
diff --git a/README.txt b/README.txt
index 75a429af..71780367 100644
--- a/README.txt
+++ b/README.txt
@@ -10,8 +10,8 @@ incompatible way in the future. It's unlikely that any big changes
will be made, but we can make no promises. Expect a non-beta release
sometime in August 2008.
-C++ Installation
-================
+C++ Installation - Unix
+=======================
To build and install the C++ Protocol Buffer runtime and the Protocol
Buffer compiler (protoc) execute the following:
@@ -27,7 +27,19 @@ Proceed at your own risk.
"make install" may require superuser privileges.
-For advanced usage information on configure and make, see INSTALL.
+For advanced usage information on configure and make, see INSTALL.txt.
+
+** Hint on insall location **
+
+ By default, the package will be installed to /usr/local. However,
+ on many platforms, /usr/local/lib is not part of LD_LIBRARY_PATH.
+ You can add it, but it may be easier to just install to /usr
+ instead. To do this, invoke configure as follows:
+
+ ./configure --prefix=/usr
+
+ If you already built the package with a different prefix, make sure
+ to run "make clean" before building again.
** Note for Solaris users **
@@ -39,6 +51,14 @@ For advanced usage information on configure and make, see INSTALL.
See src/solaris/libstdc++.la for more info on this bug.
+C++ Installation - Windows
+==========================
+
+If you are using Micosoft Visual C++, see vsprojects/readme.txt.
+
+If you are using Cygwin or MinGW, follow the Unix installation
+instructions, above.
+
Java and Python Installation
============================