summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-11-18 10:02:05 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-11-18 10:02:05 -0600
commit48f1dbe806ac71235d6be98f13c60354a1f623e6 (patch)
tree08546b674b1c6fe6f814d6b81e0e4bb3a13c5d01 /misc
parent36aa36843abf43d940094d70f8c72ec0b750d532 (diff)
downloadnuttx-48f1dbe806ac71235d6be98f13c60354a1f623e6.tar.gz
nuttx-48f1dbe806ac71235d6be98f13c60354a1f623e6.tar.bz2
nuttx-48f1dbe806ac71235d6be98f13c60354a1f623e6.zip
README update
Diffstat (limited to 'misc')
-rw-r--r--misc/tools/README.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/misc/tools/README.txt b/misc/tools/README.txt
index 3b114f188..2991190f7 100644
--- a/misc/tools/README.txt
+++ b/misc/tools/README.txt
@@ -109,6 +109,29 @@ kconfig-macos.patch
make
make install
+kconfig-mconf Path Issues
+-------------------------
+
+Some people have experienced this problem after successfully building and installing
+the kconfig-frontends tools:
+
+ kconfig-mconf: error while loading shared libraries: libkconfig-parser-3.8.0.so: cannot open shared object file: No such file or directory
+ make: *** [menuconfig] Error 127
+
+There two known solutions to this:
+
+1) Add the directory where the kconfig-frontends libraries were installed
+ to the file /etc//ld.so.conf (probably /usr/local/lib), then run the
+ ldconfig tool.
+
+2) Specify the LD_RUN_PATH environment when building the kconfig-frontends
+ tools like:
+
+ ./configure --enable-mconf
+ LD_RUN_PATH=/usr/local/lib make
+ make install
+
+
kconfig-frontends for Windows
-----------------------------