Merge pull request #2725 from makise-homura/mcst-lcc-support
Add support for MCST LCC compiler
This commit is contained in:
@@ -150,8 +150,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* vectorization
|
/* vectorization
|
||||||
* older GCC (pre gcc-4.3 picked as the cutoff) uses a different syntax */
|
* older GCC (pre gcc-4.3 picked as the cutoff) uses a different syntax,
|
||||||
#if !defined(__INTEL_COMPILER) && !defined(__clang__) && defined(__GNUC__)
|
* and some compilers, like Intel ICC and MCST LCC, do not support it at all. */
|
||||||
|
#if !defined(__INTEL_COMPILER) && !defined(__clang__) && defined(__GNUC__) && !defined(__LCC__)
|
||||||
# if (__GNUC__ == 4 && __GNUC_MINOR__ > 3) || (__GNUC__ >= 5)
|
# if (__GNUC__ == 4 && __GNUC_MINOR__ > 3) || (__GNUC__ >= 5)
|
||||||
# define DONT_VECTORIZE __attribute__((optimize("no-tree-vectorize")))
|
# define DONT_VECTORIZE __attribute__((optimize("no-tree-vectorize")))
|
||||||
# else
|
# else
|
||||||
|
|||||||
+1
-1
@@ -741,7 +741,7 @@ typedef enum { zom_compress, zom_decompress, zom_test, zom_bench, zom_train, zom
|
|||||||
# define MAXCLEVEL ZSTD_maxCLevel()
|
# define MAXCLEVEL ZSTD_maxCLevel()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main(int const argCount, const char* argv[])
|
int main(int argCount, const char* argv[])
|
||||||
{
|
{
|
||||||
int argNb,
|
int argNb,
|
||||||
followLinks = 0,
|
followLinks = 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user