Chia-Network / chia-blockchain

Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet)
Apache License 2.0
10.82k stars 2.03k forks source link

sh install.sh fails at setup.py for chiapos #104

Closed wrumble closed 4 years ago

wrumble commented 4 years ago

I get the following after running sh install.sh in chia-blockchain folder. Running mojave 10.14.6. and Xcode 11.3.1

Running setup.py develop for chiapos
    ERROR: Command errored out with exit status 1:
     command: /Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"'; __file__='"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps
         cwd: /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/
    Complete output (626 lines):
    running develop
    running egg_info
    writing chiapos.egg-info/PKG-INFO
    writing dependency_links to chiapos.egg-info/dependency_links.txt
    writing requirements to chiapos.egg-info/requires.txt
    writing top-level names to chiapos.egg-info/top_level.txt
    writing manifest file 'chiapos.egg-info/SOURCES.txt'
    running build_ext
    -- The C compiler identification is AppleClang 11.0.0.11000033
    -- The CXX compiler identification is AppleClang 11.0.0.11000033
    -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
    -- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -- works
    -- Detecting C compiler ABI info
    -- Detecting C compiler ABI info - done
    -- Detecting C compile features
    -- Detecting C compile features - done
    -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
    -- Check for working CXX compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -- works
    -- Detecting CXX compiler ABI info
    -- Detecting CXX compiler ABI info - done
    -- Detecting CXX compile features
    -- Detecting CXX compile features - done
    -- Found PythonInterp: /Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/bin/python3 (found version "3.8.1")
    -- Found PythonLibs: /Library/Frameworks/Python.framework/Versions/3.8/lib/libpython3.8.dylib
    -- pybind11 v2.4.dev4
    -- Performing Test HAS_FLTO
    -- Performing Test HAS_FLTO - Success
    -- LTO enabled
    -- AESNI Enabled
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/build/temp.macosx-10.9-x86_64-3.8
    Scanning dependencies of target fse
    [ 14%] Building C object CMakeFiles/fse.dir/lib/FiniteStateEntropy/lib/fse_compress.c.o
    [ 14%] Building C object CMakeFiles/fse.dir/lib/FiniteStateEntropy/lib/entropy_common.c.o
    [ 21%] Building C object CMakeFiles/fse.dir/lib/FiniteStateEntropy/lib/fse_decompress.c.o
    [ 28%] Building C object CMakeFiles/fse.dir/lib/FiniteStateEntropy/lib/hist.c.o
    [ 35%] Linking C static library libfse.a
    [ 35%] Built target fse
    Scanning dependencies of target HellmanAttacks
    Scanning dependencies of target ProofOfSpace
    Scanning dependencies of target RunTests
    [ 42%] Building CXX object CMakeFiles/ProofOfSpace.dir/src/cli.cpp.o
    [ 50%] Building CXX object CMakeFiles/HellmanAttacks.dir/src/cli.cpp.o
    [ 64%] Building CXX object CMakeFiles/RunTests.dir/tests/test-main.cpp.o
    [ 64%] Building CXX object CMakeFiles/RunTests.dir/tests/test.cpp.o
    Scanning dependencies of target chiapos
    [ 71%] Building CXX object CMakeFiles/chiapos.dir/python-bindings/chiapos.cpp.o
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    20 errors generated.
    make[2]: *** [CMakeFiles/RunTests.dir/tests/test.cpp.o] Error 1
    make[2]: *** Waiting for unfinished jobs....
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    20 errors generated.
    make[2]: *** [CMakeFiles/HellmanAttacks.dir/src/cli.cpp.o] Error 1
    make[1]: *** [CMakeFiles/HellmanAttacks.dir/all] Error 2
    make[1]: *** Waiting for unfinished jobs....
    20 errors generated.
    make[2]: *** [CMakeFiles/ProofOfSpace.dir/src/cli.cpp.o] Error 1
    make[1]: *** [CMakeFiles/ProofOfSpace.dir/all] Error 2
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    20 errors generated.
    make[2]: *** [CMakeFiles/chiapos.dir/python-bindings/chiapos.cpp.o] Error 1
    make[1]: *** [CMakeFiles/chiapos.dir/all] Error 2
    make[1]: *** [CMakeFiles/RunTests.dir/all] Error 2
    make: *** [all] Error 2
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py", line 67, in <module>
        setup(
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/lib/python3.8/site-packages/setuptools/__init__.py", line 145, in setup
        return distutils.core.setup(**attrs)
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/core.py", line 148, in setup
        dist.run_commands()
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 966, in run_commands
        self.run_command(cmd)
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/lib/python3.8/site-packages/setuptools/command/develop.py", line 38, in run
        self.install_for_development()
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/lib/python3.8/site-packages/setuptools/command/develop.py", line 140, in install_for_development
        self.run_command('build_ext')
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py", line 35, in run
        self.build_extension(ext)
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py", line 63, in build_extension
        subprocess.check_call(['cmake', '--build', '.'] +
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/subprocess.py", line 364, in check_call
        raise CalledProcessError(retcode, cmd)
    subprocess.CalledProcessError: Command '['cmake', '--build', '.', '--config', 'Release', '--', '-j', '6']' returned non-zero exit status 2.
    ----------------------------------------
ERROR: Command errored out with exit status 1: /Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"'; __file__='"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps Check the logs for full command output.
hoffmang9 commented 4 years ago

We are going to look at working around this issue for MacOS 10.14 but it may be a few weeks. You can see that card here - https://trello.com/c/YyysWxyf

The short term workaround is Catalina but we do understand there are downsides to that.

wrumble commented 4 years ago

So i just upgraded to catalina(because it was about time) and get the same errors.

hoffmang9 commented 4 years ago

What is your xcode version? xcodebuild -version

hoffmang9 commented 4 years ago

Thinking about this further, the .venv may have pinned itself to your old compiler version. I'd rm rm -rf chia-blockchain/.venv and try again

wrumble commented 4 years ago

xcode build version is Xcode 11.3.1 Build version 11C504

wrumble commented 4 years ago

trued rm -rf chia-blockchain/.venv but get

Requirement already satisfied: wheel in ./.venv/lib/python3.8/site-packages (0.34.2)
WARNING: You are using pip version 19.2.3, however version 20.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Obtaining file:///Users/waynerumble/Desktop/Chia/chia-blockchain
Requirement already satisfied: aiter in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (0.13.20191203)
Requirement already satisfied: blspy in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (0.1.14)
Requirement already satisfied: cbor2 in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (5.0.1)
Requirement already satisfied: pyyaml in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (5.3)
Requirement already satisfied: asyncssh in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (2.1.0)
Requirement already satisfied: miniupnpc in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (2.0.2)
Requirement already satisfied: aiosqlite in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (0.11.0)
Requirement already satisfied: aiohttp in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (3.6.2)
Requirement already satisfied: setuptools-scm in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (3.4.2)
Requirement already satisfied: prompt-toolkit in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (3.0.2)
Requirement already satisfied: colorlog in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (4.1.0)
Requirement already satisfied: pytest in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (5.3.4)
Requirement already satisfied: flake8 in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (3.7.9)
Requirement already satisfied: mypy in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (0.761)
Requirement already satisfied: isort in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (4.3.21)
Requirement already satisfied: autoflake in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (1.3.1)
Requirement already satisfied: black in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (19.10b0)
Requirement already satisfied: pytest-asyncio in ./.venv/lib/python3.8/site-packages (from chiablockchain==1.4) (0.10.0)
Requirement already satisfied: wheel in ./.venv/lib/python3.8/site-packages (from blspy->chiablockchain==1.4) (0.34.2)
Requirement already satisfied: cryptography>=2.8 in ./.venv/lib/python3.8/site-packages (from asyncssh->chiablockchain==1.4) (2.8)
Requirement already satisfied: chardet<4.0,>=2.0 in ./.venv/lib/python3.8/site-packages (from aiohttp->chiablockchain==1.4) (3.0.4)
Requirement already satisfied: async-timeout<4.0,>=3.0 in ./.venv/lib/python3.8/site-packages (from aiohttp->chiablockchain==1.4) (3.0.1)
Requirement already satisfied: multidict<5.0,>=4.5 in ./.venv/lib/python3.8/site-packages (from aiohttp->chiablockchain==1.4) (4.7.4)
Requirement already satisfied: yarl<2.0,>=1.0 in ./.venv/lib/python3.8/site-packages (from aiohttp->chiablockchain==1.4) (1.4.2)
Requirement already satisfied: attrs>=17.3.0 in ./.venv/lib/python3.8/site-packages (from aiohttp->chiablockchain==1.4) (19.3.0)
Requirement already satisfied: wcwidth in ./.venv/lib/python3.8/site-packages (from prompt-toolkit->chiablockchain==1.4) (0.1.8)
Requirement already satisfied: packaging in ./.venv/lib/python3.8/site-packages (from pytest->chiablockchain==1.4) (20.0)
Requirement already satisfied: pluggy<1.0,>=0.12 in ./.venv/lib/python3.8/site-packages (from pytest->chiablockchain==1.4) (0.13.1)
Requirement already satisfied: more-itertools>=4.0.0 in ./.venv/lib/python3.8/site-packages (from pytest->chiablockchain==1.4) (8.1.0)
Requirement already satisfied: py>=1.5.0 in ./.venv/lib/python3.8/site-packages (from pytest->chiablockchain==1.4) (1.8.1)
Requirement already satisfied: mccabe<0.7.0,>=0.6.0 in ./.venv/lib/python3.8/site-packages (from flake8->chiablockchain==1.4) (0.6.1)
Requirement already satisfied: pycodestyle<2.6.0,>=2.5.0 in ./.venv/lib/python3.8/site-packages (from flake8->chiablockchain==1.4) (2.5.0)
Requirement already satisfied: pyflakes<2.2.0,>=2.1.0 in ./.venv/lib/python3.8/site-packages (from flake8->chiablockchain==1.4) (2.1.1)
Requirement already satisfied: entrypoints<0.4.0,>=0.3.0 in ./.venv/lib/python3.8/site-packages (from flake8->chiablockchain==1.4) (0.3)
Requirement already satisfied: typing-extensions>=3.7.4 in ./.venv/lib/python3.8/site-packages (from mypy->chiablockchain==1.4) (3.7.4.1)
Requirement already satisfied: typed-ast<1.5.0,>=1.4.0 in ./.venv/lib/python3.8/site-packages (from mypy->chiablockchain==1.4) (1.4.1)
Requirement already satisfied: mypy-extensions<0.5.0,>=0.4.3 in ./.venv/lib/python3.8/site-packages (from mypy->chiablockchain==1.4) (0.4.3)
Requirement already satisfied: appdirs in ./.venv/lib/python3.8/site-packages (from black->chiablockchain==1.4) (1.4.3)
Requirement already satisfied: regex in ./.venv/lib/python3.8/site-packages (from black->chiablockchain==1.4) (2020.1.8)
Requirement already satisfied: toml>=0.9.4 in ./.venv/lib/python3.8/site-packages (from black->chiablockchain==1.4) (0.10.0)
Requirement already satisfied: pathspec<1,>=0.6 in ./.venv/lib/python3.8/site-packages (from black->chiablockchain==1.4) (0.7.0)
Requirement already satisfied: click>=6.5 in ./.venv/lib/python3.8/site-packages (from black->chiablockchain==1.4) (7.0)
Requirement already satisfied: six>=1.4.1 in ./.venv/lib/python3.8/site-packages (from cryptography>=2.8->asyncssh->chiablockchain==1.4) (1.14.0)
Requirement already satisfied: cffi!=1.11.3,>=1.8 in ./.venv/lib/python3.8/site-packages (from cryptography>=2.8->asyncssh->chiablockchain==1.4) (1.13.2)
Requirement already satisfied: idna>=2.0 in ./.venv/lib/python3.8/site-packages (from yarl<2.0,>=1.0->aiohttp->chiablockchain==1.4) (2.8)
Requirement already satisfied: pyparsing>=2.0.2 in ./.venv/lib/python3.8/site-packages (from packaging->pytest->chiablockchain==1.4) (2.4.6)
Requirement already satisfied: pycparser in ./.venv/lib/python3.8/site-packages (from cffi!=1.11.3,>=1.8->cryptography>=2.8->asyncssh->chiablockchain==1.4) (2.19)
Installing collected packages: chiablockchain
  Found existing installation: chiablockchain 1.4
    Uninstalling chiablockchain-1.4:
      Successfully uninstalled chiablockchain-1.4
  Running setup.py develop for chiablockchain
Successfully installed chiablockchain
WARNING: You are using pip version 19.2.3, however version 20.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Obtaining file:///Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos (from -r requirements.txt (line 49))
Obtaining file:///Users/waynerumble/Desktop/Chia/chia-blockchain/lib/py-setproctitle (from -r requirements.txt (line 50))
Obtaining file:///Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiavdf/fast_vdf (from -r requirements.txt (line 51))
Requirement already satisfied: aiohttp==3.6.2 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 1)) (3.6.2)
Requirement already satisfied: aiosqlite==0.11.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 2)) (0.11.0)
Requirement already satisfied: aiter==0.13.20191203 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 3)) (0.13.20191203)
Requirement already satisfied: appdirs==1.4.3 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 4)) (1.4.3)
Requirement already satisfied: async-timeout==3.0.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 5)) (3.0.1)
Requirement already satisfied: asyncssh==2.1.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 6)) (2.1.0)
Requirement already satisfied: attrs==19.3.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 7)) (19.3.0)
Requirement already satisfied: autoflake==1.3.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 8)) (1.3.1)
Requirement already satisfied: black==19.10b0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 9)) (19.10b0)
Requirement already satisfied: blspy==0.1.14 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 10)) (0.1.14)
Requirement already satisfied: cbor2==5.0.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 11)) (5.0.1)
Requirement already satisfied: cffi==1.13.2 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 12)) (1.13.2)
Requirement already satisfied: chardet==3.0.4 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 13)) (3.0.4)
Requirement already satisfied: Click==7.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 14)) (7.0)
Requirement already satisfied: colorlog==4.1.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 15)) (4.1.0)
Requirement already satisfied: cryptography==2.8 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 16)) (2.8)
Requirement already satisfied: entrypoints==0.3 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 17)) (0.3)
Requirement already satisfied: flake8==3.7.9 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 18)) (3.7.9)
Requirement already satisfied: idna==2.8 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 19)) (2.8)
Requirement already satisfied: importlib-metadata==1.4.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 20)) (1.4.0)
Requirement already satisfied: isort==4.3.21 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 21)) (4.3.21)
Requirement already satisfied: mccabe==0.6.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 22)) (0.6.1)
Requirement already satisfied: miniupnpc==2.0.2 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 23)) (2.0.2)
Requirement already satisfied: more-itertools==8.1.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 24)) (8.1.0)
Requirement already satisfied: multidict==4.7.4 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 25)) (4.7.4)
Requirement already satisfied: mypy==0.761 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 26)) (0.761)
Requirement already satisfied: mypy-extensions==0.4.3 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 27)) (0.4.3)
Requirement already satisfied: packaging==20.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 28)) (20.0)
Requirement already satisfied: pathspec==0.7.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 29)) (0.7.0)
Requirement already satisfied: pluggy==0.13.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 30)) (0.13.1)
Requirement already satisfied: prompt-toolkit==3.0.2 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 31)) (3.0.2)
Requirement already satisfied: py==1.8.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 32)) (1.8.1)
Requirement already satisfied: pycodestyle==2.5.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 33)) (2.5.0)
Requirement already satisfied: pycparser==2.19 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 34)) (2.19)
Requirement already satisfied: pyflakes==2.1.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 35)) (2.1.1)
Requirement already satisfied: pyparsing==2.4.6 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 36)) (2.4.6)
Requirement already satisfied: pytest==5.3.4 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 37)) (5.3.4)
Requirement already satisfied: pytest-asyncio==0.10.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 38)) (0.10.0)
Requirement already satisfied: PyYAML==5.3 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 39)) (5.3)
Requirement already satisfied: regex==2020.1.8 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 40)) (2020.1.8)
Requirement already satisfied: setuptools-scm==3.4.2 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 41)) (3.4.2)
Requirement already satisfied: six==1.14.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 42)) (1.14.0)
Requirement already satisfied: toml==0.10.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 43)) (0.10.0)
Requirement already satisfied: typed-ast==1.4.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 44)) (1.4.1)
Requirement already satisfied: typing-extensions==3.7.4.1 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 45)) (3.7.4.1)
Requirement already satisfied: wcwidth==0.1.8 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 46)) (0.1.8)
Requirement already satisfied: yarl==1.4.2 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 47)) (1.4.2)
Requirement already satisfied: zipp==2.0.0 in ./.venv/lib/python3.8/site-packages (from -r requirements.txt (line 48)) (2.0.0)
Requirement already satisfied: cppimport in ./.venv/lib/python3.8/site-packages (from chiapos==0.2.3->-r requirements.txt (line 49)) (18.11.8)
Requirement already satisfied: bitstring in ./.venv/lib/python3.8/site-packages (from chiapos==0.2.3->-r requirements.txt (line 49)) (3.1.6)
Requirement already satisfied: wheel in ./.venv/lib/python3.8/site-packages (from blspy==0.1.14->-r requirements.txt (line 10)) (0.34.2)
Requirement already satisfied: pybind11 in ./.venv/lib/python3.8/site-packages (from cppimport->chiapos==0.2.3->-r requirements.txt (line 49)) (2.4.3)
Requirement already satisfied: mako in ./.venv/lib/python3.8/site-packages (from cppimport->chiapos==0.2.3->-r requirements.txt (line 49)) (1.1.1)
Requirement already satisfied: MarkupSafe>=0.9.2 in ./.venv/lib/python3.8/site-packages (from mako->cppimport->chiapos==0.2.3->-r requirements.txt (line 49)) (1.1.1)
Installing collected packages: chiapos, setproctitle, chiavdf
  Running setup.py develop for chiapos
    ERROR: Command errored out with exit status 1:
     command: /Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"'; __file__='"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps
         cwd: /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/
    Complete output (595 lines):
    running develop
    running egg_info
    writing chiapos.egg-info/PKG-INFO
    writing dependency_links to chiapos.egg-info/dependency_links.txt
    writing requirements to chiapos.egg-info/requires.txt
    writing top-level names to chiapos.egg-info/top_level.txt
    writing manifest file 'chiapos.egg-info/SOURCES.txt'
    running build_ext
    -- pybind11 v2.4.dev4
    -- AESNI Enabled
    -- Configuring done
    -- Generating done
    -- Build files have been written to: /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/build/temp.macosx-10.9-x86_64-3.8
    [ 35%] Built target fse
    [ 57%] Building CXX object CMakeFiles/RunTests.dir/tests/test.cpp.o
    [ 57%] Building CXX object CMakeFiles/HellmanAttacks.dir/src/cli.cpp.o
    [ 57%] Building CXX object CMakeFiles/ProofOfSpace.dir/src/cli.cpp.o
    [ 64%] Building CXX object CMakeFiles/chiapos.dir/python-bindings/chiapos.cpp.o
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/tests/test.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    20 errors generated.
    make[2]: *** [CMakeFiles/RunTests.dir/tests/test.cpp.o] Error 1
    make[1]: *** [CMakeFiles/RunTests.dir/all] Error 2
    make[1]: *** Waiting for unfinished jobs....
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/cli.cpp:21:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    20 errors generated.
    20 errors generated.
    make[2]: *** [CMakeFiles/ProofOfSpace.dir/src/cli.cpp.o] Error 1
    make[1]: *** [CMakeFiles/ProofOfSpace.dir/all] Error 2
    make[2]: *** [CMakeFiles/HellmanAttacks.dir/src/cli.cpp.o] Error 1
    make[1]: *** [CMakeFiles/HellmanAttacks.dir/all] Error 2
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:98:26: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_1_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".tmp");
                             ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:21: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                        ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:55: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:43: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:773:3: note: 'path' has been explicitly marked unavailable here
      path(const _Source& __src, format = format::auto_format) {
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:43: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:87: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                                          ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:739:24: note: 'path' has been explicitly marked unavailable here
    class _LIBCPP_TYPE_VIS path {
                           ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:75: error: 'path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:769:3: note: 'path' has been explicitly marked unavailable here
      path(string_type&& __s, format = format::auto_format) noexcept
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:75: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                              ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:73: error: 'operator/' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:1175:41: note: 'operator/' has been explicitly marked unavailable here
      friend _LIBCPP_INLINE_VISIBILITY path operator/(const path& __lhs,
                                            ^
    In file included from /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/chiapos.cpp:25:
    /Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/python-bindings/../src/plotter_disk.hpp:99:73: error: '~path' is unavailable: introduced in macOS 10.15
            filesystem::path tmp_2_filename = filesystem::path(tmp_dirname) / filesystem::path(filename + ".2.tmp");
                                                                            ^
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/filesystem:791:3: note: '~path' has been explicitly marked unavailable here
      ~path() = default;
      ^
    fatal error: too many errors emitted, stopping now [-ferror-limit=]
    20 errors generated.
    make[2]: *** [CMakeFiles/chiapos.dir/python-bindings/chiapos.cpp.o] Error 1
    make[1]: *** [CMakeFiles/chiapos.dir/all] Error 2
    make: *** [all] Error 2
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py", line 67, in <module>
        setup(
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/lib/python3.8/site-packages/setuptools/__init__.py", line 145, in setup
        return distutils.core.setup(**attrs)
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/core.py", line 148, in setup
        dist.run_commands()
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 966, in run_commands
        self.run_command(cmd)
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/lib/python3.8/site-packages/setuptools/command/develop.py", line 38, in run
        self.install_for_development()
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/lib/python3.8/site-packages/setuptools/command/develop.py", line 140, in install_for_development
        self.run_command('build_ext')
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/cmd.py", line 313, in run_command
        self.distribution.run_command(command)
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/distutils/dist.py", line 985, in run_command
        cmd_obj.run()
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py", line 35, in run
        self.build_extension(ext)
      File "/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py", line 63, in build_extension
        subprocess.check_call(['cmake', '--build', '.'] +
      File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/subprocess.py", line 364, in check_call
        raise CalledProcessError(retcode, cmd)
    subprocess.CalledProcessError: Command '['cmake', '--build', '.', '--config', 'Release', '--', '-j', '6']' returned non-zero exit status 2.
    ----------------------------------------
ERROR: Command errored out with exit status 1: /Users/waynerumble/Desktop/Chia/chia-blockchain/.venv/bin/python3 -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"'; __file__='"'"'/Users/waynerumble/Desktop/Chia/chia-blockchain/lib/chiapos/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps Check the logs for full command output.
WARNING: You are using pip version 19.2.3, however version 20.0.2 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
wrumble commented 4 years ago

the pip warning im sure is from the venv not my machine get pip 20.0.2 from /Users/waynerumble/Library/Python/2.7/lib/python/site-packages/pip (python 2.7) when running pip --version

hoffmang9 commented 4 years ago

You can ignore the pip error.

Can you post the output of brew info cmake?

wrumble commented 4 years ago

output of brew info cmake

cmake: stable 3.16.4 (bottled), HEAD
Cross-platform make
https://www.cmake.org/
/usr/local/Cellar/cmake/3.16.4 (6,015 files, 55.9MB) *
  Poured from bottle on 2020-02-27 at 12:26:51
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/cmake.rb
==> Dependencies
Build: sphinx-doc ✘
==> Options
--HEAD
    Install HEAD version
==> Caveats
Emacs Lisp files have been installed to:
  /usr/local/share/emacs/site-lisp/cmake
==> Analytics
install: 128,158 (30 days), 366,429 (90 days), 1,460,164 (365 days)
install-on-request: 81,041 (30 days), 230,475 (90 days), 923,690 (365 days)
build-error: 0 (30 days)
chris-lg commented 4 years ago

i got the same problem today. this is my error log below : -- pybind11 v2.4.dev4 -- AESNI Enabled -- Configuring done -- Generating done -- Build files have been written to: /Users/apple/chia-blockchain/lib/chiapos/build/temp.macosx-10.14-x86_64-3.7 [ 35%] Built target fse [ 42%] Building CXX object CMakeFiles/RunTests.dir/tests/test.cpp.o [ 57%] Building CXX object CMakeFiles/HellmanAttacks.dir/src/cli.cpp.o [ 57%] Building CXX object CMakeFiles/ProofOfSpace.dir/src/cli.cpp.o [ 64%] Building CXX object CMakeFiles/chiapos.dir/python-bindings/chiapos.cpp.o In file included from /Users/apple/chia-blockchain/lib/chiapos/src/cli.cpp:21: /Users/apple/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:40:2: error: "an implementation of filesystem is required!"

error "an implementation of filesystem is required!"

^ In file included from /Users/apple/chia-blockchain/lib/chiapos/src/cli.cpp:21: /Users/apple/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:40:2: error: "an implementation of filesystem is required!"

error "an implementation of filesystem is required!"

^ In file included from /Users/apple/chia-blockchain/lib/chiapos/tests/test.cpp:21: /Users/apple/chia-blockchain/lib/chiapos/src/plotter_disk.hpp:40:2: error: "an implementation of filesystem is required!"

error "an implementation of filesystem is required!"

chris-lg commented 4 years ago

platform : mac os version: 10.14.5

dvberzon commented 4 years ago

I had the same problem, which persisted after an upgrade to Catalina. However, following the Catalina upgrade, I deleted the checkout of chia-blockchain and then cloned a new version of the repository. It then installed without issues. I imagine there were some cached files that were still building with the target of the old OS. I hope this helps

davidbarratt commented 4 years ago

I'm having a similar problem on macOS using beta1

hoffmang9 commented 4 years ago

It's a different problem but it may very well be a problem. Can you DM me on Keybase? I'm @hoffmang there

wrumble commented 4 years ago

@dvberzon 's comment fixed it for me, thanks!

chris-lg commented 4 years ago

is there any community such as telegram group for us to discuss?

chris-lg commented 4 years ago

I had the same problem, which persisted after an upgrade to Catalina. However, following the Catalina upgrade, I deleted the checkout of chia-blockchain and then cloned a new version of the repository. It then installed without issues. I imagine there were some cached files that were still building with the target of the old OS. I hope this helps

hi, Is your miner working normally?

nisenbaum commented 4 years ago

is there any community such as telegram group for us to discuss?

Keybase is the sole place to discuss. chia_network.public#testnet

hoffmang9 commented 4 years ago

Mojave support returned in Beta 1.4 and should work fine in Beta 1.5: https://github.com/Chia-Network/chia-blockchain/wiki/INSTALL