Skip to content

Commit f53ea58

Browse files
committed
Updated README.md with RPi support and library build. Fixes #33
1 parent 497e75a commit f53ea58

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

README.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,28 @@
117117
## Building libwebockets
118118
### OS X
119119
* Clone libwebsockets
120-
``` Cd /path/to/libwebsockets
121-
mkdir build
122-
cd build
123-
cmake "-DCMAKE_OSX_ARCHITECTURES=x86_64;i386" ..
124-
make
125-
cmake -DCMAKE_INSTALL_PREFIX:PATH=./install . && make install```
126-
120+
```
121+
cd /path/to/libwebsockets
122+
mkdir build
123+
cd build
124+
cmake "-DCMAKE_OSX_ARCHITECTURES=x86_64;i386" ..
125+
make
126+
cmake -DCMAKE_INSTALL_PREFIX:PATH=./install . && make install
127+
```
128+
### Raspberry Pi
129+
* Clone libwebsockets
130+
```
131+
cd /path/to/libwebsockets
132+
mkdir build
133+
cd build
134+
cmake .. -DLWS_IPV6=OFF
135+
make
136+
```
127137

128138
#STATUS
129-
* Version 0.8.1 (current)
139+
* Version 0.8.4 (current)
140+
* Added PRi libraries
141+
* Version 0.8.1
130142
* Overhauled all messaging, supporting senging/receiving string and binary messages of indefinite size via continuation frames
131143
* Added examples from @zebradog of sending Blob data over websockets: way faster, way cleaner!
132144
* Lots of cleanup of excessive logging, possible crashes on sending

0 commit comments

Comments
 (0)