fasterthanlime / feedback

An issue tracker for articles/series/videos at https://fasterthanli.me/
13 stars 0 forks source link

What's in a Linux executable? #274

Closed noamraph closed 6 months ago

noamraph commented 11 months ago

I found something wrong on this page:

https://fasterthanli.me/series/making-our-own-executable-packer/part-1#position=24.8

Here's what it is:

I got a bit confused by:

$ cargo new --bin elk
$ cargo add --path ../delf
      Adding delf (unknown version) to dependencies

I suggest to add cds. Perhaps:

$ cd ..   # Go back to the parent of the `delf` directory
$ cargo new --bin elk
$ cd elk
$ cargo add --path ../delf
      Adding delf (unknown version) to dependencies

Thanks, I'm enjoying the guide a lot! Noam

fasterthanlime commented 6 months ago

I just added that missing cd, thanks for the report!