Discussion:
installation problems
Timothy Yang
2014-06-18 22:43:56 UTC
Permalink
I need to install this program to get the LastWave program running. I
downloaded it and followed the directions to install it: 1) cd into the
base dir 2) mkdir osx-build 3) cd osx-build 4) ../configure -enable-static
-disable-shared -disable-debug -enable monolithic 5) make. The problem is
that I keep on getting an error after step 5: make: *** [monolib_filefn.o]
Error 1. Could you tell me what it means?
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Steve Barnes
2014-06-19 04:58:51 UTC
Permalink
Post by Timothy Yang
I need to install this program to get the LastWave program running. I
downloaded it and followed the directions to install it: 1) cd into
the base dir 2) mkdir osx-build 3) cd osx-build 4) ../configure
-enable-static -disable-shared -disable-debug -enable monolithic 5)
make: *** [monolib_filefn.o] Error 1. Could you tell me what it means?
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.
or visit http://groups.google.com/group/wx-users
It means that you need to read the lines of output *before* the last
one, what you have posted looks like the final line of the error
messages, there should be a large number of lines before it that tell
you what the actual error was. Usually this sort of thing is either a
missing prerequisite file, often you do not have the -dev package
downloaded for one or more libraries that are being used or that you
have not built the library/ies that are being used with the same
settings as you are trying to use for the program.

Read backwards from the last line of the output looking for the first
error message, it should say something like "ERROR missing include file
/somefilename/" - either look into where that file is missing from or
post that part of the message to the group and someone may be able to help.

Gadget/Steve
--
Please read http://www.wxwidgets.org/support/mlhowto.htm before posting.

To unsubscribe, send email to wx-users+***@googlegroups.com
or visit http://groups.google.com/group/wx-users
Loading...