-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c3773c
commit afdd53f
Showing
1,050 changed files
with
10,196 additions
and
2,632 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
------------------------------------------------------------------- | ||
Mon Jan 6 01:03:49 UTC 2025 - Marcus Rueckert <[email protected]> | ||
|
||
- consistently set CC/CXX variables | ||
- enable CTL support in the devel project | ||
|
||
------------------------------------------------------------------- | ||
Sat Jan 4 07:16:15 UTC 2025 - Joshua Smith <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
From af436323b9fff366ac50f8a44a045acc0077ca02 Mon Sep 17 00:00:00 2001 | ||
From 0559caa004e4e53d2234f00c932e50e3a721874a Mon Sep 17 00:00:00 2001 | ||
From: VaiTon <[email protected]> | ||
Date: Mon, 18 Nov 2024 15:18:04 +0100 | ||
Subject: [PATCH 1/3] Use /bin/env python3 instead of python3 in scripts | ||
Subject: [PATCH 1/2] Use /bin/env python3 instead of python3 in scripts | ||
|
||
--- | ||
bin/acpp | 2 +- | ||
cmake/syclcc-launcher | 2 +- | ||
2 files changed, 2 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/bin/acpp b/bin/acpp | ||
index 2368348..bab3917 100755 | ||
index ba16ce2..f4bfd67 100755 | ||
--- a/bin/acpp | ||
+++ b/bin/acpp | ||
@@ -1,4 +1,4 @@ | ||
|
@@ -29,5 +29,5 @@ index b56341c..6083201 100755 | |
""" | ||
* | ||
-- | ||
2.47.0 | ||
2.47.1 | ||
|
25 changes: 0 additions & 25 deletions
25
packages/a/adaptivecpp/0002-CMake-acpp-clang-to-MODULE.patch
This file was deleted.
Oops, something went wrong.
16 changes: 8 additions & 8 deletions
16
...ivecpp/0003-Remove-realpath-in-acpp.patch → ...ivecpp/0002-Remove-realpath-in-acpp.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
From 2aeb2359bc3c94c0a2f7abe589f3fcb4a4b3958a Mon Sep 17 00:00:00 2001 | ||
From 8811e2a52977bb5686c32cc97609a5a84c8ae79e Mon Sep 17 00:00:00 2001 | ||
From: VaiTon <[email protected]> | ||
Date: Mon, 18 Nov 2024 15:24:43 +0100 | ||
Subject: [PATCH 3/3] Remove realpath in acpp | ||
Date: Fri, 6 Dec 2024 12:33:52 +0100 | ||
Subject: [PATCH 2/2] Remove realpath in acpp | ||
|
||
--- | ||
bin/acpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/bin/acpp b/bin/acpp | ||
index bab3917..04f51f0 100755 | ||
index f4bfd67..0d930dd 100755 | ||
--- a/bin/acpp | ||
+++ b/bin/acpp | ||
@@ -1935,7 +1935,7 @@ if __name__ == '__main__': | ||
@@ -1948,7 +1948,7 @@ if __name__ == '__main__': | ||
print_error("acpp requires python 3.") | ||
sys.exit(-1) | ||
|
||
- filename = os.path.basename(os.path.realpath(__file__)) | ||
+ filename = os.path.basename(__file__) | ||
+ filename = sys.argv[0] | ||
if filename == "syclcc": | ||
print_warning("syclcc is deprecated; please use acpp instead.") | ||
if filename == "syclcc-clang": | ||
-- | ||
2.47.0 | ||
2.47.1 | ||
|
Oops, something went wrong.