Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LLVM project
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 JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Panda
LLVM project
Commits
418ecaba
Commit
418ecaba
authored
3 years ago
by
Argyrios Kyrtzidis
Browse files
Options
Downloads
Patches
Plain Diff
[Support/BLAKE3] Temporarily disable building the assembly files to get the builders back to green
parent
6bb836af
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
llvm/lib/Support/BLAKE3/CMakeLists.txt
+3
-2
3 additions, 2 deletions
llvm/lib/Support/BLAKE3/CMakeLists.txt
llvm/lib/Support/CMakeLists.txt
+3
-0
3 additions, 0 deletions
llvm/lib/Support/CMakeLists.txt
with
6 additions
and
2 deletions
llvm/lib/Support/BLAKE3/CMakeLists.txt
+
3
−
2
View file @
418ecaba
...
...
@@ -11,7 +11,8 @@ set(LLVM_BLAKE3_FILES
# version using C intrinsics. The assembly versions are generally
# preferred. They perform better, they perform more consistently across
# different compilers, and they build more quickly."
if
(
CMAKE_SYSTEM_PROCESSOR MATCHES
"^(x86_64|AMD64)$"
)
# FIXME: Figure out what is wrong with the builders when using the assembly files.
if
(
FALSE
)
#CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64|AMD64)$")
if
(
MSVC
)
list
(
APPEND LLVM_BLAKE3_FILES
BLAKE3/blake3_sse2_x86-64_windows_msvc.asm
...
...
@@ -36,7 +37,7 @@ if (CMAKE_SYSTEM_PROCESSOR MATCHES "^(x86_64|AMD64)$")
endif
()
endif
()
if
(
CMAKE_SYSTEM_PROCESSOR MATCHES
"arm"
)
if
(
CMAKE_SYSTEM_PROCESSOR MATCHES
"
^(
arm
|aarch)
"
)
list
(
APPEND LLVM_BLAKE3_FILES
BLAKE3/blake3_neon.c
)
...
...
This diff is collapsed.
Click to expand it.
llvm/lib/Support/CMakeLists.txt
+
3
−
0
View file @
418ecaba
...
...
@@ -106,6 +106,9 @@ add_subdirectory(BLAKE3)
if
(
MSVC
)
enable_language
(
ASM_MASM
)
endif
()
# FIXME: Figure out what is wrong with the builders when using the assembly files.
add_definitions
(
-DBLAKE3_NO_AVX512 -DBLAKE3_NO_AVX2 -DBLAKE3_NO_SSE41 -DBLAKE3_NO_SSE2
)
add_llvm_component_library
(
LLVMSupport
AArch64TargetParser.cpp
...
...
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