README.md (540B)
1 # ogl beamforming 2 3 # Building 4 5 Bootstrap the build tool once and it will rebuild itself as 6 needed: 7 ```sh 8 cc -march=native -O3 build.c -o build 9 ``` 10 or: 11 ```bat 12 md out & cl -nologo -std:c11 -O2 -Fo:out\ build.c 13 ``` 14 15 Then run the build tool: 16 ```sh 17 ./build 18 ``` 19 20 ## Debug Builds 21 Pass the build tool the `--debug` flag to get a build suitable for 22 development/debugging: 23 ``` 24 ./build --debug 25 ``` 26 27 Debug builds enable dynamic reloading of almost the entire program 28 and you can make changes to most code and recompile without 29 exiting the application.