форк PascalABC с синонимами русских ключевых слов
Find a file
2016-04-03 14:54:55 +02:00
_ParsePABC1 foreach по многомерным массивам теперь возвращает правильный тип элемента. 2016-02-02 02:28:54 +03:00
_Presentations/2015 New Features HashSet<T>.operator-= 2016-01-09 11:38:02 +03:00
bin bug fix issue #128 2016-04-02 21:28:35 +02:00
CodeCompletion bug fix issue #126 2016-04-03 12:57:12 +02:00
Compiler Удалил Performance Tools 2016-03-20 14:46:26 +01:00
CompilerTools change encoding for all *.pas and *.cs files: cp1251 -> utf-8 2015-12-28 14:25:15 +03:00
Configuration Изменена реализация метода Slice и срезов a[f,t,s] 2016-03-28 15:25:46 +03:00
Debugger.Core при сравнении на совпадение строки следующей операции, добавлена проверка на совпадение исходного файла. 2015-10-23 17:59:34 +10:00
doc удалены старые парсеры на базе GoldParser 2016-01-07 22:01:36 +01:00
Errors ... 2015-09-10 20:58:53 +02:00
Grammars удалены старые парсеры на базе GoldParser 2016-01-07 22:01:36 +01:00
ICSharpCode.TextEditor added license info 2015-06-02 21:52:35 +02:00
InstallerSamples Новый модуль ClientServer и изменения в модулях PABCSystem, GraphABC. Новый пример FuncTransform.pas 2016-01-05 13:10:24 +03:00
Libraries added license files for third-party libraries 2015-05-31 10:15:07 +02:00
Localization PABCSystem.pas исправлена ошибка коммита 2016-03-20 21:34:59 +03:00
NETGenerator bug fix issue #127 2016-04-03 14:26:38 +02:00
OptimizedAssemblies MPGORunner and TestRunner modified 2015-05-15 11:35:40 +02:00
Optimizer Привел в соответствие копирайты в окне About 2016-01-06 11:34:18 +01:00
pabcnetc replace unicode character © with (c) in commandline compiler 2016-03-22 19:18:48 +01:00
pabcnetc_clear Привел в соответствие копирайты в окне About 2016-01-06 11:34:18 +01:00
Parsers Исправление неточностей в справке 2016-03-20 20:55:54 +03:00
ParserTools bug fix issue #30 2015-12-29 13:30:02 +01:00
PluginsSupport Методы расширения не конфликтуют больше со статическими методами 2015-10-20 21:19:54 +02:00
Release MPGORunner and TestRunner modified 2015-05-15 11:35:40 +02:00
ReleaseGenerators Update Exam dlls 2016-03-29 19:20:35 +04:00
SemanticTree change encoding for all *.pas and *.cs files: cp1251 -> utf-8 2015-12-28 14:25:15 +03:00
SyntaxTree Merge branch 'master' of https://github.com/pascalabcnet/pascalabcnet 2016-03-11 01:25:16 +03:00
TestSuite Изменена реализация метода Slice и срезов a[f,t,s] 2016-03-28 15:25:46 +03:00
TreeConverter bug fix issue #128 2016-04-02 21:28:35 +02:00
Utils Удалил Performance Tools 2016-03-20 14:46:26 +01:00
VisualPascalABCNET bug fix issue #108 2016-03-13 12:27:05 +01:00
VisualPlugins Привел в соответствие копирайты в окне About 2016-01-06 11:34:18 +01:00
WeifenLuo initial commit 2015-05-14 21:35:07 +02:00
Перевод сайта initial commit 2015-05-14 21:35:07 +02:00
_Clean.bat ... 2015-08-29 22:20:07 +02:00
_GenerateAllSetups.bat ryujit enabled. bug fix in installer script 2015-08-20 14:45:13 +02:00
_ReBuildDebug.bat initial commit 2015-05-14 21:35:07 +02:00
_ReBuildRelease.bat initial commit 2015-05-14 21:35:07 +02:00
_RebuildReleaseAndRunTests.bat _RebuildReleaseAndRunTests.bat added 2015-12-29 13:32:45 +01:00
_RebuildReleaseAndRunTests.sh sudo gacutil in _RebuildReleaseAndRunTests.sh 2016-04-03 14:54:55 +02:00
pabcnetc.sln added solution file for console compiler 2015-09-10 21:10:34 +02:00
PascalABCNET.sln T->T 2015-05-17 21:15:48 +03:00
PascalABCNET.xml Merge branch 'master' of https://github.com/pascalabcnet/pascalabcnet 2015-06-27 20:55:07 +03:00
README.md Update README.md 2016-02-07 12:57:25 +01:00

Building PascalABC.NET in Windows

_RebuildReleaseAndRunTests.bat builds the project in Release-mode, rebuilds the pas-units and runs tests (run with administrative privileges!).

_GenerateAllSetups.bat builds the project in Release-mode, rebuilds the pas-units, runs tests and creates the install package (run with administrative privileges!).

_ReBuildRelease.bat builds the project in Release-mode.

_ReBuildDebug.bat builds the project in Debug-mode.

PascalABC is being developed in Visual Studio Community 2015.

Building PascalABC.NET in Linux (Ubuntu)

Install Mono (http://www.mono-project.com/docs/getting-started/install/linux/)

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get install mono-devel
sudo apt-get install mono-complete

Build the project and run tests.

$ git clone https://github.com/pascalabcnet/pascalabcnet
$ cd pascalabcnet
$ sudo sh _RebuildReleaseAndRunTests.sh

Building PascalABC.NET in MacOS

Download and install Mono from official page. Install the git-client. Run the commands:

$ git clone https://github.com/pascalabcnet/pascalabcnet
$ cd pascalabcnet
$ sudo sh _RebuildReleaseAndRunTests.sh

Run the PascalABC.NET command line compiler

$ cd bin
$ mono pabcnetc.exe
или $ mono --debug pabcnetc.exe

Tests

Tests are located in the directory "TestSuite". To run the tests execute the file bin/TestRunner.exe


Сборка проекта в Windows

_RebuildReleaseAndRunTests.bat собирает проект в Release-режиме, перекомпилирует pas-модули и прогоняет все тесты (запускать с правами администратора).

_GenerateAllSetups.bat собирает инсталлят (запускать с правами администратора).

_ReBuildRelease.bat собирает проект в Release-режиме.

_ReBuildDebug.bat собирает проект в Debug-режиме.

Разработка ведется в Visual Studio Community 2015.

Сборка проекта в Linux (Ubuntu)

Установка Mono (http://www.mono-project.com/docs/getting-started/install/linux/)

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
sudo apt-get install mono-devel
sudo apt-get install mono-complete

Сборка проекта и выполение тестов

$ git clone https://github.com/pascalabcnet/pascalabcnet
$ cd pascalabcnet
$ sudo sh _RebuildReleaseAndRunTests.sh

Сборка проекта в MacOS

Скачайте и установите Mono с официального сайта. При необходимости установите git-клиент. Далее выполните команды

$ git clone https://github.com/pascalabcnet/pascalabcnet
$ cd pascalabcnet
$ sudo sh _RebuildReleaseAndRunTests.sh

Запуск

$ cd bin
$ mono pabcnetc.exe
или $ mono --debug pabcnetc.exe

Тесты

Тесты расположены в папке TestSuite. Прогон тестов осуществляется программой bin/TestRunner.exe