Go to the first, previous, next, last section, table of contents.


General compilation notes

All MySQL programs compile clean (no warnings) for us (on Solaris using gcc). But warning may appear because of different system include files. Se below for warnings that may occur when using mit-pthreads.

You probably have to use bison to compile sql_yacc.yy. If you get an error like:

"sql_yacc.yy", line xxx fatal: default action causes potential... 

you have to install bison (the GNU yacc). Normally you don't have to do this as MySQL comes with a already compiled sql_yacc.cc file.

If you want to have static linked code, use (with gcc): LDFLAGS="-static" ./configure ...


Go to the first, previous, next, last section, table of contents.