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
However, when specifying the output file via -o, we do not append the extension based on the selected high-level language (.c or .py, depending on -l/--target-language).
…-decompiler.sh (#261).
The retdec-archive-decompiler.sh script did not append .c at the end of the
decompiled files from the input archive (see #261). This commit fixes that.
Since there is currently no way of selecting the target language when running
retdec-archive-decompiler.sh, we can just append '.c' to the output files as C
is the default target language.
The
retdec-archive-decompiler.sh
script does not append.c
at the end of the decompiled files from the input archive.Input
Run
where
FILE
is e.g.gnu.a
from our regression-tests suite. You can take any archive you want as the issue does not depend on the input archive.Output
Among other files, the command generates the following two files, which contain the decompiled C code:
Notice that the files do not have any extension.
Expected output
The generated files should end with
.c
, just like when you runretdec-decompiler.sh
:Configuration
master
)The text was updated successfully, but these errors were encountered: