We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running zephir generate under Windows, we have that paths in the config.m4 file use \ instead of /.
zephir generate
\
/
For example, with the RubixML/Tensor project we have these lines in the updated config.m4 file:
config.m4
AC_DEFINE(HAVE_TENSOR, 1, [Whether you have Tensor]) tensor_sources="tensor.c kernel/main.c kernel/memory.c kernel/exception.c kernel/debug.c kernel/backtrace.c kernel/object.c kernel/array.c kernel/string.c kernel/fcall.c kernel/require.c kernel/file.c kernel/operators.c kernel/math.c kernel/concat.c kernel/variables.c kernel/filter.c kernel/iterator.c kernel/time.c kernel/exit.c tensor\arithmetic.zep.c tensor\arraylike.zep.c tensor\comparable.zep.c tensor\functional.zep.c tensor\statistical.zep.c tensor\trigonometric.zep.c tensor\tensor.zep.c tensor\vector.zep.c tensor\columnvector.zep.c tensor\decompositions\cholesky.zep.c tensor\decompositions\eigen.zep.c tensor\decompositions\lu.zep.c tensor\matrix.zep.c tensor\reductions\ref.zep.c tensor\reductions\rref.zep.c tensor\settings.zep.c include/indexing.c include/arithmetic.c include/comparison.c include/linear_algebra.c"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When running
zephir generate
under Windows, we have that paths in the config.m4 file use\
instead of/
.For example, with the RubixML/Tensor project we have these lines in the updated
config.m4
file:The text was updated successfully, but these errors were encountered: