Closed carsten-forty2 closed 4 years ago
Does not seem related to conda-forge, ask upstream
Can you remove the libcxxabi
package?
how should I remove the libcxxabi package?
conda remove libcxxabi
RemoveError: This operation will remove conda without replacing it with
another version of conda.
conda remove libcxxabi -n boost
clang++ -fPIC -c bpt.cpp -I /Users/florian/opt/anaconda3/envs/boost/include/python3.6m/ -I /Users/florian/opt/anaconda3/envs/boost/include
bpt.cpp:1:10: fatal error: 'boost/python.hpp' file not found
#include "boost/python.hpp"
^~~~~~~~~~~~~~~~~~
no clue how this happen now
okay fresh environment and the problem seems to be gone .. I need to check my tool chains now.
Thanks a lot.
People often install the compilers
package to do development in a Conda environment. Maybe this will work nicer for you 🙂
Issue: This issue is a sequel to #81 I experience now a weird malloc problem for a minimalistic boost-python example using
std::throw
in conda environment on macosx.The given example (see below) was tested on linux, windows and macos, and only the mac version for macos gives:
It would be great if you also know a solution or give me some hints to debug this problem.
Environment (
conda list
):Details about
conda
and system (conda info
):Steps to reproduce:
The minimalistic cpp example (save as bpt.cpp):
The python test file: (save as
bpt.py
)A Makefile to build the bindings (save as
Makefile
) and you probably need to correct the ENV variableFinally create the environment and test the problem.
conda create -c conda-forge -n boost boost python=3.6 conda activate boost make make test
The method
t()
should throw the exception but the uncatchable malloc problems occurs instead.Best regards and thank you, Carsten