Skip to content
Snippets Groups Projects
Commit 1d27ed35 authored by Vivek Das Mohapatra's avatar Vivek Das Mohapatra
Browse files

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!311Build capsule-capture-libs from a bundled copy of libcapsule
...@@ -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 }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment