Skip to content

Commit

Permalink
Merge pull request #1 from harrychin/harrychin-patch-1
Browse files Browse the repository at this point in the history
Make link-wrap.sh Linux/macOS cross-platform
  • Loading branch information
harrychin authored Oct 10, 2024
2 parents bc52315 + 30022aa commit 7c670ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger_device_sdk/link_wrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ llvm-objcopy --dump-section .rel.nvm_data=$OUT-nvm-reloc $OUT /dev/null || true
cat $OUT-rodata-reloc $OUT-nvm-reloc $OUT-data-reloc > $OUT-relocs || true

reloc_allocated_size="$((0x$(llvm-nm $OUT | grep _reloc_size | cut -d' ' -f1)))"
reloc_real_size="$(stat -c %s $OUT-relocs)"
reloc_real_size="$(wc -c < "$OUT-relocs")"
# Check that our relocations _actually_ fit.
if [ "$reloc_real_size" -gt "$reloc_allocated_size" ]
then
Expand Down

0 comments on commit 7c670ca

Please sign in to comment.