Compare commits

...

4 Commits

Author SHA1 Message Date
409aa4ffb4
Update LLVM to 18.1.8
All checks were successful
Builds / XTChain (push) Successful in 55m26s
2024-07-09 23:18:03 +02:00
b951abd511
Update Discord invitation link
All checks were successful
Builds / XTChain (push) Successful in 54m0s
2024-06-15 22:35:59 +02:00
2171eaeed6
Fix incompatible pointer type error
All checks were successful
Builds / XTChain (push) Successful in 54m44s
2024-06-07 08:28:40 +02:00
7075a9ad58
Update LLVM to 18.1.7
Some checks failed
Builds / XTChain (push) Failing after 12s
2024-06-07 08:10:31 +02:00
3 changed files with 6 additions and 6 deletions

View File

@ -14,8 +14,8 @@
<a href="https://github.com/sponsors/xt-sys/">
<img alt="Sponsors" src="https://img.shields.io/badge/Sponsor-%E2%9D%A4-red?logo=GitHub">
</a>
<a href="https://discord.com/invite/3zgjQDVmAe">
<img alt="Discord" src="https://img.shields.io/discord/723186294540206100?label=Chat">
<a href="https://discord.com/invite/zBzJ5qMGX7">
<img alt="Discord" src="https://img.shields.io/badge/Chat-Join%20Discord-success">
</a>
</p>

View File

@ -23,7 +23,7 @@ CMAKEVCS="https://gitlab.kitware.com/cmake/cmake.git"
# LLVM Settings
LLVMDIR="${SRCDIR}/llvm"
LLVMTAG="llvmorg-18.1.5"
LLVMTAG="llvmorg-18.1.8"
LLVMVCS="https://github.com/llvm/llvm-project.git"
# Make Settings

View File

@ -169,9 +169,9 @@ void check_num_args(int arg,
int main(int argc,
char* argv[])
{
const char *dir;
const char *basename;
const char *target;
char *dir;
char *basename;
char *target;
split_argv(argv[0], &dir, &basename, &target, NULL);