diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-07-02 21:04:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-07-03 16:34:21 +0200 |
commit | 33ea6a40fa3987eb13ae719c4b229b5df7732e2f (patch) | |
tree | 9631dfb851c1e0dc111d487314b36d7e9933987d | |
parent | 20c32c5363f53fd009ed31e0c4b3ef4222b9fda7 (diff) | |
download | ghdl-33ea6a40fa3987eb13ae719c4b229b5df7732e2f.tar.gz ghdl-33ea6a40fa3987eb13ae719c4b229b5df7732e2f.tar.bz2 ghdl-33ea6a40fa3987eb13ae719c4b229b5df7732e2f.zip |
BUILD.txt: add more --disable options to the gcc build.
-rw-r--r-- | BUILD.txt | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -72,10 +72,13 @@ $ ../mpc-0.8.1/configure --prefix=/usr/local --disable-shared \ --with-gmp=/usr/local $ make; make install -Then configure gcc: +Then configure gcc. The list of --disable configure options could be +adjusted for your needs. GHDL don't require all these optional +libraries and disabling them speed-up the build. $ mkdir gcc-objs; cd gcc-objs $ ../gcc-4.9.3/configure --prefix=/usr/local --enable-languages=c,vhdl \ - --disable-bootstrap --with-gmp=/usr/local --disable-lto --disable-multilib + --disable-bootstrap --with-gmp=/usr/local --disable-lto --disable-multilib \ + --disable-libssp --disable-libgomp --disable-libquadmath $ make -j2 Finally install: |