aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake.core.conf
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2023-06-28 16:09:52 +0300
committerthegeorg <thegeorg@yandex-team.com>2023-06-28 16:09:52 +0300
commite3141b4657c83fa042ee7bf85c5535b2bb250f6d (patch)
treefb66bbf70d37955c3f1d47905089d464ba6ca3ec /build/ymake.core.conf
parentd1068b1b55aab21b6fa4bb041e3c413e455ac7c3 (diff)
downloadydb-e3141b4657c83fa042ee7bf85c5535b2bb250f6d.tar.gz
Make f2c generated outputs depend on f2c.h
``` contrib/python/scipy/py3/_/scipy/fftpack/src/dfftpack/dsinti.f.c:22:10: fatal error: 'f2c.h' file not found #include "f2c.h" ^~~~~~~ 1 error generated. ```
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r--build/ymake.core.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf
index c032128dc8..633c421954 100644
--- a/build/ymake.core.conf
+++ b/build/ymake.core.conf
@@ -6307,7 +6307,7 @@ macro _SRC("ssqls", SRC, SRCFLAGS...) {
# tag:src-processing
macro _SRC("f", SRC, SRCFLAGS...) {
- .CMD=$YMAKE_PYTHON ${input:"build/scripts/f2c.py"} -t ${tool:"contrib/tools/f2c"} -c ${input:SRC} -o ${output:SRC.c} ${kv;hide:"p FT"} ${kv;hide:"pc light-green"}
+ .CMD=$YMAKE_PYTHON ${input:"build/scripts/f2c.py"} -t ${tool:"contrib/tools/f2c"} -c ${input:SRC} -o ${output:SRC.c} ${output_include;hide:"f2c.h"} ${kv;hide:"p FT"} ${kv;hide:"pc light-green"}
.PEERDIR=contrib/libs/libf2c
.ADDINCL=contrib/libs/libf2c
}