Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ the full feature set of official packages from GitHub**):

In-depth material on building and installing LDC and the standard
libraries is available on the project wiki for
[Linux, macOS, BSD, and Android](http://wiki.dlang.org/Building_LDC_from_source) and
[Windows](http://wiki.dlang.org/Building_and_hacking_LDC_on_Windows_using_MSVC).
[Linux, macOS, BSD, and Android](https://wiki.dlang.org/Building_LDC_from_source) and
[Windows](https://wiki.dlang.org/Building_and_hacking_LDC_on_Windows_using_MSVC).

If you have a working C++/D build environment, CMake, and a recent LLVM
version (≥ 15) available, there should be no big surprises. Do not
Expand Down
2 changes: 1 addition & 1 deletion driver/ldmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ void translateArgs(const llvm::SmallVectorImpl<const char *> &ldmdArgs,
* -main
*/
else if (startsWith(p + 1, "man")) {
browse("http://wiki.dlang.org/LDC");
browse("https://wiki.dlang.org/LDC");
exit(EXIT_SUCCESS);
} else if (strcmp(p + 1, "run") == 0) {
ldcArgs.insert(ldcArgs.end(), args.begin() + i, args.end());
Expand Down
2 changes: 1 addition & 1 deletion driver/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void printVersion(llvm::raw_ostream &OS) {
CPU = "(unknown)";
}
OS << " Host CPU: " << CPU << "\n";
OS << " http://dlang.org - http://wiki.dlang.org/LDC\n";
OS << " https://dlang.org - https://wiki.dlang.org/LDC\n";
OS << "\n";

// Without explicitly flushing here, only the target list is visible when
Expand Down
2 changes: 1 addition & 1 deletion packaging/README
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ to your liking, e.g., adding implicit command-line options and setting up cross-
compilation.

For further information, including on how to report bugs, please refer to the
LDC wiki: http://wiki.dlang.org/LDC.
LDC wiki: https://wiki.dlang.org/LDC.
2 changes: 1 addition & 1 deletion packaging/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ static libraries from a Visual C++ toolchain, which cannot be bundled with
https://github.com/ldc-developers/mingw-w64-libs for details.

For further information, including on how to report bugs, please refer to the
LDC wiki: http://wiki.dlang.org/LDC.
LDC wiki: https://wiki.dlang.org/LDC.
2 changes: 1 addition & 1 deletion utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ and testing LDC (`not` and `FileCheck`).
`FileCheck` is copied from LLVM, and versioned for each LLVM version that we support (for example, FileCheck-3.9.cpp does not compile with LLVM 3.5).
Older versions of FileCheck contain modifications such that they contain new features/bugfixes but still compile with older LLVM versions.

How `not` and `FileCheck` are used is decribed here: [LDC Lit-based testsuite](http://wiki.dlang.org/?title=LDC_Lit-based_testsuite).
How `not` and `FileCheck` are used is decribed here: [LDC Lit-based testsuite](https://wiki.dlang.org/?title=LDC_Lit-based_testsuite).