-
Notifications
You must be signed in to change notification settings - Fork 11
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
fixed intel build #111
fixed intel build #111
Conversation
flake.nix
Outdated
]) ++ lib.optionals pkgs.stdenv.isDarwin ( | ||
[ pkgs.darwin.apple_sdk_11_0.frameworks.IOKit | ||
pkgs.darwin.apple_sdk_11_0.frameworks.Security | ||
]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should go in rust.nix (rustBuildInputs
). Also, CI fails due to not having run autoformatter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding in rustBuildInputs
is causing nix run failing. Updated and added to devShells.rust
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
causing nix run failing
Please post the full error.
devShells.rust
already uses rustBuildInputs transitively, so the devShell will now have duplicate IOKit and Security frameworks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
error occurred: Command env -u IPHONEOS_DEPLOYMENT_TARGET "clang" "-O3" "-ffunction-sections" "-fdata-sections" "-fPIC" "--target=x86_64-apple-darwin" "-Wall" "-Wextra" "-o" "/private/tmp/nix-build-nix-browser-deps-0.1.0.drv-0/source/target/release/build/tao-fde661b9405e71cb/out/src/platform_impl/macos/carbon_hotkey/carbon_hotkey_binding.o" "-c" "src/platform_impl/macos/carbon_hotkey/carbon_hotkey_binding.c" with args "clang" did not execute successfully (status code exit status: 1).
b295c1d
to
e56b861
Compare
e56b861
to
4388fa1
Compare
|
No description provided.