Conversation

I bought an M1 mini last fall. Not a single problem with homebrew, Python, pyenv, or anything else. The only issue I had was I accidentally installed the wrong Go and couldn’t run the debugger. I think it must mostly be worked out by now.
1
Thank you for trying! Is it a problem I can solve? I imagine the problem is there's no ocaml compiler for arm?
1
1
I think the error came from clang? It was arm-related. I’ll try again tomorrow and DM you. Really interested in austral. I don’t know of a relatively beginner-friendly systems language with linear types, but austral shows promise there!
1
2
Thanks! Feel free to open an issue. It might be a general Mac OS thing that has also reported, about Mac OS using a non standard symbol for stderr.
1
2
@longtallcity I have an M1 Pro MBP. Austral itself built fine, but ran into trouble compiling its cpp output. There's a simple fix. In the compile() function in run-test.sh, I just added `sed -i '' 's/stderr/__stderrp/g' code.cpp` b/t austral and cpp build steps
1
2
OS X uses the name __stderrp as the stderr file descriptor. With that little sed command you can take the cpp output and build it happily with any C++ compiler. I've used both clang and g++ on austral output with no trouble
2
3
Show replies