Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libehp
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
Container Registry
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
Open Source Software
libehp
Compare revisions
45a8a215b746ac7b189e4c6ccbab669635abcf67 to 5e41e26b88d415f3c7d3eb47f9f0d781cc519459
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
opensrc/libehp
Select target project
No results found
5e41e26b88d415f3c7d3eb47f9f0d781cc519459
Select Git revision
Swap
Target
opensrc/libehp
Select target project
opensrc/libehp
1 result
45a8a215b746ac7b189e4c6ccbab669635abcf67
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Ubuntu22 support
· a2dade56
Jason Hiser
authored
2 years ago
and
Jason Hiser
committed
2 years ago
a2dade56
Merge branch 'ubuntu22-support' into 'master'
· 5e41e26b
Jason Hiser
authored
2 years ago
Ubuntu22 support See merge request
!14
5e41e26b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+21
-10
21 additions, 10 deletions
.gitlab-ci.yml
src/ehp.cpp
+2
-2
2 additions, 2 deletions
src/ehp.cpp
with
23 additions
and
12 deletions
.gitlab-ci.yml
View file @
5e41e26b
...
...
@@ -17,6 +17,13 @@ stages:
#
# Cleaning
#
do-clean-ubuntu22
:
stage
:
clean
script
:
-
./cicd_testing/do-clean.sh
tags
:
-
ubuntu22
do-clean-ubuntu20
:
stage
:
clean
script
:
...
...
@@ -62,6 +69,13 @@ do-clean-centos76:
#
# Building
#
do-build-ubuntu22
:
stage
:
build
script
:
-
./cicd_testing/do-build.sh
tags
:
-
ubuntu22
do-build-ubuntu20
:
stage
:
build
script
:
...
...
@@ -108,6 +122,13 @@ do-build-centos76:
#
# Testing
#
do-test-ubuntu22
:
stage
:
test
script
:
-
./cicd_testing/do-test.sh
tags
:
-
ubuntu22
do-test-ubuntu20
:
stage
:
test
script
:
...
...
@@ -152,16 +173,6 @@ do-test-centos76:
-
centos76
#
# Turbo Fuzzing
#
#do-fuzz-ubuntu18:
#stage: fuzz
#script:
# - ./cicd_testing/do-fuzz.sh
#tags:
#- libehpfuzzpod
#
# Deploy
#
...
...
This diff is collapsed.
Click to expand it.
src/ehp.cpp
View file @
5e41e26b
...
...
@@ -1668,9 +1668,9 @@ bool lsda_t<ptrsize>::parse_lsda(
if
(
type_table_encoding
!=
DW_EH_PE_omit
)
{
for
(
const
auto
cs_tab_entry
:
call_site_table
)
for
(
const
auto
&
cs_tab_entry
:
call_site_table
)
{
for
(
const
auto
act_tab_entry
:
cs_tab_entry
.
getActionTableInternal
())
for
(
const
auto
&
act_tab_entry
:
cs_tab_entry
.
getActionTableInternal
())
{
const
auto
type_filter
=
act_tab_entry
.
getAction
();
const
auto
parse_and_insert_tt_entry
=
[
&
]
(
const
uint64_t
index
)
->
bool
...
...
This diff is collapsed.
Click to expand it.