mirror of
https://github.com/ksherlock/profuse.git
synced 2026-02-12 13:44:53 +00:00
Build errors #1
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lifepillar on GitHub (Aug 15, 2016).
I am trying to build this on El Capitan. The latest release (v2_2010-03-18) fails early with:
The master also fails soon:
I can get past this by defining
CPP0X, but then I get a different error:@ksherlock commented on GitHub (Aug 15, 2016):
I've pushed an update to build with modern compilers. It was originally written before c++11 was official but some features were available in gcc's libstdc++ tr1 but tr1 no longer exists with clang and libcxx.
@lifepillar commented on GitHub (Aug 16, 2016):
Thanks, that fixes the original problem. I have to replace all includes such as
#include <fuse/fuse_opt.h>with#include <fuse_opt.h>to build without errors. I am building against FUSE for OS X v2.8.3.@ksherlock commented on GitHub (Aug 16, 2016):
Thanks! I have updated it for the updated include locations.
@lifepillar commented on GitHub (Aug 17, 2016):
Thanks! Any plan to create a new release?
@ksherlock commented on GitHub (Aug 17, 2016):
I created a new release.
@lifepillar commented on GitHub (Aug 17, 2016):
Thanks, it works just fine!