-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Unicon is a very high level programming language. It runs on many operating systems including most Linux distributions, Windows, macOS, and BSD systems. It also supports most modern CPU architectures such as i386, amd64, armhf, arm64, and ppc64el.
The latest sources are available from Unicon's git repositories on Sourceforge and GitHub. To get the sources from either repo do:
git clone https://github.com/uniconproject/unicon.git
or
git clone git://git.code.sf.net/p/unicon/unicon
git
is available on linux via the standard package managers, for example on a Debian system
sudo apt install git
On macOS git is available with xcode. On windows you can install and setup git using the instructions: here
For source tarballs and binary distributions, see unicon.org download page
Prerequisites
- Gnu/Unix utilities such as shell, make, grep, etc.
- C language compiler that supports C99 such as gcc or clang
The initial configuration is done via a standard GNU autoconf script, run:
./configure --help
For configuration options help. On Windows:
sh configure --help
Use the package manager in your Linux distribution to get a build utilities and C compiler. For example, on a Debian system
sudo apt install build-essential
Go into the Unicon directory and run:
./configure
make
After that you can add unicon/bin
to the $PATH environment variable or install Unicon instead:
make install
Install Xcode command line tools (or all of Xcode) from the macOS app store. After that the build steps are the same as those on Linux. To ensure using clang, explicitly set the compiler as follows:
./configure CC=clang CXX=clang++
-
Download and run mingw-get-setup.exe
Go through the install process and use it to install only msys-base. This will give you an MSYS (not MSYS2) environment with all the needed Linux/gnu utils.
-
Get MinGW64 compiler suite, TDM package is known to work with Unicon. Most recent package is 9.2.0
After that you can use the standard Windows command line cmd
terminal to build Unicon.
sh configure
or
make WUnicon64
Which is a shortcut for running:
sh configure --build=x86_64-w64-mingw32
The option x86_64-w64-mingw32
ensures the build is 64-bit. After the script finishes do:
make
Questions and comments to: [email protected]