-
Notifications
You must be signed in to change notification settings - Fork 18
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
package bmic not found (in a non-standard prefix install) #69
Comments
Hmm, pkg-config should locate the library. I'll disable it to see if I can reproduce this result. (There may be some delay since I'm on vacation this week.) |
I should add that bmi-cxx has not too surprisingly the same issue with not finding bmicxx. The fortran and python installed and tested fine (but see #70) |
@teuben Thank you so much for looking at this! To help pkg-config find things installed in non-standard locations, you can set the PKG_CONFIG_PATH environment variable. For example, the following works for me. Install the bmi-c package, $ mkdir _build && cd _build # In bmi-c
$ cmake ../ -DCMAKE_INSTALL_PREFIX=/tmp/opt
$ make install Install the bmi-example-c example, $ mkdir _build && cd _build # In bmi-example-c
$ export PKG_CONFIG_PATH=/tmp/opt/lib/pkgconfig
$ cmake ../ -DCMAKE_INSTALL_PREFIX=/tmp/opt
$ make install Run the example, $ /tmp/opt/bin/run_bmiheatc testing/config.txt # In bmi-example-c
$ ls bmiheatc.out
bmiheatc.out The first ten line of the output file,
|
Hi @teuben -- in the PRs listed above, I've updated the READMEs in the bmi-example-c and bmi-example-cxx repos to try to clarify how to install to a nonstandard location. Please let me know what you think. If they address this issue satisfactorily, I'll close the issue and merge the PRs. |
yes, go ahead and merge. They work for me. |
I first installed bmic:
mkdir _build && cd _build
cmake .. -DCMAKE_INSTALL_PREFIX=/tmp/opt
make install
and then the example-C in the same fashion:
mkdir _build && cd _build
cmake .. -DCMAKE_INSTALL_PREFIX=/tmp/opt
when I get "No package 'bmic' found"
Is there a flag in cmake one gives to say that bmic is installed in a non-standard place, or did I not follow all install instructions.
openjournals/joss-reviews#2317
The text was updated successfully, but these errors were encountered: