diff options
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r-- | build/ymake.core.conf | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 737a0963d3..c2a8a6f92c 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -6305,13 +6305,6 @@ macro SRC_C_PIC(FILE, FLAGS...) { _SRC_STRICT_C_CPP(${lastext:FILE} SRC_C_PIC $FILE $PIC_CFLAGS $FLAGS) } -# tag:cpu tag:src-processing -### @usage SRC_CPP_PIC(File Flags...) -### Compile single .c-file with -fPIC and extra Flags. -macro SRC_CPP_PIC(FILE, FLAGS...) { - SRC_C_PIC($FILE $FLAGS) -} - # tag:src-specific tag:cpp-specific ### @uasge SRC_C_NO_LTO(File Flags...) ### @@ -6320,62 +6313,6 @@ macro SRC_C_NO_LTO(FILE, FLAGS...) { _SRC_STRICT_C_CPP(${lastext:FILE} SRC_C_NO_LTO $FILE $NO_LTO_CFLAGS $FLAGS) } -# tag:cpu tag:src-processing -### @usage SRC_CPP_NO_LTO(File) -### Compile single .cpp file with link-time-optimization disabled -macro SRC_CPP_NO_LTO(FILE, FLAGS...) { - SRC_C_NO_LTO($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_SSE2(File Flags...) -### Compile single .cpp-file with SSE2 and extra Flags. -macro SRC_CPP_SSE2(FILE, FLAGS...) { - SRC_C_SSE2($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_SSE3(File Flags...) -### Compile single .cpp-file with SSE3 and extra Flags. -macro SRC_CPP_SSE3(FILE, FLAGS...) { - SRC_C_SSE3($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_SSSE3(File Flags...) -### Compile single .cpp-file with SSSE3 and extra Flags. -macro SRC_CPP_SSSE3(FILE, FLAGS...) { - SRC_C_SSSE3($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_SSE41(File Flags...) -### Compile single .cpp-file with SSE4.1 and extra Flags. -macro SRC_CPP_SSE41(FILE, FLAGS...) { - SRC_C_SSE41($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_SSE4(File Flags...) -### Compile single .cpp-file with SSE4 (SSE4.1, SSE4.2 and POPCNT) and extra Flags. -macro SRC_CPP_SSE4(FILE, FLAGS...) { - SRC_C_SSE4($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_AVX(File Flags...) -### Compile single .cpp-file with AVX and extra Flags. -macro SRC_CPP_AVX(FILE, FLAGS...) { - SRC_C_AVX($FILE $FLAGS) -} - -# tag:cpu tag:src-processing -### @usage SRC_CPP_AVX2(File Flags...) -### Compile single .cpp-file with AVX2 and extra Flags. -macro SRC_CPP_AVX2(FILE, FLAGS...) { - SRC_C_AVX2($FILE $FLAGS) -} - # tag:python-processing tag:cython # TODO: use it in [.pyx] cmd ### @usage: BUILDWITH_CYTHON_CPP(Src Options...) |