Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
F
FreeBSD ports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
FreeBSD
FreeBSD ports
Commits
2f784ffe
There was an error fetching the commit references. Please try again later.
Commit
2f784ffe
authored
2 years ago
by
Piotr Kubaj
Browse files
Options
Downloads
Patches
Plain Diff
devel/llvm16: fix patching on powerpc64
Remove the upstreamed patch.
parent
0877b50a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
devel/llvm16/Makefile
+0
-4
0 additions, 4 deletions
devel/llvm16/Makefile
devel/llvm16/files/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
+0
-12
0 additions, 12 deletions
...6/files/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
with
0 additions
and
16 deletions
devel/llvm16/Makefile
+
0
−
4
View file @
2f784ffe
...
...
@@ -226,10 +226,6 @@ MLIR_PATTERN= ${MLIR_COMMANDS:S/^/bin./:tW:C/ */|/g}|mlir|libMLIR|obj.MLIRCAP
.
include
<bsd.port.options.mk>
.if
defined(PPC_ABI)
&&
${PPC_ABI}
==
ELFv2
EXTRA_PATCHES
=
${
FILESDIR
}
/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
.
endif
# keep in sync with /usr/src/lib/clang/clang.build.mk
# ----------- start of sync block ------------------
# Armv6 and armv7 uses hard float abi, unless the CPUTYPE has soft in it.
...
...
This diff is collapsed.
Click to expand it.
devel/llvm16/files/extra-patch-clang_lib_Driver_ToolChains_Clang.cpp
deleted
100644 → 0
+
0
−
12
View file @
0877b50a
---
clang
/
lib
/
Driver
/
ToolChains
/
Clang
.
cpp
.
orig
2021
-
08
-
11
19
:
51
:
00.122735000
+
0200
+++
clang
/
lib
/
Driver
/
ToolChains
/
Clang
.
cpp
2021
-
08
-
11
19
:
51
:
24.346107000
+
0200
@@
-
1921
,
8
+
1921
,
7
@@
if
(
T
.
isOSBinFormatELF
())
{
switch
(
getToolChain
().
getArch
())
{
case
llvm
::
Triple
::
ppc64
:
{
-
if
((
T
.
isOSFreeBSD
()
&&
T
.
getOSMajorVersion
()
>=
13
)
||
-
T
.
isOSOpenBSD
()
||
T
.
isMusl
())
+
if
(
T
.
isOSFreeBSD
()
||
T
.
isOSOpenBSD
()
||
T
.
isMusl
())
ABIName
=
"elfv2"
;
else
ABIName
=
"elfv1"
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment