mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
Merge pull request #176596 from trofi/workaround-fno-common-for-python3Packages.vmprof
python3Packages.vmprof: add -fcommon workaround
This commit is contained in:
commit
265300b2f7
@ -25,6 +25,13 @@ buildPythonPackage rec {
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "vmprof" ];
|
||||
|
||||
# Workaround build failure on -fno-common toolchains:
|
||||
# ld: src/vmprof_unix.o:src/vmprof_common.h:92: multiple definition of
|
||||
# `_PyThreadState_Current'; src/_vmprof.o:src/vmprof_common.h:92: first defined here
|
||||
# TODO: can be removed once next release contains:
|
||||
# https://github.com/vmprof/vmprof-python/pull/203
|
||||
NIX_CFLAGS_COMPILE = "-fcommon";
|
||||
|
||||
meta = with lib; {
|
||||
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
||||
description = "A vmprof client";
|
||||
|
Loading…
Reference in New Issue
Block a user