aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorsnermolaev <snermolaev@yandex-team.ru>2022-05-13 23:02:49 +0300
committersnermolaev <snermolaev@yandex-team.ru>2022-05-13 23:02:49 +0300
commit1ec4d0895a23113092860fdb9fb687378e2e9792 (patch)
treea9f2aab7ce17922dc011b4e545959dc7a54b961d /build
parentac5cd845fa20777156e7d9327cde4238032a7181 (diff)
downloadydb-1ec4d0895a23113092860fdb9fb687378e2e9792.tar.gz
remove redundant SRC_CPP_* macros
ref:8ba976974b3a433ae93627efbbe894ee04cf2b98
Diffstat (limited to 'build')
-rw-r--r--build/ymake.core.conf63
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...)