Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zipr_push64_reloc_plugin
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Open Source Software
zipr_push64_reloc_plugin
Compare revisions
93ecc5f231f57bf0e835d36b614233833f92bc44 to 390478f4739c7b76e2b3a08e77e49293fa03b1b6
Project 'allnp/zipr_push64_reloc_plugin' was moved to 'opensrc/zipr_push64_reloc_plugin'. Please update any links and bookmarks that may still have the old path.
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
opensrc/zipr_push64_reloc_plugin
Select target project
No results found
390478f4739c7b76e2b3a08e77e49293fa03b1b6
Select Git revision
Swap
Target
opensrc/zipr_push64_reloc_plugin
Select target project
opensrc/zipr_push64_reloc_plugin
1 result
93ecc5f231f57bf0e835d36b614233833f92bc44
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
reworking scons file for pedi insanity
· 390478f4
Jason Hiser
authored
5 years ago
390478f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SConscript
+7
-12
7 additions, 12 deletions
SConscript
with
7 additions
and
12 deletions
SConscript
View file @
390478f4
...
...
@@ -54,16 +54,11 @@ myenv=myenv.Clone(CPPPATH=Split(cpppath), LIBS=Split(libs), LIBPATH=Split(libpat
lib
=
myenv
.
SharedLibrary
(
"
push64_relocs
"
,
Split
(
files
))
install
=
myenv
.
Install
(
"
$ZIPR_INSTALL/plugins/
"
,
lib
)
Default
(
install
)
pedi
=
Command
(
target
=
"
./testoutput
"
,
source
=
"
./SConscript
"
,
action
=
"
cd
"
+
os
.
environ
[
'
ZIPR_INSTALL
'
]
+
"
;
"
+
os
.
environ
[
'
PEDI_HOME
'
]
+
"
/pedi -m manifest.txt ; cd -
"
)
Depends
(
pedi
,
install
)
Default
(
pedi
)
ret
=
pedi
+
lib
ret
=
[
install
,
lib
]
pedi
=
Command
(
target
=
"
./push64-testoutput
"
,
source
=
install
,
action
=
"
echo push64; cd
"
+
os
.
environ
[
'
ZIPR_INSTALL
'
]
+
"
;
"
+
os
.
environ
[
'
PEDI_HOME
'
]
+
"
/pedi -m manifest.txt ; cd -
"
)
if
Dir
(
'
.
'
).
abspath
==
Dir
(
'
#.
'
).
abspath
:
ret
=
ret
+
pedi
Default
(
ret
)
Return
(
'
ret
'
)
This diff is collapsed.
Click to expand it.