-
Notifications
You must be signed in to change notification settings - Fork 34
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
extractFile() uses hardcoded "ar" executable #31
Comments
Thanks @arrowd, I will fix this today. |
@arrowd, so I added a switch
You want the new |
That did helped a bit. It now uses correct
|
So I need to know a bit more about
after building nodejs (I just added that as a stress test example) I get my node.bc file just fiine. |
I created a simple C program
and compiled it using
Running Could it be that |
OK so it helps that it is a trivial example. Yes on *nix we use
So you could see what happens when you try that manually. Then you can do:
where tempfile just contains the path to the But before you do that though try it with the lastest because I changed a LogDebug to a LogWarning. |
P.S. I am going offline for an hour... |
Ok, this is super strange, but I did chased it down. FreeBSD's For now, would it be possible to add another override to |
Sure, that's on the compile side, so it will have to be (another) environment variable. Shouldn't take long. |
Yay, it works! Thanks for fixing this. Now, the last thing I'd ask is to make a new release, so that we can update our package: https://www.freshports.org/devel/gllvm |
Sure. When I get back from lunch. |
v1.2.5 is live. |
Great, thanks for your prompt support. |
FreeBSD has pretty old
ar
in the base system, so we need to use customar
. However,extractFile()
function inextractor.go
doesn't take in account command line or environment overrides.The text was updated successfully, but these errors were encountered: