-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Could not compile dependency hoedown, make command failed. - Windows #10
Comments
Have you installed a C compiler on your machine? It seems it is missing the cc executable. MinGW may include one, otherwise you may need the Visual Studio tooling. |
I have gcc on my machine. Can I use that instead? Do I have to compile this manually? |
Is |
I was just looking it up. It seems that cc is the clang compiler, renamed to "cc" on FreeBSD systems. https://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/tools-compiling.html I just created a symoblic link from cc to gcc. But that failed with this error:
Let me see if I can get clang installed on my system and sym link it to cc. |
Ah, something is definitely wrong. You are on Windows but it seems to be using the regular Makefile and not the Windows one. Which terminal are you using to compile this? Which Elixir version? |
I'm on Windows 8.1, using ConEmu as my terminal. Using Elixir 1.0.2 I just tried doing this with clang compiler, sym linked to cc. Same output. |
What does |
Also, what is requiring this project? We have a markdown processor in pure Elixir here, would that be enough for your needs? |
:os.type returns this: I was trying to do an Elixir sip (www.elixirsips.com), trying to make a markdown parser. Ah, I should've figured that out. It was calling for ex_doc, ex_doc didn't have the markdown parser, so I went to look for another one. Thanks Jose. |
I'm assuming since you have a Makefile.win that you also support Windows.
Anyways, when I go to compile the dependcies, I get the following from mix:
I'm not sure if this is from your library or hoedown. Can you please take a look?
Thanks.
The text was updated successfully, but these errors were encountered: