Skip to content

Commit

Permalink
Adds support for Automake's "Silent Building" mechanism.
Browse files Browse the repository at this point in the history
  • Loading branch information
alobbs committed Nov 25, 2011
1 parent 69807b0 commit 8d9c58f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README
Expand Up @@ -100,7 +100,7 @@ FAQ
Development
-----------
./autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-static-module=all --enable-static --enable-shared=no --with-mysql=no --with-ffmpeg=no --with-ldap=no --enable-beta --enable-trace --enable-backtraces --enable-maintainer-mode
make CFLAGS="-ggdb3 -O0" -j8
make V=1 CFLAGS="-ggdb3 -O0" -j8

How to cross compile the Win32 version
--------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions configure.in
Expand Up @@ -86,6 +86,8 @@ dnl Initial CFLAGS
AC_MSG_CHECKING(initial CFLAGS)
AC_MSG_RESULT($CFLAGS)

m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])

dnl Check for CPU / vendor / OS
AC_CANONICAL_HOST

Expand Down
4 changes: 2 additions & 2 deletions doc/dev_debug.txt
Expand Up @@ -23,10 +23,10 @@ application), there are some helpful tools available for you.
with debug information just execute make like this:
+
----
make CFLAGS="-O0 -g3"
make CFLAGS="-O0 -ggdb3" V=1
----
+
And then you'll be able to execute gdb, cgdb, gdbtui..
And then you will be able to execute under a debugger (gdb).

* You can use autoconf to set up Cherokee to use static modules:
+
Expand Down

0 comments on commit 8d9c58f

Please sign in to comment.