Skip to content

Commit 1a7a907

Browse files
committed
Adjust links to point to GitHub project
1 parent de88c48 commit 1a7a907

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

arm-software/embedded/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ if(LLVM_TOOLCHAIN_LIBRARY_OVERLAY_INSTALL)
186186
endif()
187187
endif()
188188

189-
set(BUG_REPORT_URL "https://gitlab.arm.com/toolchains/arm-toolchain/-/issues" CACHE STRING "")
189+
set(BUG_REPORT_URL "https://github.com/arm/arm-toolchain/issues" CACHE STRING "")
190190
set(LLVM_DISTRIBUTION_COMPONENTS
191191
clang-resource-headers
192192
clang
@@ -374,7 +374,7 @@ project(
374374
ArmToolchainForEmbedded
375375
VERSION ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PATCH}
376376
DESCRIPTION "Arm Toolchain for Embedded"
377-
HOMEPAGE_URL "https://gitlab.arm.com/toolchains/arm-toolchain"
377+
HOMEPAGE_URL "https://github.com/arm/arm-toolchain"
378378
)
379379

380380
# Set package name for shorter archive file name

arm-software/embedded/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ The Windows version is built on Windows Server 2019 and lightly tested on Window
7676

7777
Building on macOS is functional for x86_64 and Apple Silicon.
7878

79-
[Binary packages](https://gitlab.arm.com/toolchains/arm-toolchain/-/releases)
79+
[Binary packages](https://github.com/arm/arm-toolchain/-/releases)
8080
are provided for major LLVM releases for Linux and Windows.
8181

8282
## Getting started
8383

8484
Download a release of the toolchain for your platform from [Github
85-
releases](https://gitlab.arm.com/toolchains/arm-toolchain/-/releases)
85+
releases](https://github.com/arm/arm-toolchain/-/releases)
8686
and extract the archive into an arbitrary directory.
8787

8888
### Pre-requisite for using toolchain on Windows
@@ -201,7 +201,7 @@ guide for detailed instructions.
201201

202202
## Providing feedback and reporting issues
203203

204-
Please raise an issue via [Github issues](https://gitlab.arm.com/toolchains/arm-toolchain/-/issues).
204+
Please raise an issue via [Github issues](https://github.com/arm/arm-toolchain/issues).
205205

206206
## Contributions and Pull Requests
207207

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Arm Toolchain for Embedded ${armtoolchain_VERSION}
22

33
Sources:
4-
* arm-toolchain: https://gitlab.arm.com/toolchains/arm-toolchain (commit ${armtoolchain_COMMIT})
4+
* arm-toolchain: https://github.com/arm/arm-toolchain (commit ${armtoolchain_COMMIT})
55
* Picolibc: https://github.com/picolibc/picolibc.git (commit ${picolibc_COMMIT})

arm-software/embedded/docs/building-from-source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ The same build directory can be used for both native and MinGW toolchains.
162162

163163
## Divergences from upstream
164164

165-
See [patches](https://gitlab.arm.com/toolchains/arm-toolchain/-/blob/arm-software/embedded/patches)
165+
See [patches](https://github.com/arm/arm-toolchain/-/blob/arm-software/embedded/patches)
166166
directory for the current set of differences from upstream.
167167

168168
The patches for llvm-project are split between two folders, llvm-project and

arm-software/embedded/docs/contributing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ For guidance on how to contribute to the upstream projects see:
2626
### Report an issue
2727

2828
Please create a Github issue in the *Arm Toolchain for Embedded* project
29-
[Issues](https://gitlab.arm.com/toolchains/arm-toolchain/-/issues)
29+
[Issues](https://github.com/arm/arm-toolchain/issues)
3030
list and label is as a `bug`.
3131

3232
### Submit a fix
@@ -38,7 +38,7 @@ _How to submit a change_ section below.
3838

3939
For a bigger change, please create an issue in the
4040
*Arm Toolchain for Embedded* project
41-
[Issues](https://gitlab.arm.com/toolchains/arm-toolchain/-/issues)
41+
[Issues](https://github.com/arm/arm-toolchain/issues)
4242
list and label is as an `rfc` (Request for Comments) to initiate the discussion
4343
first, before submitting the change itself.
4444

@@ -48,7 +48,7 @@ the purpose of the change and the key design options, proposed decisions.
4848
## How to submit a change
4949

5050
Contributions are accepted under the
51-
[Apache License 2.0](https://gitlab.arm.com/toolchains/arm-toolchain/-/blob/arm-software/embedded/LICENSE.txt).
51+
[Apache License 2.0](https://github.com/arm/arm-toolchain/-/blob/arm-software/embedded/LICENSE.txt).
5252
Only submit contributions where you have authored all of the code.
5353

5454
### Pull request

arm-software/embedded/docs/migrating.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ particularly C and C++ standards compliance, during build time.
2020
Arm Toolchain for Embedded provides support for multiple sanitizers
2121
and memory safety features to also catch typical issues at runtime during testing,
2222
see the [Clang documentation](https://clang.llvm.org/docs/index.html)
23-
and [samples](https://gitlab.arm.com/toolchains/arm-toolchain/-/blob/arm-software/embedded/samples/src).
23+
and [samples](https://github.com/arm/arm-toolchain/-/blob/arm-software/embedded/samples/src).
2424

2525
Arm Toolchain for Embedded provides superior performance when targeting the
2626
Armv8-M or later architecture, including the
@@ -83,7 +83,7 @@ For example, GNU and LLVM compilers differ in:
8383
## Multilib support
8484

8585
LLVM toolchain for Arm provides multilib support similar to the GNU toolchain,
86-
see _Using the toolchain_ section in the [README](https://gitlab.arm.com/toolchains/arm-toolchain/-/blob/arm-software/embedded/README.md#using-the-toolchain),
86+
see _Using the toolchain_ section in the [README](https://github.com/arm/arm-toolchain/-/blob/arm-software/embedded/README.md#using-the-toolchain),
8787
however uses different command line options to control selection of semihosting.
8888

8989
|Use case|GNU options|LLVM options|
@@ -121,5 +121,5 @@ section and referenced by the `__interrupt_vector` symbol.
121121
See [Picolibc and Operating Systems](https://github.com/picolibc/picolibc/blob/main/doc/os.md)
122122
for the details on redirecting `stdin`, `stdout` and `stderr`.
123123

124-
The `baremetal-uart` [sample](https://gitlab.arm.com/toolchains/arm-toolchain/-/blob/arm-software/embedded/samples/src/baremetal-uart)
124+
The `baremetal-uart` [sample](https://github.com/arm/arm-toolchain/-/blob/arm-software/embedded/samples/src/baremetal-uart)
125125
provides a basic code example for redirecting `stdout`.

0 commit comments

Comments
 (0)