From 5a93546143f5aae4e56bde271144ca78228db387 Mon Sep 17 00:00:00 2001 From: Norayr Chilingarian Date: Wed, 13 Dec 2023 15:56:49 +0400 Subject: [PATCH] insignificant readme and makefile changes. --- ReadMe.md | 10 ++++++---- makefile | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ReadMe.md b/ReadMe.md index 575afbb0..933b0681 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -31,9 +31,11 @@ It is easy to install the Oberon compiler and libraries with the following simple steps: 1. Install pre-requisites such as git, gcc, static C libraries, diff utils. - 2. Clone the repository and run 'make full'. - 3. Optionally install to a system directory such as /opt or /usr/local/share with 'make install'. - 4. Set your PATH variable to include the compiler binary. + 2. Clone the repository: `git clone https://github.com/vishaps/voc`. + 3. Optionally `export CC=clang` or `export CC=tcc`. + 4. run `make full`. + 5. Optionally install to a system directory such as /opt or /usr/local/share with `make install` (might be with sudo). + 6. Set your PATH variable to include the compiler binary. These are detailed below: @@ -179,7 +181,7 @@ Most of the runtime in libVishapOberon is distributed under GPLv3 with runtime e ## Platform support and porting -Vishap Oberon supports 32 and 64 bit little-endian architectures including Intel x86 and x64, arm and ppc. +Vishap Oberon supports 32 and 64 bit little-endian architectures including Intel x86 and x86_64, 32 bit arm and aarch64. It compiles under gcc, clang, tcc and Microsoft Visual C. diff --git a/makefile b/makefile index 2a8dc400..5c0ee241 100644 --- a/makefile +++ b/makefile @@ -82,6 +82,8 @@ usage: @echo " make compiler - Build the compiler but not the library" @echo " make browsercmd - Build the symbol browser (showdef)" @echo " make library - Build all library files and make library" + @echo " make O2library - Build all library files with Oberon-2 type sizes" + @echo " make OClibrary - Build all library files with Component Pascal type sizes" @echo " make install - Install built compiler and library in /opt or C:\\PROGRAM FILES*" @echo " (Needs root access)" @echo ""