santensuru / adaptive-huffman

Adaptive Huffman implement using c++
12 stars 10 forks source link

how to run #3

Open denizsoysal opened 5 years ago

denizsoysal commented 5 years ago

Hello, i have an issue compiling the program. When a write "gcc vitter.cpp input.txt" in the widows terminal, it doesn't work and it says. "warning: input.txt: linker input file unused because linking not done" Can you please help me ?

denizsoysal commented 5 years ago

update : I have try this command : "g++ vitter.cpp -c input.txt" and i have the same result

santensuru commented 5 years ago

hello, thank you for your comment

first, at that time, I code it in dev-c++, so perhaps have some compatibility issues

second, you need to make executable file, g++ vitter.cpp -o vitter.exe, something like that, it can easily done by using dev-c++

third, than use the executable file for compress and decompress, please read readme.md

I hope, this will help you. good luck.

denizsoysal commented 5 years ago

Hello, I get it now. Thank you a lot ! Have a nice week end

santensuru commented 5 years ago

you're welcome