ogl_beamforming

Ultrasound Beamforming Implemented with OpenGL
git clone anongit@rnpnr.xyz:ogl_beamforming.git
Log | Files | Refs | Feed | Submodules | README | LICENSE

README.md (494B)


      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 
     11 Then simply run the build tool:
     12 ```sh
     13 ./build
     14 ```
     15 
     16 ## Debug Builds
     17 Simply pass the build tool the `--debug` flag to get a build
     18 suitable for development/debugging:
     19 ```
     20 ./build --debug
     21 ```
     22 
     23 ### w32
     24 Currently the program is not expected to be buildable with `msvc`.
     25 In order to use Windows debuggers on Windows you will need to
     26 build with `clang`.