select optimization level and debugging for dev

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2005 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.5
Stéphane Fillod, F8CFE 2005-04-10 21:55:27 +00:00
rodzic 6ba9819f5d
commit 5a29fae120
1 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -167,7 +167,7 @@ the AUTOCONF,AUTOHEADER,AUTOHEADER,ACLOCAL variables with the required
versions seen in the previous section.
chmod +x autogen.sh
./autogen.sh --disable-static --prefix=/some/where
./autogen.sh --disable-static --prefix=/some/where CFLAGS="-g -O0"
make
make install
@ -179,8 +179,9 @@ some exotic hardware/software system:
./config.guess --version
./config.sub --version
The prefix argument is optionnal. The --disable-static speeds up
compilation if you don't plan to use static libraries.
The prefix argument is optionnal. The --disable-static and CFLAGS="-O0"
speeds up compilation if you don't plan to use static libraries and
bear less optimized binaries.
NOTE: autogen.sh has only to be run the first time after a fresh checkout.