Skip to content

Commit

Permalink
JBR-5279 restore saving jbr native symbols bin/server/jvm.pdb
Browse files Browse the repository at this point in the history
(cherry picked from commit 887b9db)
  • Loading branch information
avu authored and NikitkoCent committed Dec 10, 2024
1 parent a3e3b61 commit 7f5a678
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion jb/project/tools/windows/scripts/mkimages_aarch64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ function create_image_bundle {
sed 's/JBR/JBRSDK/g' $__root_dir/release > release
mv release $__root_dir/release
cp $IMAGES_DIR/jdk/lib/src.zip $__root_dir/lib
cp $IMAGES_DIR/jdk/bin/*.pdb $__root_dir/bin
for dir in $(ls -d $IMAGES_DIR/jdk/*); do
rsync -amv --include="*/" --include="*.pdb" --exclude="*" $dir $__root_dir
done
copy_jmods "$__modules" "$__modules_path" "$__root_dir"/jmods
fi
}
Expand Down
4 changes: 3 additions & 1 deletion jb/project/tools/windows/scripts/mkimages_x64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ function create_image_bundle {
sed 's/JBR/JBRSDK/g' $__root_dir/release > release
mv release $__root_dir/release
cp $IMAGES_DIR/jdk/lib/src.zip $__root_dir/lib
cp $IMAGES_DIR/jdk/bin/*.pdb $__root_dir/bin
for dir in $(ls -d $IMAGES_DIR/jdk/*); do
rsync -amv --include="*/" --include="*.pdb" --exclude="*" $dir $__root_dir
done
copy_jmods "$__modules" "$__modules_path" "$__root_dir"/jmods
fi
}
Expand Down
4 changes: 3 additions & 1 deletion jb/project/tools/windows/scripts/mkimages_x86.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ function create_image_bundle {
sed 's/JBR/JBRSDK/g' $__root_dir/release > release
mv release $__root_dir/release
cp $IMAGES_DIR/jdk/lib/src.zip $__root_dir/lib
cp $IMAGES_DIR/jdk/bin/*.pdb $__root_dir/bin
for dir in $(ls -d $IMAGES_DIR/jdk/*); do
rsync -amv --include="*/" --include="*.pdb" --exclude="*" $dir $__root_dir
done
copy_jmods "$__modules" "$__modules_path" "$__root_dir"/jmods
fi
}
Expand Down

0 comments on commit 7f5a678

Please sign in to comment.