Skip to content
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

Possible issue with fltk-config #18

Open
goxeq opened this issue Jun 27, 2023 · 0 comments
Open

Possible issue with fltk-config #18

goxeq opened this issue Jun 27, 2023 · 0 comments
Labels
question Further information is requested

Comments

@goxeq
Copy link

goxeq commented Jun 27, 2023

Comment:

The command fltk-config --cxx outputs /home/conda/feedstock_root/build_artifacts/fltk_1637514470845/_build_env/bin/x86_64-conda-linux-gnu-c++ and not $CONDA_PREFIX/bin/x86_64-conda-linux-gnu-c++, where the former path does on exist on my system.

I believe it is caused by hardcoded paths in fltk-config script (lines 39-41)

# compiler names                                                                
CC="/home/conda/feedstock_root/build_artifacts/fltk_1637514470845/_build_env/bin/x86_64-conda-linux-gnu-cc"
CXX="/home/conda/feedstock_root/build_artifacts/fltk_1637514470845/_build_env/bin/x86_64-conda-linux-gnu-c++"

I manually edited the file to correct for this, but I don't know if that is the right way to handle this:

# compiler names                                                                
CC="${prefix}/bin/x86_64-conda-linux-gnu-cc"
CXX="${prefix}/bin/x86_64-conda-linux-gnu-c++"
@goxeq goxeq added the question Further information is requested label Jun 27, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant