dictu-lang / Dictu

Dictu is a high-level dynamically typed, multi-paradigm, interpreted programming language.
https://dictu-lang.com
MIT License
268 stars 53 forks source link

Can't install #714

Closed functionalmethod closed 8 months ago

functionalmethod commented 8 months ago

Is there an existing issue for this?

Current Behavior

Install (any method), failure message after the first CMAKE command: CMake Error: CMake was unable to find a build program corresponding to "Unix Makefiles". CMAKE_MAKE_PROGRAM is not set. You probably need to select a different build tool. CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage -- Configuring incomplete, errors occurred!

Expected Behavior

Install properly

Steps To Reproduce

Follow read.me steps.

Anything else?

I have checked my CMAKE

Jason2605 commented 8 months ago

Can you paste the full output you get please?

Also which version of cmake are you running / which compiler (and version) are you also trying to use?

functionalmethod commented 8 months ago

CMAKE 3.28.1 and the full error is listed above; Same problem on a windows machine

Jason2605 commented 8 months ago

Which compiler are you attempting to use?

Which version of make (not cmake) do you have?

functionalmethod commented 8 months ago

I tried to run the process with each compiler (each time completely restarting/ deleting folder and everything). I don't know which version of make?

Jason2605 commented 8 months ago

If CMake is generating make files you will need make installed. As an example on an ubuntu system run the following:

apt-get install build-essential
functionalmethod commented 8 months ago

thanks