You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wrong path gets encoded in Makefile: /home/conda/feedstock_root/build_artifacts/ruby_1552262701982/_build_env/bin/x86_64-conda_cos6-linux-gnu-cc: Command not found
#101
Closed
init-js opened this issue
Jun 19, 2019
· 2 comments
I'm getting a compilation error during bundle install. commonmarker gets pulled as a dependency, and the resulting Makefile points to a compiler that doesn't exist.
current directory: /home/ec2-user/miniconda2/envs/biol525D/lib/ruby/gems/2.4.0/gems/commonmarker-0.17.13/ext/commonmarker
make "DESTDIR="
compiling arena.c
make: /home/conda/feedstock_root/build_artifacts/ruby_1552262701982/_build_env/bin/x86_64-conda_cos6-linux-gnu-cc: Command not found
Makefile:241: recipe for target 'arena.o' failed
make: *** [arena.o] Error 127
The CC= line in the Makefiles points to that /home/conda/... path which doesn't exist. The compiler it's looking for, x86_64-conda_cos6-linux-gnu-cc is installed elsewhere, and is in my $PATH, but in a different folder.
Is there any quick way around this? Is this a conda bug? Would you know where that CC= line gets pulled from?
The text was updated successfully, but these errors were encountered:
I'm getting a compilation error during bundle install. commonmarker gets pulled as a dependency, and the resulting Makefile points to a compiler that doesn't exist.
The
CC=
line in the Makefiles points to that /home/conda/... path which doesn't exist. The compiler it's looking for,x86_64-conda_cos6-linux-gnu-cc
is installed elsewhere, and is in my $PATH, but in a different folder.Is there any quick way around this? Is this a conda bug? Would you know where that CC= line gets pulled from?
The text was updated successfully, but these errors were encountered: