You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to OpenStartracker
Hi Y'all,
I've been trying to get this to compile natively on a Mac (github hash a0789aa5dd79cb481713a8ebdc4f69b0fa20fb97 version on master). Here's some of the issues and partial fixes that I've run into:
- 'gcc' command defaults to using clang on Mac because Apply tries to force clang on everyone.
Fix: Replaced instances of g++ and gcc with gcc-8 and g++-8 to force it to use my Homebrew version of gcc/g++ that's installed
Ian DesJardin
unread,
May 19, 2018, 12:22:08 PM5/19/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
- Different python version used to compile than in runtime
Fix: Pending
Ian DesJardin
unread,
Jul 7, 2018, 4:02:34 PM7/7/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to OpenStartracker
- Different python version used to compile than in runtime
Compiling with gcc and running with python installed via Homebrew (https://brew.sh/) is easiest. In unit_tests.sh the python executable is hardcoded to /usr/bin/python. Changed to /usr/local/bin/python (Homebrew installation) and all appears to work.
This probably brings up the point that python executable path shouldn't be hardcoded. Andrew - what's your thoughts on how we should handle being flexible about this? (I'd be happy to code up the solution)