Skip to content
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 stdout+stderr redirection in OSX #41

Closed
bcumming opened this issue Mar 20, 2019 · 2 comments
Closed

Fix stdout+stderr redirection in OSX #41

bcumming opened this issue Mar 20, 2019 · 2 comments
Assignees
Labels
bug Something isn't working macosx Mac OS X specific

Comments

@bcumming
Copy link
Member

Replace

git checkout "$repo" &>> "$out"

with

git checkout "$repo" >> "$out" 2>&1

Because OSX (BSD) doesn't understand the first form.

@bcumming bcumming added the bug Something isn't working label Mar 20, 2019
@bcumming bcumming self-assigned this Mar 20, 2019
@bcumming
Copy link
Member Author

bcumming commented Mar 22, 2019

Full OSX support is taking longer than hoped, because of the many little differences between Posix implementations on OS X and Linux.
Current status

  • Arbor: compiles and passes all benchmarks+tests.
  • Neuron: compiles, but installing the Python bindings doesn't quite work.
  • CoreNeuron: haven't started. I expect some surprises, because CoreNeuron.

@halfflat
Copy link
Contributor

Redirection fixes included in #47.
Neuron issue now #48.

@halfflat halfflat added the macosx Mac OS X specific label Mar 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working macosx Mac OS X specific
Projects
None yet
Development

No branches or pull requests

2 participants