gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, cmake, updated. ac9bad12d159288eeaf704da


From: Juergen Kahrs
Subject: [gawk-diffs] [SCM] gawk branch, cmake, updated. ac9bad12d159288eeaf704da3aeed63a859339cf
Date: Fri, 08 Feb 2013 10:05:33 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".

The branch, cmake has been updated
       via  ac9bad12d159288eeaf704da3aeed63a859339cf (commit)
      from  35653e6bd56e589a0525c3012a16353420375a6f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=ac9bad12d159288eeaf704da3aeed63a859339cf

commit ac9bad12d159288eeaf704da3aeed63a859339cf
Author: Juergen Kahrs <address@hidden>
Date:   Fri Feb 8 11:05:21 2013 +0100

    Explained how to get gawk built with CMake.

diff --git a/cmake/README.txt b/cmake/README.txt
index 836a4be..aae024c 100644
--- a/cmake/README.txt
+++ b/cmake/README.txt
@@ -8,3 +8,36 @@ should do this, read
   Why the KDE project switched to CMake -- and how 
   http://lwn.net/Articles/188693/
 
+- How can I get gawk compiled with CMake as fast as possible ?
+  git clone git://git.savannah.gnu.org/gawk.git
+  cd gawk
+  git checkout cmake
+  mkdir build
+  cd build
+  cmake ..
+  make
+  ./gawk --version
+Notice that this git-checkout allows you to read the source code,
+track the cmake branch and get updates. You will not be able to
+commit anything. http://savannah.gnu.org/maintenance/UsingGit
+
+- What is the current status of the cmake branch ?
+It has just begun, pre-alpha, unclear if it will ever be taken up
+by the maintainer. We want to study if using CMake with such a
+basic tool like gawk is feasible and if it easier to use than
+the GNU build system.
+
+- Where can I find a tutorial on CMake basics ?
+Use the "official tutorial":
+  http://www.cmake.org/cmake/help/cmake_tutorial.html
+
+- Where is the reference of all commands and variables ?
+Depending on the CMake version you use, select one of these:
+  http://www.cmake.org/cmake/help/v2.8.10/cmake.html
+
+- How can I cross-compile ?
+Proceed in the same way as explained above for native compilation,
+but use a different build directory. When using CMake, do this:
+  cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/Toolchain_mingw32.cmake ..
+Write a new Toolchain file for your cross-compiler and use it.
+

-----------------------------------------------------------------------

Summary of changes:
 cmake/README.txt |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]