Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
66bef419
Commit
66bef419
authored
9 years ago
by
Roman Tsisyk
Browse files
Options
Downloads
Patches
Plain Diff
arm: Fix ENABLE_BACKTRACE on non-x86 platforms
parent
f95017b7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+1
-3
1 addition, 3 deletions
CMakeLists.txt
with
1 addition
and
3 deletions
CMakeLists.txt
+
1
−
3
View file @
66bef419
...
...
@@ -219,10 +219,8 @@ addresses are printed." ${CMAKE_COMPILER_IS_GNUCC})
set
(
HAVE_BFD False
)
if
(
ENABLE_BACKTRACE
)
if
(
NOT
${
CMAKE_COMPILER_IS_GNUCC
}
OR
NOT
(
${
CMAKE_SYSTEM_PROCESSOR
}
MATCHES
"86|amd64"
))
if
(
NOT
${
CMAKE_COMPILER_IS_GNUCC
}
)
# We only know this option to work with gcc
# on x86 architecture.
message
(
FATAL_ERROR
"ENABLE_BACKTRACE option is set but the system is not x86 based (
${
CMAKE_SYSTEM_PROCESSOR
}
) or the compiler is not GNU GCC (
${
CMAKE_C_COMPILER
}
)."
)
endif
()
# Use GNU bfd if present.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment