make art error
I try to build it, but i get a error when i run make art in elvm.
my env version
system version: ubuntu22.04
make version:
GNU Make 4.3
Built for x86_64-pc-linux-gnu
Copyright (C) 1988-2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law
first time i get a error:
./runtest.sh out/00exit.eir.out out/eli out/00exit.eir
out/elc -art out/00exit.eir > out/00exit.eir.art.tmp && chmod 755 out/00exit.eir.art.tmp && mv out/00exit.eir.art.tmp out/00exit.eir.art
./runtest.sh out/00exit.eir.art.out tools/runart.sh out/00exit.eir.art
./runtest.sh: line 19: tools/runart.sh: Permission denied
make: *** [build.mk:5: out/00exit.eir.art.out] Error 126
I found tools/runart.sh: Permission denied. So I add an executable permission to runart.sh
chmod +x tools/runart.sh
Then I try to make art again. However I get the second error.
./runtest.sh out/00exit.eir.art.out tools/runart.sh out/00exit.eir.art
(diff -u out/00exit.eir.out out/00exit.eir.art.out > out/00exit.eir.art.out.diff.tmp && mv out/00exit.eir.art.out.diff.tmp out/00exit.eir.art.out.diff) || (cat out/00exit.eir.art.out.diff.tmp ; false)
--- out/00exit.eir.out 2024-03-01 12:11:49.394213861 +0000
+++ out/00exit.eir.art.out 2024-03-01 12:11:49.426213609 +0000
@@ -0,0 +1 @@
+owo
make: *** [diff.mk:4: out/00exit.eir.art.out.diff] Error 1
I don't know how to solve this crack
idk if this project is still active but to answer your question, its built thats just a make file error continue with the building it still should be built or u can use my fork it supports x64 and also converts greyscale on the fly im also planning on implementing PE support : https://github.com/w1redch4d/Artfuscator
i have the same problem with u
idk if this project is still active but to answer your question, its built thats just a make file error continue with the building it still should be built or u can use my fork it supports x64 and also converts greyscale on the fly im also planning on implementing PE support : https://github.com/w1redch4d/Artfuscator
the same problem in your project :(
Please read the README.md, Thats not a problem after the error just do the following if you are using my fork for 64 bit:
cd ..
make <TARGET> ARCH=x64 IMG=<IMAGE PATH>
or
cd ..
make <TARGET> IMG=<IMAGE PATH>
if you are using the original repo,
The error just occurs as the test isnt complete thats all theres no compilation issue
Please read the README.md, Thats not a problem after the error just do the following if you are using my fork for 64 bit:
cd .. make <TARGET> ARCH=x64 IMG=<IMAGE PATH> or
cd .. make <TARGET> IMG=<IMAGE PATH> if you are using the original repo,
The error just occurs as the test isnt complete thats all theres no compilation issue
thank you for your reply! I see that, the error is just a testcase error, elvm binary has been compiled, much appreciated for your work : )