This repository has been archived by the owner on Dec 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For riscv64 architecture adaptation, solve the problem of riscv64 architecture construction failure
- Loading branch information
Showing
3,141 changed files
with
566,459 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
# 基于那个配置文件 https://clang.llvm.org/docs/ClangFormatStyleOptions.html | ||
BasedOnStyle: WebKit | ||
# 访问说明符的偏移(public private) | ||
AccessModifierOffset: -4 | ||
# 括号之后,水平对齐参数: Align DontAlign AlwaysBreak。 | ||
AlignAfterOpenBracket: Align | ||
#AlignConsecutiveBitFields: false | ||
# 连续的赋值时,对齐所有的等号 | ||
AlignConsecutiveAssignments: false | ||
# 连续声明时,对齐所有声明的变量名 | ||
AlignConsecutiveDeclarations: false | ||
#AlignConsecutiveMacros: false | ||
AlignEscapedNewlines: DontAlign | ||
# 水平对齐二元和三元表达式的操作数 | ||
AlignOperands: true | ||
# 对齐连续的尾随的注释 | ||
AlignTrailingComments: false | ||
#AllowAllArgumentsOnNextLine: false | ||
#AllowAllConstructorInitializersOnNextLine: false | ||
# 允许函数声明的所有参数在放在下一行 | ||
AllowAllParametersOfDeclarationOnNextLine: false | ||
# 允许短的块放在同一行 | ||
AllowShortBlocksOnASingleLine: true | ||
# 允许短的case标签放在同一行 | ||
AllowShortCaseLabelsOnASingleLine: false | ||
#AllowShortEnumsOnASingleLine: false | ||
# 允许短的函数放在同一行: None, InlineOnly(定义在类中), Empty(空函数), Inline(定义在类中,空函数), All | ||
AllowShortFunctionsOnASingleLine: InlineOnly | ||
# 是否允许短if单行 If true, if (a) return; 可以放到同一行 | ||
AllowShortIfStatementsOnASingleLine: false | ||
#AllowShortLambdasOnASingleLine: Inline | ||
# 允许短的循环保持在同一行 | ||
AllowShortLoopsOnASingleLine: false | ||
# 总是在定义返回类型后换行(deprecated) | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: false | ||
AlwaysBreakTemplateDeclarations: Yes | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BreakBeforeBraces: Custom | ||
BraceWrapping: | ||
# AfterCaseLabel: false | ||
AfterClass: true | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: true | ||
AfterNamespace: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
AfterExternBlock: false | ||
BeforeCatch: false | ||
BeforeElse: false | ||
# BeforeLambdaBody: false | ||
# BeforeWhile: false | ||
SplitEmptyFunction: true | ||
SplitEmptyRecord: true | ||
SplitEmptyNamespace: true | ||
|
||
BreakBeforeBinaryOperators: NonAssignment | ||
BreakBeforeTernaryOperators: true | ||
#在构造函数初始化时按逗号断行,并以冒号对齐 | ||
BreakConstructorInitializers: BeforeComma | ||
BreakInheritanceList: BeforeComma | ||
BreakStringLiterals: false | ||
# 每行字符的限制,0表示没有限制 | ||
ColumnLimit: 0 | ||
# 描述具有特殊意义的注释的正则表达式,它不应该被分割为多行或以其它方式改变 | ||
# CommentPragmas: '^ IWYU pragma:' | ||
# 语言: None Cpp Java Objc Protp | ||
CompactNamespaces: false | ||
Cpp11BracedListStyle: true | ||
#DeriveLineEnding: \n | ||
DerivePointerAlignment: false | ||
FixNamespaceComments: true | ||
ForEachMacros: ["foreach", "Q_FOREACH"] | ||
IncludeBlocks: Regroup | ||
IncludeCategories: | ||
- Regex: '^"' | ||
Priority: 1 | ||
- Regex: '^["<]D' | ||
Priority: 2 | ||
- Regex: '^<Q' | ||
Priority: 3 | ||
- Regex: '^<' | ||
Priority: 4 | ||
- Regex: '\.h>$' | ||
Priority: 5 | ||
- Regex: '^"moc_' | ||
Priority: 99 | ||
- Regex: '\.moc"' | ||
Priority: 99 | ||
|
||
# 缩进case 标签 | ||
IndentCaseLabels: false | ||
#IndentExternBlock: NoIndent | ||
#IndentCaseBlocks: false | ||
#IndentGotoLabels: false | ||
IndentPPDirectives: None | ||
#缩进宽度 | ||
IndentWidth: 4 | ||
IndentWrappedFunctionNames: false | ||
#InsertTrailingCommas: None | ||
#在block从空行开始 | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
Language: Cpp | ||
# 连续的空行保留几行 | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
#指针的*的挨着哪边 | ||
PointerAlignment: Right | ||
# 允许排序#include, 造成编译错误 | ||
SortIncludes: false | ||
SortUsingDeclarations: false | ||
#括号后添加空格 | ||
SpaceAfterCStyleCast: false | ||
#SpaceAfterLogicalNot: false | ||
SpaceAfterTemplateKeyword: false | ||
#等号两边的空格 | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeCpp11BracedList: true | ||
SpaceBeforeCtorInitializerColon: false | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: true | ||
#SpaceBeforeSquareBrackets: false | ||
#SpaceInEmptyBlock: true | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 1 | ||
SpacesInAngles: false | ||
SpacesInCStyleCastParentheses: false | ||
#SpacesInConditionalStatement: false | ||
# 容器类的空格 例如 OC的字典 | ||
SpacesInContainerLiterals: false | ||
# 小括号两边添加空格 | ||
SpacesInParentheses: false | ||
# 中括号两边空格 [] | ||
SpacesInSquareBrackets: false | ||
#StatementMacros: ["Q_UNUSED"] | ||
#tab键盘的宽度 | ||
TabWidth: 4 | ||
UseTab: Never |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[clog] | ||
repository = "https://github.com/linuxdeepin/dde-file-manager" | ||
changelog = "CHANGELOG.md" | ||
from-latest-tag = true |
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 |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
.qmake.stash | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
Makefile | ||
Makefile.* | ||
*.Debug | ||
*.Release | ||
*.rc | ||
*.zip | ||
|
||
debug | ||
release | ||
build* | ||
|
||
*.pro.user | ||
*.pro.user* | ||
*.qm | ||
*.autosave | ||
|
||
vendor/include/* | ||
vendor/lib/* | ||
|
||
dde-sharefiles/lib/* | ||
dde-sharefiles/tmp/* | ||
dde-sharefiles/log/* | ||
|
||
NUL | ||
|
||
# Documents | ||
doc/html/* | ||
|
||
tools | ||
|
||
dde-file-manager-lib/test_shutil/fileutils/fileutil_t1.txt | ||
|
||
dde-file-manager-lib/test_shutil/fileutils/fileutil_t2.txt | ||
|
||
dde-file-manager-lib/test_shutil/fileutils/jsonArry.json | ||
|
||
dde-file-manager-lib/test_shutil/fileutils/jsonObj.json | ||
|
||
dde-file-manager-lib/test_shutil/fileutils/sub/fileutil_file_new1.txt | ||
|
||
dde-file-manager-lib/test_shutil/new1.txt | ||
|
||
dde-file-manager-lib/test_shutil/new2.txt | ||
|
||
dde-file-manager-lib/test_shutil/property/oneProperty.pro |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
include: | ||
- remote: 'https://gitlab.deepin.io/dev-tools/letmeci/raw/master/gitlab-ci/dde.yml' | ||
|
||
variables: | ||
CPPCHECK: "true" | ||
CODESPELL: "true" |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
debian/patches |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
series |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
2 |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"type": "homebrew", | ||
"3rdparty": [], | ||
"ignore": ["debian", "translations", "*.lai", "*.la", "*.a", "*.theme", "*.json", "*.pri", "*.desktop", "*.out", "*.app", "Makefile", "Makefile.*", "*.Debug", "*.Release", "*.rc", "*.qrc", "*.zip", "*.qm", "*.user", ".vscode", "*.png", "*.svg", "*.ts", "*.xml", "*.service", "dde-file-manager-pkexec", "*.policy", "file-manager-daemon auto", "*.mimetype", "*.sh", "*.conf", "*.js", ".readme", "*.doc", "*.xls", "*.ppt", "*.txt", "*.qss", "*.ui", "*.mov", "*.qdocconf", "*.eot", "*.ttf", "*.woff", "*.css", "*.qdoc", "*.qdocinc", "*.md", "*.toml", "*.gitignore", "*.yml", "LICENCE"], | ||
"license": ["GPLv3"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
top_srcdir=$$PWD | ||
top_builddir=$$shadowed($$PWD) | ||
|
||
ARCH = $$QMAKE_HOST.arch |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[main] | ||
host = https://www.transifex.com | ||
minimum_perc = 80 | ||
mode = developer | ||
|
||
[deepin-file-manager.dde-file-manager] | ||
file_filter = src/dde-file-manager/translations/dde-file-manager-app_<lang>.ts | ||
source_file = src/dde-file-manager/translations/dde-file-manager-app.ts | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-file-manager-lib] | ||
file_filter = src/dde-file-manager-lib/translations/dde-file-manager_<lang>.ts | ||
source_file = src/dde-file-manager-lib/translations/dde-file-manager.ts | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-disk-mount-plugin] | ||
file_filter = src/dde-dock-plugins/disk-mount/translations/dde-disk-mount-plugin_<lang>.ts | ||
source_file = src/dde-dock-plugins/disk-mount/translations/dde-disk-mount-plugin.ts | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-desktop] | ||
file_filter = src/dde-desktop/translations/dde-desktop_<lang>.ts | ||
source_file = src/dde-desktop/translations/dde-desktop.ts | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-file-manager-desktop] | ||
file_filter = src/dde-file-manager/translations/dde-file-manager-desktop/desktop_<lang>.ts | ||
source_file = src/dde-file-manager/translations/dde-file-manager-desktop/desktop.ts | ||
preTranslate_file = src/dde-file-manager/dde-file-manager.desktop | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-computer-desktop] | ||
file_filter = src/dde-desktop/translations/dde-computer-desktop/desktop_<lang>.ts | ||
source_file = src/dde-desktop/translations/dde-computer-desktop/desktop.ts | ||
preTranslate_file = src/dde-desktop/data/applications/dde-computer.desktop | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-trash-desktop] | ||
file_filter = src/dde-desktop/translations/dde-trash-desktop/desktop_<lang>.ts | ||
source_file = src/dde-desktop/translations/dde-trash-desktop/desktop.ts | ||
preTranslate_file = src/dde-desktop/data/applications/dde-trash.desktop | ||
source_lang = en | ||
type = QT | ||
|
||
[deepin-file-manager.dde-home-desktop] | ||
file_filter = src/dde-desktop/translations/dde-home-desktop/desktop_<lang>.ts | ||
source_file = src/dde-desktop/translations/dde-home-desktop/desktop.ts | ||
preTranslate_file = src/dde-desktop/data/applications/dde-home.desktop | ||
source_lang = en | ||
type = QT |
14 changes: 14 additions & 0 deletions
14
dde-file-manager-5.5.3/3rdparty/accessibility/accessibility-suite.pri
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#------------------------------------------------- | ||
# | ||
# Project created by QtCreator 2015-06-24T09:14:17 | ||
# | ||
#------------------------------------------------- | ||
|
||
INCLUDEPATH += $$PWD | ||
|
||
|
||
HEADERS += \ | ||
$$PWD/acframefunctions.h \ | ||
|
||
SOURCES += \ | ||
|
Oops, something went wrong.