summaryrefslogtreecommitdiff
path: root/sql/main.cc
Commit message (Collapse)AuthorAgeFilesLines
* Windows - Fix CMAKE_INTERPROCEDURAL_OPTIMIZATION build with MSVCVladislav Vaintroub2021-05-091-0/+10
| | | | | | | | | If IPO is enabled, MSVC compiles with /GL which is not compatible with cmake's WINDOWS_EXPORT_ALL_SYMBOLS. Since server.dll can't autoexport symbols from /GL compiled objects, IPO must be disabled for dbug, string,mysys, and sql targets (in case we build "plugin" DLLs that need server.dll's symbols)
* Update FSF AddressVicențiu Ciorbaru2019-05-111-1/+1
| | | | * Update wrong zip-code
* Updated/added copyright headersKent Boortz2011-06-301-2/+3
|
* Introduce a workaround for Solaris' inability to deal with dtrace in static ↵Vladislav Vaintroub2009-12-111-0/+25
libraries. Rerun dtrace -G on all objects that can contan dtrace probes (also objects that are part of static libs) before linking mysqld to produce dtrace_probes_all.o and link dtrace_probes_all.o with mysqld This ugly workaround was inspired by handling dtrace using autotools.