diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-05-11 09:31:53 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-05-11 09:31:53 +0200 |
commit | 407cdea0bc3a3d2a258b30a3e19d0861c3c4ba6f (patch) | |
tree | 3357646554ceaea85b4ad60d7e1fddb9ccd3deef /CodingReadme | |
parent | b8b39472bb1b991ab96dede1b188868d9d98246b (diff) | |
download | yosys-407cdea0bc3a3d2a258b30a3e19d0861c3c4ba6f.tar.gz yosys-407cdea0bc3a3d2a258b30a3e19d0861c3c4ba6f.tar.bz2 yosys-407cdea0bc3a3d2a258b30a3e19d0861c3c4ba6f.zip |
Updated min GCC requirement to GCC 4.8
Diffstat (limited to 'CodingReadme')
-rw-r--r-- | CodingReadme | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CodingReadme b/CodingReadme index ba184be58..cbe1fb8be 100644 --- a/CodingReadme +++ b/CodingReadme @@ -239,7 +239,7 @@ C++ Language ------------- Yosys is written in C++11. At the moment only constructs supported by -gcc 4.6 are allowed in Yosys code. This will change in future releases. +gcc 4.8 are allowed in Yosys code. This will change in future releases. In general Yosys uses "int" instead of "size_t". To avoid compiler warnings for implicit type casts, always use "GetSize(foobar)" instead @@ -368,7 +368,7 @@ And if a version of the verific library is currently available: ../../yosys test_navre.ys -Finally run all tests with "make config-{clang,gcc,gcc-4.6}": +Finally run all tests with "make config-{clang,gcc,gcc-4.8}": cd ~yosys make clean |