Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
steam-runtime-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
steamrt
steam-runtime-tools
Commits
1d27ed35
Commit
1d27ed35
authored
7 years ago
by
Vivek Das Mohapatra
Browse files
Options
Downloads
Patches
Plain Diff
Tidy up the intermediate file use in the sub library code generator
parent
59c2a085
No related branches found
No related tags found
1 merge request
!311
Build capsule-capture-libs from a bundled copy of libcapsule
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
generate-stublib.sh
+23
-17
23 additions, 17 deletions
generate-stublib.sh
with
23 additions
and
17 deletions
generate-stublib.sh
+
23
−
17
View file @
1d27ed35
...
@@ -34,23 +34,26 @@ echo -n > $proxy_src.map;
...
@@ -34,23 +34,26 @@ echo -n > $proxy_src.map;
exec
>
&
$proxy_src
;
exec
>
&
$proxy_src
;
cat
$top
/capsule-shim.h
;
cat
$top
/capsule-shim.h
;
for
proxied_target
in
$proxied_dso
$(
cat
$proxy_extra
)
;
for
pt
in
$proxied_dso
$(
cat
$proxy_extra
)
;
do
do
while
read
symbol version dependency
;
$top
/print-libstubs
$pt
;
do
done
>
$proxy_src
.symbols
;
case
$version
in
@
*
)
while
read
symbol version dependency
;
echo
"VERSIONED_STUB (
$symbol
,
$version
);"
;
do
node
=
${
version
##*@
}
;
case
$version
in
NODE[
$node
]=
${
NODE
[
$node
]
:-}
" "
$symbol
;
@
*
)
;;
echo
"VERSIONED_STUB (
$symbol
,
$version
);"
;
*
)
node
=
${
version
##*@
}
;
echo
"UNVERSIONED_STUB(
$symbol
);"
;
NODE[
$node
]=
${
NODE
[
$node
]
:-}
" "
$symbol
;
;;
;;
esac
;
*
)
echo
" {
\"
$symbol
\"
},"
>>
$proxy_src
.symbols
echo
"UNVERSIONED_STUB(
$symbol
);"
;
done
< <
(
$top
/print-libstubs
$proxied_target
)
;
;;
done
;
esac
;
done
<
$proxy_src
.symbols
;
cat
-
<<
EOF
cat
-
<<
EOF
static Lmid_t symbol_ns;
static Lmid_t symbol_ns;
static char *prefix;
static char *prefix;
...
@@ -63,6 +66,7 @@ static const char *exclude[] = { // MUST NOT be pulled from the capsule prefixed
...
@@ -63,6 +66,7 @@ static const char *exclude[] = { // MUST NOT be pulled from the capsule prefixed
"libpthread-2.19.so",
"libpthread-2.19.so",
"libdl.so.2",
"libdl.so.2",
EOF
EOF
while
read
excluded x
;
while
read
excluded x
;
do
do
case
$excluded
in
lib
*
)
printf
"%32s
\"
%s
\"
,
\n
"
""
$excluded
;
;;
esac
;
case
$excluded
in
lib
*
)
printf
"%32s
\"
%s
\"
,
\n
"
""
$excluded
;
;;
esac
;
...
@@ -84,7 +88,9 @@ static void __attribute__ ((constructor)) _capsule_init (void)
...
@@ -84,7 +88,9 @@ static void __attribute__ ((constructor)) _capsule_init (void)
capsule_item_t relocs[] =
capsule_item_t relocs[] =
{
{
EOF
EOF
cat
$proxy_src
.symbols
;
while
read
sym x
;
do
echo
" {
\"
$sym
\"
},"
;
done
<
$proxy_src
.symbols
;
cat
-
<<
EOF
cat
-
<<
EOF
{ NULL }
{ NULL }
};
};
...
...
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