Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.1839 05/05/17 20:26:59 msvensson@neptunus.(none) +1 -0
Build fixes
configure.in
1.312 05/05/17 17:26:19 msvensson@neptunus.(none) +8 -0
When GCC is used, turn off exceptions, rtti and implicit templates
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: neptunus.(none)
# Root: /home/msvensson/mysql/mysql-5.0
--- 1.311/configure.in 2005-05-16 11:24:28 +02:00
+++ 1.312/configure.in 2005-05-17 17:26:19 +02:00
@@ -359,6 +359,14 @@
export CC CXX CFLAGS LD LDFLAGS AR
+if test "$GCC" = "yes"
+then
+ # mysqld requires -fno-implicit-templates.
+ # Disable exceptions as they seams to create problems with gcc and threads.
+ # mysqld doesn't use run-time-type-checking, so we disable it.
+ CXXFLAGS="$CXXFLAGS -fno-implicit-templates -fno-exceptions -fno-rtti"
+fi
+
# Avoid bug in fcntl on some versions of linux
AC_MSG_CHECKING("if we should use 'skip-locking' as default for $target_os")
# Any variation of Linux
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.1839) | msvensson | 17 May |