-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix inlining demo after Fuchsia toolchain updates #252
base: main
Are you sure you want to change the base?
Fix inlining demo after Fuchsia toolchain updates #252
Conversation
Fuchsia recently updated their toolchain to include llvm-debuginfod which needs an additional dependency, cpp-httplib in order to build LLVM properly. This patch adds instructions on how to build this dependency so that the demo still works.
Waiting on yhirose/cpp-httplib#1580. As far as I can tell since |
@mtrofin @petrhosek Do one of you mind giving this a review? The mentioned prerequisite patch has landed now. |
Nevermind. Looks like this might still need some more work. Currently failing on building the
|
We're currently in an interim state where we're bringing up Fuchsia on RISC-V but don't yet include RISC-V sysroot in our SDK because it's not ready yet. To workaround this, we have a script that can generate an artificial SDK stubs for RISC-V which is needed here. To use it, you'll need need the following invocation on line 105:
|
@@ -49,6 +49,30 @@ export LLVM_SRCDIR=~/llvm-project | |||
export LLVM_INSTALLDIR=~/llvm-install | |||
``` | |||
|
|||
### LLVM Dependencies | |||
|
|||
The LLVM toolchain that Fuchsia uses has a couple additionaly dependencies, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The LLVM toolchain that Fuchsia uses has a couple additionaly dependencies, | |
The LLVM toolchain that Fuchsia uses has a couple of additional dependencies, |
Fuchsia recently updated their toolchain to include llvm-debuginfod which needs an additional dependency, cpp-httplib in order to build LLVM properly. This patch adds instructions on how to build this dependency so that the demo still works.