You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to generate a SWIG interface currently triggers a file not found error.
Steps to reproduce:
Build Soufflé with -DSOUFFLE_SWIG=ON
Run SWIG tests: ctest -j8 -L swig
The issue is that souffle-compile.template.py builds the .o file name by using the absolute path to the output file instead of a relative path to the current working temporary directory:
Trying to generate a SWIG interface currently triggers a file not found error.
Steps to reproduce:
-DSOUFFLE_SWIG=ON
ctest -j8 -L swig
The issue is that
souffle-compile.template.py
builds the.o
file name by using the absolute path to the output file instead of a relative path to the current working temporary directory:souffle/src/souffle-compile.template.py
Line 153 in 429e168
Replacing with
cmd.append(os.path.basename(args.output) + ".o")
fixes the issue.The text was updated successfully, but these errors were encountered: