• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: July 5th, 2023

help-circle

  • It’s quite a bad UX, but generally error 2 from make means the called program resulted into an error.

    Usually this is accompanied with another error somewhere up the log. Multiple cores can make this a challenge to scan the log for however, so maybe try compiling without the -j argument, that should get the actual error closer to the end.

    From my experience, it’s usually an outdated config for the kernel (like using a config for 5.1 while compiling 6.7) or a missing dependency. However the real error will be somewhere among the logs, who knows, maybe it’s a missing processor instruction (it’s really bad UX).







  • Willem@kutsuya.devtoMemes@lemmy.mlDating tip
    link
    fedilink
    arrow-up
    5
    ·
    1 year ago

    It used to work at least here in the Netherlands, when you send a sms to a landline, the phone company has a tts service that reads texts like: “incoming text from zero six one… (etc) with the following text: ok boomer” and repeating that twice.

    Used to be a really mechanical voice, but I’ve not had a landline in at least ten years.







  • For unit tests I usually have a test/ folder next to my src/ folder, that duplicates the folder structure. My brain prefers things being seperate from eachother (resources, source code per language, tests) and this is afaik the only way that you can keep it consistent between different languages (C# for example needs a seperate unit test project)