DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

(mysql.info.gz) HP-UX 10

Info Catalog (mysql.info.gz) Other Unix Notes (mysql.info.gz) Other Unix Notes (mysql.info.gz) HP-UX 11
 
 2.12.5.1 HP-UX Version 10.20 Notes
 ..................................
 
 There are a couple of small problems when compiling MySQL on HP-UX.  We
 recommend that you use `gcc' instead of the HP-UX native compiler,
 because `gcc' produces better code.
 
 We recommend using `gcc' 2.95 on HP-UX.  Don't use high optimization
 flags (such as `-O6') because they may not be safe on HP-UX.
 
 The following `configure' line should work with `gcc' 2.95:
 
      CFLAGS="-I/opt/dce/include -fpic" \
      CXXFLAGS="-I/opt/dce/include -felide-constructors -fno-exceptions \
      -fno-rtti" \
      CXX=gcc \
      ./configure --with-pthread \
          --with-named-thread-libs='-ldce' \
          --prefix=/usr/local/mysql --disable-shared
 
 The following `configure' line should work with `gcc' 3.1:
 
      CFLAGS="-DHPUX -I/opt/dce/include -O3 -fPIC" CXX=gcc \
      CXXFLAGS="-DHPUX -I/opt/dce/include -felide-constructors \
          -fno-exceptions -fno-rtti -O3 -fPIC" \
      ./configure --prefix=/usr/local/mysql \
          --with-extra-charsets=complex --enable-thread-safe-client \
          --enable-local-infile  --with-pthread \
          --with-named-thread-libs=-ldce --with-lib-ccflags=-fPIC
          --disable-shared
 
Info Catalog (mysql.info.gz) Other Unix Notes (mysql.info.gz) Other Unix Notes (mysql.info.gz) HP-UX 11
automatically generated byinfo2html