Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
emper
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
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Schmaus
emper
Commits
b14b99d8
Commit
b14b99d8
authored
3 years ago
by
Florian Schmaus
Browse files
Options
Downloads
Patches
Plain Diff
Intermediate Commit (2022-02-04 19:24)
parent
3b6bcd65
No related branches found
Tags
Tags containing commit
No related merge requests found
Pipeline
#77101
failed
3 years ago
Stage: smoke-test
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
emper/Emper.hpp
+1
-1
1 addition, 1 deletion
emper/Emper.hpp
meson.build
+3
-1
3 additions, 1 deletion
meson.build
with
4 additions
and
2 deletions
emper/Emper.hpp
+
1
−
1
View file @
b14b99d8
...
...
@@ -264,7 +264,7 @@ static const enum ContinuationStealingMadviseStack CONTINUATION_STEALING_MADVISE
ContinuationStealingMadviseStack
::
EMPER_CONTINUATION_STEALING_MADVISE_STACK
;
static
const
bool
BUILD_WITH_CLANG
=
#ifdef
__clang__
#ifdef
EMPER_BUILD_WITH_CLANG
true
#else
false
...
...
This diff is collapsed.
Click to expand it.
meson.build
+
3
−
1
View file @
b14b99d8
...
...
@@ -46,9 +46,11 @@ cpp_compiler = meson.get_compiler('cpp')
if
cpp_compiler
.
has_header
(
'compare'
)
conf_data
.
set
(
'EMPER_HAS_COMPARE_H'
,
true
)
endif
if
cpp_compiler
.
get_id
()
==
'clang'
cpp_is_clang
=
cpp_compiler
.
get_id
()
==
'clang'
if
cpp_is_clang
# Clang does not know "__attribute__((optimize(-no-omit-frame-pointer)))".
add_project_arguments
(
'-Wno-unknown-attributes'
,
language
:
'cpp'
)
conf_data
.
set
(
'EMPER_BUILD_WITH_CLANG'
)
endif
continuation_stealing_mode
=
get_option
(
'continuation_stealing_mode'
)
...
...
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