C++ Headers not being found

So I’m trying to set up my DaisyExamples to be running for the sake of just having everything built even though I don’t have a Daisy Seed yet. I’m doing it so I can start learning and understanding how to using DaisySP and other related languages but I am unable to the tutorial to work the way it is intended to work. When I install everything I get the error
Source/Control/adenv.cpp:1:10: fatal error: algorithm: No such file or directory
1 | #include
This is super strange… no idea how it isn’t finding a standard cpp header even if it’s installed where all of my homebrew related things are. I guess maybe it wants me to change homebrew install directories in the makefiles?

You have provided very little information. You mention homebrew, so I know you are using a Mac.

I use one old Macbook Pro, and one new Macbook Air. And everything works as expected.

I’m guessing you’re doing something wrong. But without more details, I don’t expect anybody can troubleshoot this.

My apologies,
I’m running MacOs Sonoma 14.7, with a M1 chip.
The process I went through to try and set up everything was downloading and running the MacOS toolchain, and cloning the DaisyExamples repo to my desktop.
I then opened it in VScode (already installed) and try running task build all. This is the point at which I get this error

Source/Control/adenv.cpp:1:10: fatal error: algorithm: No such file or directory
1 | #include

if i try just running make on the blink example, I get this error

/opt/homebrew/Cellar/arm-none-eabi-gcc/14.2.0/lib/gcc/arm-none-eabi/14.2.0/include/stdint.h:9:16: fatal error: stdint.h: No such file or directory
9 | # include_next <stdint.h>

If i manually go through my folders, I can find this exact directory and see stdint.h

So i’m really not sure what to do

Have you seen this video:
https://www.google.com/search?client=firefox-b-1-d&q=setup+vscode+for+daisy#fpstate=ive&vld=cid:0367cd5a,vid:AbvaTdAyJWk,st:0

Yea, if I’m not missing anything the video is essentially just this tutorial, which is what I followed in the first place.