Getting an error when attempting to compile via Windows/powershell.
ERROR: ARM compiler not found at: C:\dagshell\orbic_fw_c..\gcc_win\arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-linux-gnueabihf\bin\arm-none-linux-gnueabihf-gcc.exe
I was able to resolve this by downloading the arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-linux-gnueabih package directly and adding the arm-none-linux-gnueabihf-gcc.exe file. Will need included.
In build.ps1, line 13 - needs changed to add:
nettools.c
"& $gccPath main.c gps.c wifi.c wigle.c clients.c nettools.c -o orbic_app -I. -L. -lbearssl -static"
Without this, you get a compile error that nettools throws.
After both of these fixes, I was able to compile and install correctly.
Getting an error when attempting to compile via Windows/powershell.
ERROR: ARM compiler not found at: C:\dagshell\orbic_fw_c..\gcc_win\arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-linux-gnueabihf\bin\arm-none-linux-gnueabihf-gcc.exe
I was able to resolve this by downloading the arm-gnu-toolchain-13.2.Rel1-mingw-w64-i686-arm-none-linux-gnueabih package directly and adding the arm-none-linux-gnueabihf-gcc.exe file. Will need included.
In build.ps1, line 13 - needs changed to add:
nettools.c
"& $gccPath main.c gps.c wifi.c wigle.c clients.c nettools.c -o orbic_app -I. -L. -lbearssl -static"
Without this, you get a compile error that nettools throws.
After both of these fixes, I was able to compile and install correctly.