SHA256
1
0
forked from pool/ldc

Accepting request 1097494 from home:Guillaume_G:branches:devel:languages:D

- Update to 1.32.2:
  * Big news
    - New command-line option --fwarn-stack-size=<threshold> with
      LLVM 13+. (#4378)
    - New command-line option --fsplit-stack for incremental stack
      allocations, see https://llvm.org/docs/SegmentedStacks.html. (#4379)
      - New UDA ldc.attributes.noSplitStack disables it on a per-function
        basis. (#4382)
    - New command-line option --indent for the timetrace2txt tool.
      (#4391)
  * Bug fixes
    - Fix potentially huge compile slowdowns with -g and LLVM 15+.
      (#4354, #4393)
    - Treat all LLVM warnings as regular warnings (e.g., errors
      with -w). Requires LLVM 13+. (#4384)
- Skipped 1.32.1:
  * Big news
    - The prebuilt Linux packages are now generated on a Ubuntu 20.04
      box, so the min required glibc version has been raised from
      2.26 to 2.31. (#4367)
  * Bug fixes
    - Fix empty ldc.gccbuiltins_* modules with LLVM 15+.
      (#4347, #4350)
    - Fix v1.31 regression wrt. potentially wrong constant pointer
      offsets. (#4362, #4365)
    - Windows: Fix v1.32 regression wrt. leaking Throwable.info
      backtraces. (#4369)
    - Fix C assert calls for newlib targets. (#4351)
- Do not use %{_includedir}/d to be able to install/use multiple
  D compilers in parallel - boo#1212913

OBS-URL: https://build.opensuse.org/request/show/1097494
OBS-URL: https://build.opensuse.org/package/show/devel:languages:D/ldc?expand=0&rev=65
This commit is contained in:
2023-07-10 13:18:12 +00:00
committed by Git OBS Bridge
parent 6a1848cad0
commit 50746a0577
3 changed files with 72 additions and 11 deletions

View File

@@ -1,3 +1,41 @@
-------------------------------------------------------------------
Fri Jul 7 08:32:51 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Update to 1.32.2:
* Big news
- New command-line option --fwarn-stack-size=<threshold> with
LLVM 13+. (#4378)
- New command-line option --fsplit-stack for incremental stack
allocations, see https://llvm.org/docs/SegmentedStacks.html. (#4379)
- New UDA ldc.attributes.noSplitStack disables it on a per-function
basis. (#4382)
- New command-line option --indent for the timetrace2txt tool.
(#4391)
* Bug fixes
- Fix potentially huge compile slowdowns with -g and LLVM 15+.
(#4354, #4393)
- Treat all LLVM warnings as regular warnings (e.g., errors
with -w). Requires LLVM 13+. (#4384)
- Skipped 1.32.1:
* Big news
- The prebuilt Linux packages are now generated on a Ubuntu 20.04
box, so the min required glibc version has been raised from
2.26 to 2.31. (#4367)
* Bug fixes
- Fix empty ldc.gccbuiltins_* modules with LLVM 15+.
(#4347, #4350)
- Fix v1.31 regression wrt. potentially wrong constant pointer
offsets. (#4362, #4365)
- Windows: Fix v1.32 regression wrt. leaking Throwable.info
backtraces. (#4369)
- Fix C assert calls for newlib targets. (#4351)
-------------------------------------------------------------------
Fri Jul 7 06:25:04 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- Do not use %{_includedir}/d to be able to install/use multiple
D compilers in parallel - boo#1212913
-------------------------------------------------------------------
Fri Apr 21 12:52:58 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>