mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[GH-ISSUE #468] Not able to find _clock_gettime symbol while mounting s3 bucket #256
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#256
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 @ssahu on GitHub (Sep 16, 2016).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/468
Anyone got this issue on trying to mount the s3 bucket like below?
s3fs -f -d s3_sync local_folder -o passwd_file=.passwd-s3fsI upgraded to Xcode 8 yesterday, maybe that caused it?
@ggtakec commented on GitHub (Sep 19, 2016):
@ssahu
Do you use latest codes in master(or macosx) branch?
Latest codes check clock_gettime function at configure and prepare an alternative function.
https://github.com/s3fs-fuse/s3fs-fuse/blob/macosx/src/cache.cpp#L59-L70
Please check you code base and try to rebuld all(start to run autogen.sh).
Thanks in advance for your assistance.
@jbarlow83 commented on GitHub (Nov 23, 2016):
Same error here. macOS 10.11.6, Xcode 8.1, v1.80
The homebrew script runs
./autogen.shand builds v1.80 from source, but this error still occurs.HEAD version fails with the same error.
@jbarlow83 commented on GitHub (Nov 23, 2016):
Compiled HEAD from source and it built a working version, so it seems like the problem is in the Homebrew script.
@jbarlow83 commented on GitHub (Dec 2, 2016):
cache.cpp somehow is expecting clock_gettime to be an external symbol so it overlooks the static local copy provided in the macos case.
See the homebrew issue where renaming clock_gettime in that module is sufficient to fix. (This would break non-macOS however).
@ggtakec commented on GitHub (Dec 4, 2016):
@jbarlow83 I'm sorry for my late reply.
I changed clock_gettime function name for not conflicting same function in library.
I merged codes to master and macosx branches, please try to use it.
Thanks very much for your help.