Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dav1d
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
David Smith
dav1d
Commits
bb160f09
Commit
bb160f09
authored
5 years ago
by
Henrik Gramner
Browse files
Options
Downloads
Patches
Plain Diff
build: Add a workaround for Xcode 11 -fstack-check bug
parent
fc54119c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
meson.build
+6
-0
6 additions, 0 deletions
meson.build
with
7 additions
and
0 deletions
NEWS
+
1
−
0
View file @
bb160f09
...
...
@@ -7,6 +7,7 @@ compared to 0.5.0:
- NEON optimizations for SGR on ARM32
- Fix mismatch issue in x86 asm in inverse identity transforms
- Fix build issue in ARM64 assembly if debug info was enabled
- Add a workaround for Xcode 11 -fstack-check bug
Changes for 0.5.0 'Asiatic Cheetah':
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
6
−
0
View file @
bb160f09
...
...
@@ -215,6 +215,12 @@ if (get_option('buildtype') != 'debug' and get_option('buildtype') != 'plain')
optional_arguments
+=
'-ffast-math'
endif
if
(
host_machine
.
system
()
==
'darwin'
and
cc
.
get_id
()
==
'clang'
and
cc
.
version
().
startswith
(
'11'
))
# Workaround for Xcode 11 -fstack-check bug, see #301
optional_arguments
+=
'-fno-stack-check'
endif
add_project_arguments
(
cc
.
get_supported_arguments
(
optional_arguments
),
language
:
'c'
)
# libFuzzer related things
...
...
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