linux - How can i use a private installation of wxWidgets -
i have 2 installations of wxwidgets
, 1 in /usr/...
, 1 private. don't have permissions alter central directory. question how can create private
installation active
one?
if add together path setenv, dosn't work correctly since i'm missing libs.
the usual way add together folder "private" libs ld_library_path
environment variable (assuming you're using bash
, shared libraries in "/home/mylogin/wxwidgets/lib"),
export ld_library_path="/home/mylogin/wxwidgets/lib:$ld_library_path"
from the linux documentation project - 3.3.1. ld_library_path
you can temporarily substitute different library particular execution. in linux, environment variable ld_library_path colon-separated set of directories libraries should searched first, before standard set of directories
linux
No comments:
Post a Comment