Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
magicseteditor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
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
MyCard
magicseteditor
Commits
b1ccf17c
Commit
b1ccf17c
authored
Nov 25, 2009
by
coppro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix debugging typo
parent
f9cd790b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
configure.ac
configure.ac
+8
-4
No files found.
configure.ac
View file @
b1ccf17c
...
@@ -21,11 +21,11 @@ AC_PROG_CXX
...
@@ -21,11 +21,11 @@ AC_PROG_CXX
AC_ARG_ENABLE(debug, [--enable-debug Enable debug build (requires debug
AC_ARG_ENABLE(debug, [--enable-debug Enable debug build (requires debug
versions of wxWidgets and libstdc++.], [DEBUG=1])
versions of wxWidgets and libstdc++.], [DEBUG=1])
if test "x${DEBUG}" = x1; then
if test "x${DEBUG}" = x1; then
DEFAULT_CXXFLAGS="-ggdb
3
-O0 -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC"
DEFAULT_CXXFLAGS="-ggdb -O0 -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC"
WXCONFIG_FLAGS="--debug"
WXCONFIG_FLAGS="--debug
--unicode=no
"
else
else
DEFAULT_CXXFLAGS="-O2"
DEFAULT_CXXFLAGS="-O2"
WXCONFIG_FLAGS=""
WXCONFIG_FLAGS="
--unicode=no
"
fi
fi
if test X$user_set_cxxflags != Xyes; then
if test X$user_set_cxxflags != Xyes; then
CXXFLAGS=${DEFAULT_CXXFLAGS}
CXXFLAGS=${DEFAULT_CXXFLAGS}
...
@@ -56,9 +56,13 @@ if test "${HAVE_WX}" != 1; then
...
@@ -56,9 +56,13 @@ if test "${HAVE_WX}" != 1; then
])
])
fi
fi
AC_ARG_ENABLE(pch, [--enable-pch Enable precompiled headers (Requires
GCC of sufficiently high version). Speeds up compile times
significantly... if it works.], [PCH=1], [PCH=1])
# Check for precompiled headers
# Check for precompiled headers
# TODO: Deal with braindead GCC and actually check
# TODO: Deal with braindead GCC and actually check
AM_CONDITIONAL(GLIBCPP_BUILD_PCH, test "x$CXX" = "xg++")
AM_CONDITIONAL(GLIBCPP_BUILD_PCH, test "x$
PCH" = "x1" -a "x$
CXX" = "xg++")
# Checks for header files.
# Checks for header files.
...
...
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