-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macOS build for marmara and remove explicit reference to libcc.dl and build it as in komodo codebase #49
base: development
Are you sure you want to change the base?
Conversation
build marmara for macos: - remove cpath, gcc in .github/workflows/marmara_mac_ci.yml - remove installing gcc from README.md - deleted darwin.host.mk.patch - deleted darwin.mk.patch - change cc/g++ -> clang/clang++ default in depends/builders/darwin.mk and in depends/hosts/darwin.mk - fix bdb build on native darwin in depends/packages/bdb.mk - fix libcurl linkage under darwin and disable HTTP/2, librtmp and brotli in depends/packages/libcurl.mk - fix MACOSX_DEPLOYMENT_TARGET in depends/packages/libsodium.mk - remove gcc specific linker flag -static-libgcc in src/Makefile.am - remove -enable-static --disable-shared from scripts in zcutil/build-mac-dtest.sh and zcutil/build-mac.sh - remove gcc related flags from Mac build in zcutil/build-mac-dtest.sh and zcutil/build-mac.sh - remove -Wno-builtin-declaration-mismatch for Mac in zcutil/build-mac-dtest.sh and zcutil/build-mac.sh - remove linker options -Wl,-undefined -Wl,dynamic_lookup in zcutil/build-mac-dtest.sh and zcutil/build-mac.sh
I got a build error on my macos 12.3.1
|
It's expected. The error you're seeing, clang: fatal error: unsupported option '-fopenmp', indicates that the version of Clang that ships with macOS (via Xcode) does not support the -fopenmp flag out of the box. This is a common issue because the default Clang on macOS lacks OpenMP support by default. To build on macOS with Clang, you need to disable OpenMP (Open Multi-Processing) during the |
Tested on: HW: MacBook Air M1 Getting the following error when I build the ./zcutil/build-mac.sh:
Could this (KomodoPlatform@a3bba24) be a work around for clang 15 too? @DeckerSU |
Don’t try to build the daemon for the |
I passed through the libsnark build error by setting MULTICORE=0 in libsnark.mk |
[IMP] remove cron scheduler for ci workflows
src/Makefile.am
.