Merge pull request #2741 from Donny-Guo/hidbrute
[RRG-proxmark3.git] / docker / homebrew / README.md
blob664db5de3b450f06200824b360c1813772820fec
1 # Notes on linux homebrew
3 If needed to install sth, run brew as user linuxbrew
5 Do not `brew install arm-none-eabi-gcc`, it's a Mach-O executable.
7 So only host bins can be built (except tools/hitag2crack/crack5opencl which needs OpenCL)
9 ## Makefile
11 ```sh
12 make -j client USE_BREW=1 SKIPREADLINE=1
13 make -j cryptorf
14 make -j mfc_card_only
15 make -j mfc_card_reader
16 make -j mfd_aes_brute
17 make -j hitag2crack SKIPOPENCL=1
18 make -j fpga_compress
19 ```
21 ## CMake
23 ```sh
24 cd client
25 mkdir build
26 cd build
27 cmake -DEMBED_BZIP2=1 -DEMBED_LZ4=1 ..
28 make -j
29 ```