Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
199b341a
Commit
199b341a
authored
Jan 31, 2017
by
4ast
Committed by
GitHub
Jan 31, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #927 from rnav/powerpc-fixes
powerpc: update the build triplet
parents
727248b4
6267b291
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/cc/frontends/clang/loader.cc
src/cc/frontends/clang/loader.cc
+5
-1
No files found.
src/cc/frontends/clang/loader.cc
View file @
199b341a
...
...
@@ -167,7 +167,11 @@ int ClangLoader::parse(unique_ptr<llvm::Module> *mod, unique_ptr<vector<TableDes
// set up the command line argument wrapper
#if defined(__powerpc64__)
driver
::
Driver
drv
(
""
,
"ppc64le-unknown-linux-gnu"
,
diags
);
#if defined(_CALL_ELF) && _CALL_ELF == 2
driver
::
Driver
drv
(
""
,
"powerpc64le-unknown-linux-gnu"
,
diags
);
#else
driver
::
Driver
drv
(
""
,
"powerpc64-unknown-linux-gnu"
,
diags
);
#endif
#elif defined(__aarch64__)
driver
::
Driver
drv
(
""
,
"aarch64-unknown-linux-gnu"
,
diags
);
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment