Clarify build output
This commit is contained in:
parent
5efca7848b
commit
1eea07dfd1
1 changed files with 9 additions and 2 deletions
11
README.md
11
README.md
|
@ -30,14 +30,21 @@ To compile on a standard GNU/Linux system:
|
||||||
`LDFLAGS=-ldl make -j $(nproc)`
|
`LDFLAGS=-ldl make -j $(nproc)`
|
||||||
|
|
||||||
On BSD you should probably use GNU make right now. The Makefiles are simple enough however.
|
On BSD you should probably use GNU make right now. The Makefiles are simple enough however.
|
||||||
Clang should also be supported, pass CC=clang and CXX=clang++ if you want to use it.
|
Clang should also be supported, pass `CC=clang and CXX=clang++` if you want to use it.
|
||||||
|
|
||||||
On NT you'll probably have a build command-line likes this:
|
On NT you'll probably have a build command-line likes this:
|
||||||
`CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ PKG_CONFIG_PATH=/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig make -j 4`
|
`CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ PKG_CONFIG_PATH=/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig make -j 4`
|
||||||
Not all works yet, but stay tuned.
|
Not all works yet, but stay tuned.
|
||||||
|
|
||||||
|
It'll compile everything into a subdirectory 'build'. At the end it'll copy files from ./resources into it too.
|
||||||
|
|
||||||
|
In the Nuclide SDK, build_engine.sh will call make with the appropriate flags for Linux/BSD automatically and
|
||||||
|
move it into Nuclide's ./bin directory.
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
* gcc-c++
|
* GNU make
|
||||||
|
* gcc-core
|
||||||
|
* gcc-c++ (or clang++)
|
||||||
* gtk2-devel
|
* gtk2-devel
|
||||||
* gtkglext-devel
|
* gtkglext-devel
|
||||||
* libxml2-devel
|
* libxml2-devel
|
||||||
|
|
Loading…
Reference in a new issue