Created
December 27, 2013 17:56
-
-
Save aral/8150400 to your computer and use it in GitHub Desktop.
If you are having trouble building Camlistore on OS X (Mavericks, but also perhaps earlier versions), try this.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If the error you are getting when you type: | |
go run make.go | |
is along the lines of: | |
camlistore.org/third_party/code.google.com/p/rsc/fuse | |
# camlistore.org/third_party/code.google.com/p/rsc/fuse | |
clang: error: argument unused during compilation: '-fno-eliminate-unused-debug-types' | |
Error building main binaries: exit status 2 | |
exit status 1 | |
Then try the following: | |
export CC=clang | |
This fixed it for me. | |
Solution courtesy of Brad Fitzpatrick (@bradfitz) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment