docs: Remove the outdated 32bit note in linux build instructions.
This commit is contained in:
parent
866e20b4be
commit
a76ae8cd35
1 changed files with 9 additions and 8 deletions
|
@ -3,7 +3,7 @@
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
* [Node.js](http://nodejs.org)
|
* [Node.js](http://nodejs.org)
|
||||||
* clang and headers of GTK+ and libnotify
|
* clang, development headers of GTK+ and libnotify
|
||||||
|
|
||||||
On Ubuntu you could install the libraries via:
|
On Ubuntu you could install the libraries via:
|
||||||
|
|
||||||
|
@ -56,13 +56,10 @@ $ ./script/build.py -c Debug
|
||||||
|
|
||||||
After building is done, you can find `atom` under `out/Debug`.
|
After building is done, you can find `atom` under `out/Debug`.
|
||||||
|
|
||||||
## 32bit support
|
|
||||||
|
|
||||||
Currently atom-shell can only be built for 64bit target, support for 32bit would
|
|
||||||
come in future, patches would also be welcomed.
|
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|
||||||
|
### fatal error: bits/predefs.h: No such file or directory
|
||||||
|
|
||||||
If you got an error like this:
|
If you got an error like this:
|
||||||
|
|
||||||
````
|
````
|
||||||
|
@ -80,16 +77,20 @@ this:
|
||||||
$ sudo apt-get install gcc-multilib g++-multilib
|
$ sudo apt-get install gcc-multilib g++-multilib
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### error adding symbols: DSO missing from command line
|
||||||
|
|
||||||
If you got an error like this:
|
If you got an error like this:
|
||||||
|
|
||||||
````
|
````
|
||||||
/usr/bin/ld: vendor/download/libchromiumcontent/Release/libchromiumcontent.so: undefined reference to symbol 'gconf_client_get'
|
/usr/bin/ld: vendor/download/libchromiumcontent/Release/libchromiumcontent.so: undefined reference to symbol 'gconf_client_get'
|
||||||
//usr/lib/x86_64-linux-gnu/libgconf-2.so.4: error adding symbols: DSO missing from command line
|
//usr/lib/x86_64-linux-gnu/libgconf-2.so.4: error adding symbols: DSO missing from command line
|
||||||
````
|
````
|
||||||
libchromiumcontent.so is build with clang 3.0 which is incompatible with newer versions of clang. Try using clang 3.0, default version in Ubuntu 12.04.
|
|
||||||
|
libchromiumcontent.so is build with clang 3.0 which is incompatible with newer
|
||||||
|
versions of clang. Try using clang 3.0, default version in Ubuntu 12.04.
|
||||||
|
|
||||||
## Tests
|
## Tests
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ ./script/test.py
|
$ ./script/test.py
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue