dub icon indicating copy to clipboard operation
dub copied to clipboard

Package and build management system for D

Results 262 dub issues
Sort by recently updated
recently updated
newest added

``` DUB version 1.26.0, built on Jun 3 2021 ``` Running on OSX. ``` % dub --compiler=../../dlang/dmd/generated/osx/release/64/dmd Running pre-generate commands for vibe-d:tls... object.Exception@source/dub/dub.d(1418): defaultCompiler specified in a DUB config file...

bug

When generating visuald project that contains copyFiles-entries, missing folders on destination path is not created before hardlink is tried. Project tested: https://github.com/dayllenger/beamui.git Dub commandline: dub generate visuald :opengl Result: Copying...

The fix for #1474 was incomplete. The following errors out when newly built: ```json { "name": "test", "preGenerateCommands": [ "mkdir -p objects/res/" ], "sourceFiles-posix": [ "objects/res/*.o" ], "sourceFiles-windows": [ "objects/res/*.obj"...

bug

My problem is simple - I would like to build multiple scripts that use the same library with `dub`. ``` examples/script1 examples/script2 source/lib/... ``` (concrete example [here](https://github.com/DlangScience/mir/pull/156)) Creating a new...

These are linker specific settings: ```json "lflags-posix": [ "-L/a/path" ], "lflags-windows": [ "/LIBPATH:A:/Path" ], ``` The specificity could be abstracted away by Dub. Specified paths have few chances to be...

enhancement
needs input

### System information I don't think this issue is dependent on version, but FWIW: - **dub version**: 1.15.0 - **OS Platform and distribution**: Ubuntu 18.04 - **compiler version** dmd-2.086.0 ###...

bug

## update: @kinke find the cause of the problem: """ it looks like `-J -lib` is the problem. LDC accepts -Jmy/dir as well as -J my/dir, so an empty/invalid -J...

Dub only consider skipRegistry passed via command line argument but ignores skipRegistry passed via config file. The issue is related to this place: https://github.com/dlang/dub/blob/7bf3584a4d003b1b1c5891fbed8f233dc2f7c2b0/source/dub/commandline.d#L259

### System information - **dub version**: 1.24.1 - **OS Platform and distribution**: Windows 10 - **compiler version** dmd v2.095.1, ldc2 1.25.1 ### Bug Description ``targetName`` option in dub configuration doesn't...

It should be possible to set [dub settings](https://dub.pm/settings.html) via environment variables. The idea is to make the existing private class ```DubConfig``` either abstract or an interface https://github.com/dlang/dub/blob/master/source/dub/dub.d#L1724 and add 2...

enhancement
needs input