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
6ab16aa01aedc4a4d733639f33c2882ad67a87da to 66dc48d9324fa2634848aa3eff78880339b94401
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
66dc48d9324fa2634848aa3eff78880339b94401
Select Git revision
Swap
Target
opensrc/libehp
Select target project
opensrc/libehp
1 result
6ab16aa01aedc4a4d733639f33c2882ad67a87da
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (4)
ubutnu24 updates
· 559c0d71
Jason Hiser
authored
1 month ago
559c0d71
fix ci for ubuntu 24
· b8dd5603
Jason Hiser
authored
1 month ago
b8dd5603
fix ci for ubuntu 24
· 42a64aca
Jason Hiser
authored
1 month ago
42a64aca
Merge branch 'ubuntu24'
· 66dc48d9
Jason Hiser
authored
1 month ago
66dc48d9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+4
-1
4 additions, 1 deletion
.gitlab-ci.yml
src/SConscript
+1
-1
1 addition, 1 deletion
src/SConscript
test/SConscript
+1
-1
1 addition, 1 deletion
test/SConscript
with
6 additions
and
3 deletions
.gitlab-ci.yml
View file @
66dc48d9
...
...
@@ -24,7 +24,10 @@ ubuntu22:
tags
:
-
ubuntu22
ubuntu24
:
<<
:
*do-test
tags
:
-
ubuntu24
arm32
:
<<
:
*do-test
...
...
This diff is collapsed.
Click to expand it.
src/SConscript
View file @
66dc48d9
...
...
@@ -38,7 +38,7 @@ LIBPATH="$SECURITY_TRANSFORMS_HOME/lib"
LIBS
=
Split
(
""
)
myenv
=
myenv
.
Clone
(
CPPPATH
=
Split
(
cpppath
))
myenv
.
Append
(
CXXFLAGS
=
"
-std=c++1
4
-Wall -Werror -fmax-errors=2 -fPIC
"
)
myenv
.
Append
(
CXXFLAGS
=
"
-std=c++1
7
-Wall -Werror -fmax-errors=2 -fPIC
"
)
lib1
=
myenv
.
Library
(
"
ehp
"
,
Split
(
files
),
LIBPATH
=
LIBPATH
,
LIBS
=
LIBS
)
install1
=
myenv
.
Install
(
"
../lib/
"
,
lib1
)
...
...
This diff is collapsed.
Click to expand it.
test/SConscript
View file @
66dc48d9
...
...
@@ -34,7 +34,7 @@ LIBS='''
ehp
'''
myenv
=
myenv
.
Clone
(
CPPPATH
=
Split
(
cpppath
))
myenv
.
Append
(
CXXFLAGS
=
"
-std=c++1
4
-Wall -Werror -fmax-errors=1 -g
"
)
myenv
.
Append
(
CXXFLAGS
=
"
-std=c++1
7
-Wall -Werror -fmax-errors=1 -g
"
)
lib
=
myenv
.
Program
(
"
test.exe
"
,
Split
(
files
),
LIBPATH
=
Split
(
LIBPATH
),
LIBS
=
Split
(
LIBS
))
Default
(
lib
)
...
...
This diff is collapsed.
Click to expand it.