Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
3ca6d616
Commit
3ca6d616
authored
Feb 12, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- always use CXX=gcc (not only when using gcc 3) to avoid a dependency
on libstdc++ and exceptions
parent
629a0ed7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
support-files/mysql.spec.sh
support-files/mysql.spec.sh
+8
-3
No files found.
support-files/mysql.spec.sh
View file @
3ca6d616
...
...
@@ -258,10 +258,11 @@ export PATH
# Build the 4.0 Max binary (includes BDB and UDFs and therefore
# cannot be linked statically against the patched glibc)
#
If we want to compile with RAID using gcc 3, we need to use
#
gcc instead of g++ to avoid linking problems (RAID code is written in C++)
test
-z
$CXX
&&
test
-z
$CC
&&
if
gcc
-v
2>&1 |
grep
'gcc version 3'
>
/dev/null 2>&1
#
Use gcc for C and C++ code (to avoid a dependency on libstdc++ and
#
including exceptions into the code
test
-z
$CXX
&&
test
-z
$CC
then
export
CC
=
"gcc"
export
CXX
=
"gcc"
fi
...
...
@@ -573,6 +574,10 @@ fi
# The spec file changelog only includes changes made to the spec file
# itself
%changelog
*
Thu Feb 12 2004 Lenz Grimmer <lenz@mysql.com>
- when using gcc, _always_ use
CXX
=
gcc
*
Tue Feb 03 2004 Lenz Grimmer <lenz@mysql.com>
- added myisam_ftdump to the Server package
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment