[
https://issues.apache.org/jira/browse/MESOS-8457?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16598732#comment-16598732
]
Ken Sipe commented on MESOS-8457:
---------------------------------
currently `../configure --disable-werror` is necessary. The total solution to
build on Mac 10.13.6 beyond the current Mesos build details is:
{code:java}
export CFLAGS="-fvisibility-inlines-hidden -Wno-deprecated-declarations" export
CXXFLAGS=$CFLAGS
../configure --disable-werror
make -j <# of cores>
{code}
> Build failure on macOS 10.13 due to the syscall deprecation.
> ------------------------------------------------------------
>
> Key: MESOS-8457
> URL: https://issues.apache.org/jira/browse/MESOS-8457
> Project: Mesos
> Issue Type: Bug
> Components: build
> Reporter: Gilbert Song
> Priority: Major
>
> {noformat}
> In file included from ../../src/appc/spec.cpp:17:
> In file included from ../../3rdparty/stout/include/stout/os.hpp:69:
> In file included from ../../3rdparty/stout/include/stout/os/su.hpp:23:
> ../../3rdparty/stout/include/stout/os/posix/su.hpp:264:9: error: 'syscall' is
> deprecated: first deprecated in macOS 10.12 - syscall(2) is unsupported;
> please switch to a supported interface. For SYS_kdebug_trace use
> kdebug_signpost(). [-Werror,-Wdeprecated-declarations]
> if (::syscall(243, ngroups, _gids, uid.get()) == -1) {
> ^
> /usr/include/unistd.h:745:5: note: 'syscall' has been explicitly marked
> deprecated here
> int syscall(int, ...);
> ^
> 1 error generated.
> make[2]: *** [appc/libmesos_no_3rdparty_la-spec.lo] Error 1
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)