compile_data
does not work together with generated sources
#3171
Labels
compile_data
does not work together with generated sources
#3171
When using generated
srcs
and non-generatedcompile_data
in the samerust_library
target, the non-generatedsrcs
are symlinked into the out-tree for the build, but the same is not done for non-generatedcompile_data
, so the files are not available forinclude_str!
or whatever.Here's a patch that reproduces this within the existing
compile_data
tests:This is possible to work around by using
genrule
or similar to copy the files incompile_data
to make it "generated", but this does not seem ideal.The text was updated successfully, but these errors were encountered: