mirror of https://gitlab.com/basile.b/dexed.git
fix #116 - libdexed-d can only be build with ldc 1.30.0
1.31.0 or newer required now
This commit is contained in:
parent
73513b3512
commit
052e49aa35
|
@ -1,3 +1,9 @@
|
|||
# v3.9.26-alpha
|
||||
|
||||
## Bugx fixed
|
||||
|
||||
- fixed windows release (#116). ldc2 >= 1.31.0 is a minimal requirement now.
|
||||
|
||||
# v3.9.25
|
||||
|
||||
## Enhancements
|
||||
|
|
|
@ -39,7 +39,7 @@ The _zip_ archives allow to move freely the files.
|
|||
The _setup.zip_ archives contain a command line program that installs to predefined locations so that the software can be run without additional intervention.
|
||||
The _deb_ and the _rpm_ packages are for those who prefer the official setup system of their linux systems.
|
||||
FreeBSD (all archs), Linux (32 bit) and Windows (32 bits) versions must be [built manually](https://basile.b.gitlab.io/dexed/build.html).
|
||||
~~A Windows 64bit build can be found [on appveyor](https://ci.appveyor.com/project/BBasile/dexed/history). Click the top most item that has a green left margin and download the file listed in the "Artifacts" tab.~~
|
||||
A Windows 64bit build can be found [on appveyor](https://ci.appveyor.com/project/BBasile/dexed/history). Click the top most item that has a green left margin and download the file listed in the "Artifacts" tab.
|
||||
|
||||
[**See this page**](https://basile.b.gitlab.io/dexed/setup.html) for more information about the setup.
|
||||
|
||||
|
|
|
@ -19,14 +19,14 @@ branches:
|
|||
|
||||
install:
|
||||
- ps: |
|
||||
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.30.0/ldc2-1.30.0-windows-x64.7z"
|
||||
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.33.0/ldc2-1.33.0-windows-multilib.7z"
|
||||
$LDC_NME = "C:\ldc.7z";
|
||||
$LAZ_URL = "https://gitlab.com/basile.b/laz-bin-cache.git"
|
||||
$LAZ_NME = "laz-bin-cache\lazarus-2.2.0-fpc-3.2.2-win64.exe"
|
||||
|
||||
(new-object net.webclient).DownloadFile($LDC_URL, $LDC_NME)
|
||||
7z x $LDC_NME -o"C:\" -y -r
|
||||
Rename-Item "C:\ldc2-1.30.0-windows-x64" "C:\ldc"
|
||||
Rename-Item "C:\ldc2-1.33.0-windows-multilib" "C:\ldc"
|
||||
|
||||
git clone $LAZ_URL --depth=1
|
||||
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
|
@ -8,7 +8,12 @@
|
|||
"path" : "../etc/libdparse"
|
||||
}
|
||||
},
|
||||
"dflags" : [
|
||||
"dflags-linux" : [
|
||||
"-link-defaultlib-shared=false"
|
||||
]
|
||||
}
|
||||
],
|
||||
"dflags-windows" : [
|
||||
"-link-defaultlib-shared=false",
|
||||
"-fvisibility=public",
|
||||
"-dllimport=none",
|
||||
],
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ Dexed is mostly programmed in Object Pascal, using the the [Lazarus development
|
|||
* [Download](http://lazarus.freepascal.org/index.php?page=downloads) and setup the latest Lazarus version (>= 2.2.0) and FPC + FPC sources (= 3.2.2) for your platform.
|
||||
* Windows: the three packages are bundled in an installer.
|
||||
* Linux: the three packages must be downloaded and setup individually. It's recommended to download the packages from _SourceForge_ and not from the official repository of the distribution because they don't always propose the latest version.
|
||||
* [Download](https://github.com/ldc-developers/ldc/releases) and setup LDC2, the LLVM-based D compiler. It is used to compile the part of the IDE that's written in D, a library called _libdexed-d_. LDC2 binaries must be visible in the system PATH variable. Note that building _libdexed-d_ is automatic.
|
||||
* [Download](https://github.com/ldc-developers/ldc/releases) and setup LDC2 (>= v1.31.0), the LLVM-based D compiler. It is used to compile the part of the IDE that's written in D, a library called _libdexed-d_. LDC2 binaries must be visible in the system PATH variable. Note that building _libdexed-d_ is automatic.
|
||||
|
||||
## Build
|
||||
|
||||
|
|
Loading…
Reference in New Issue