Re: wxEuphoria Library Build Problem
- Posted by mattlewis (admin) Jun 03, 2009
- 1049 views
euphoric said...
mattlewis said...
...it's the libwxeu.dll/so that you need to rebuild.
I'm trying to build the dll and getting this error:
C:\EU_INC~1\WXEUPH~2>make c:\wxwidgets-2.8.7 Open Watcom Make Version 1.7 Portions Copyright (c) 1988-2002 Sybase, Inc. All Rights Reserved. Source code is available under the Sybase Open Watcom Public License. See http://www.openwatcom.org/ for details. bt=nt -zq -fo=wat_dll\wxSprint.obj /bd /xs -d__WXMSW__ -dwxNO_TH READS -dWXEUMSW -i=c:\wxwidgets-2.8.7\lib\wat_dll\ -DWX_LIB_BUILD=14 -i=c:\wxwi dgets-2.8.7\include -w0 -dWXUSINGDLL -i=c:\wxwidgets-2.8.7\lib\wat_dll\mswu /d1 -dNOPCH .\wxSprint.cpp Error(E14): Cannot execute (bt): No such file or directory Error(F38): (wat_dll\wxSprint.obj) does not exist and cannot be made from existi ng files Error(E02): Make execution terminated
What am I doing wrong?
It looks like you don't have watcom set up properly. The command line should look more like:
wcc386 /ol /dEWINDOWS /dEWATCOM /dEOW /dWXEUMSW /bt=nt /mf /w0 /j /zp4 /zq /fp5 /fpi87 /otimra /s -fo=wat_dll\be .obj .\be.c
You're getting some of the flags, bug not the compiler nor even all of the flags. I'm using Watcom 1.8. But 1.7 should work, too.
Matt