Re: libresolv does not provide __ns_initparse, resulting in LD undefined reference

2024-11-04 Thread Corinna Vinschen via Cygwin
into a binary, on cygwin i got an > > issue during linking: > > > > $ g++ -O2 -Wall -Isrc -o bin/sealtool src/sign-verify.cpp -lcrypto > > -lssl -lcurl -lresolv > > /usr/lib/gcc/x86_64-pc-cygwin/12/../../../../x86_64-pc-cygwin/bin/ld: > > /tmp/ccA3GExv.o:sign

Re: libresolv does not provide __ns_initparse, resulting in LD undefined reference

2024-11-04 Thread Corinna Vinschen via Cygwin
src -o bin/sealtool src/sign-verify.cpp -lcrypto > -lssl -lcurl -lresolv > /usr/lib/gcc/x86_64-pc-cygwin/12/../../../../x86_64-pc-cygwin/bin/ld: > /tmp/ccA3GExv.o:sign-verify.cp:(.text+0x437): undefined reference to > `__ns_initparse' > /usr/lib/gcc/x86_64-pc-cygwin/12/

Re: libresolv does not provide __ns_initparse, resulting in LD undefined reference

2024-11-03 Thread Brian Inglis via Cygwin
++ -O2 -Wall -Isrc -o bin/sealtool src/sign-verify.cpp -lcrypto -lssl -lcurl -lresolv /usr/lib/gcc/x86_64-pc-cygwin/12/../../../../x86_64-pc-cygwin/bin/ld: /tmp/ccA3GExv.o:sign-verify.cp:(.text+0x437): undefined reference to `__ns_initparse' /usr/lib/gcc/x86_64-pc-cygwin/12/../../../../

Re: libresolv does not provide __ns_initparse, resulting in LD undefined reference

2024-11-03 Thread Named T. Relay via Cygwin
2 -Wall -Isrc -o bin/sealtool src/sign-verify.cpp -lcrypto > -lssl -lcurl -lresolv > > /usr/lib/gcc/x86_64-pc-cygwin/12/../../../../x86_64-pc-cygwin/bin/ld: > /tmp/ccA3GExv.o:sign-verify.cp:(.text+0x437): undefined reference to > `__ns_initparse' > /usr/lib/gcc/x86_64-pc-cy

libresolv does not provide __ns_initparse, resulting in LD undefined reference

2024-10-29 Thread Named T. Relay via Cygwin
/x86_64-pc-cygwin/12/../../../../x86_64-pc-cygwin/bin/ld: /tmp/ccA3GExv.o:sign-verify.cp:(.text+0x437): undefined reference to `__ns_initparse' /usr/lib/gcc/x86_64-pc-cygwin/12/../../../../x86_64-pc-cygwin/bin/ld: /tmp/ccA3GExv.o:sign-verify.cp:(.text+0x49a): undefined reference to `__ns_pa

Re: undefined reference when linking against glib-2.0

2019-02-10 Thread René Berber
On 2/10/2019 4:28 AM, C.J. Wagenius wrote: > gcc -Wl,--verbose -o testa `pkg-config --cflags --libs glib-2.0` test.c Try: gcc -o testa test.c `pkg-config --cflags --libs glib-2.0` Its the way the compiler works under Windows (i.e. no unresolved references, and the order of searching for them).

undefined reference when linking against glib-2.0

2019-02-10 Thread C.J. Wagenius
/tmp/ccHtEBvg.o:test.c:(.text+0x1e): undefined reference to `g_malloc_n' /tmp/ccHtEBvg.o:test.c:(.text+0x2e): undefined reference to `g_free' collect2: error: ld returned 1 exit status (attempt to open /usr/lib/gcc/i686-pc-cygwin/7.4.0/../../../libglib-2.0.dll.a succeeded) Windows 7 64-bit usin

Re: undefined reference to LAPACKE_***

2017-11-20 Thread Csaba Raduly
Hi Zekios, On Sat, Nov 18, 2017 at 7:20 PM, Constantinos Zekios wrote: > Hi Csaba, > so I am using a cmake and it is of the format: > > set(LAPACK_LIB "/usr/lib/liblapack.so") > set(LAPACK_LIB "/usr/lib/liblapacke.so") > set(BLAS_LIB "/usr/lib/libblas.so") for my ubuntu system, > > which I chang

Re: undefined reference to LAPACKE_***

2017-11-18 Thread Marco Atzeri
packages in cygwin. I have installed lapack, as well as blas. Does anybody know how to install liblapacke.a, liblapacke.dll.a? The errors that I am getting are of the form: undefined reference to 'LAPACKE_zlange'. Regards,  Constantine lapacke interface is not provided in

Re: undefined reference to LAPACKE_***

2017-11-18 Thread Constantinos Zekios
cke.a, liblapacke.dll.a? The errors that I am getting are of the form: undefined reference to 'LAPACKE_zlange'. That sounds like the linker complaining about not finding a symbol, *not* about a missing library file. If that's the case, installing libraries will not help you. Just as

Re: undefined reference to LAPACKE_***

2017-11-18 Thread René Berber
packages in cygwin. I have installed lapack, as well as > blas. Does anybody know how to install liblapacke.a, liblapacke.dll.a? > > The errors that I am getting are of the form: undefined reference to > 'LAPACKE_zlange'. Try installing liblapack-devel. -- R. Berbe

Re: undefined reference to LAPACKE_***

2017-11-18 Thread Csaba Raduly
e, but it seems that I am not able to install the > packages in cygwin. I have installed lapack, as well as blas. Does anybody > know how to install liblapacke.a, liblapacke.dll.a? > > The errors that I am getting are of the form: undefined reference to > 'LAPACKE_zlange'.

undefined reference to LAPACKE_***

2017-11-18 Thread Constantinos Zekios
well as blas. Does anybody know how to install liblapacke.a, liblapacke.dll.a? The errors that I am getting are of the form: undefined reference to 'LAPACKE_zlange'. Regards,  Constantine -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygw

Re: library compilation undefined reference to extern function

2016-03-06 Thread René Berber
ux (Ubuntu) without any problem, but in cygwin it goes with linker errors - undefined reference, in both systems I use > > $ gcc -c -Wall -fpic filename.cc > $ gcc -shared -o libfoo.so filename.o Besides the obvious (dynamic libraries in Windows do not have a .so extension, but a .dll ext.)

library compilation undefined reference to extern function

2016-03-06 Thread Azatyan, Anushavan
(void); Linker gives error - undefined reference to `func()' then I tried with this to compare differences.. #include using namespace std; extern void foo(void); int main() { cout<<" Print "; foo(); return 0; } a very simple example I can com

Re: clang++ 3.5.2: undefined reference to `__gxx_personality_v0'

2015-06-18 Thread JonY
On 6/19/2015 07:24, Falk Tannhäuser wrote: > The following little C++ program produces several linker errors of the kind > > /tmp/vec2-125520.o:(.xdata+0x8): undefined reference to > `__gxx_personality_v0' > /tmp/vec2-125520.o:(.xdata+0x8): relocation truncated to fit: rva32

clang++ 3.5.2: undefined reference to `__gxx_personality_v0'

2015-06-18 Thread Falk Tannhäuser
The following little C++ program produces several linker errors of the kind /tmp/vec2-125520.o:(.xdata+0x8): undefined reference to `__gxx_personality_v0' /tmp/vec2-125520.o:(.xdata+0x8): relocation truncated to fit: rva32 against undefined symbol `__gxx_personali

Re: 64bit cygwin: undefined reference to `cygwin_conv_to_full_win32_path'

2015-02-09 Thread Corinna Vinschen
e-auto-image-base -Xlinker --out-implib -Xlinker > .libs/libdb_sql-5.3.dll.a > .libs/sqlite3.o: In function `winFullPathname': > /usr/src/debug/db-5.3.21-1/lang/sql/generated/sqlite3.c:33205: undefined > reference to `cygwin_conv_to_full_win32_path' > /usr/src/debug/db-5.3

64bit cygwin: undefined reference to `cygwin_conv_to_full_win32_path'

2015-02-09 Thread Dr. Volker Zell
sqlite3.c:33205: undefined reference to `cygwin_conv_to_full_win32_path' /usr/src/debug/db-5.3.21-1/lang/sql/generated/sqlite3.c:33205:(.text+0x434b): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `cygwin_conv_to_full_win32_path' /usr/src/debug/db-5.3.21-1/lang/sql/

Re: bash 4.3 - undefined reference to `_sigsetjmp'

2014-09-30 Thread Eric Blake
On 09/30/2014 05:48 AM, Thomas Plank wrote: > I am trying to compile bash 4.3 on cygwin32. As the package maintainer, I will eventually get bash 4.3 built for cygwin; for now, I only support the 4.1 release. But I admire your desire to test it early. > > Are there any patches to enable compilat

Re: bash 4.3 - undefined reference to `_sigsetjmp'

2014-09-30 Thread Thomas Plank
Am 30.09.2014 um 13:56 schrieb Alexpux: 30 сент. 2014 г., в 15:48, Thomas Plank написал(а): I am trying to compile bash 4.3 on cygwin32. I applied all available patches (up to 27) but in the end I'm getting an undefined reference

bash 4.3 - undefined reference to `_sigsetjmp'

2014-09-30 Thread Thomas Plank
I am trying to compile bash 4.3 on cygwin32. I applied all available patches (up to 27) but in the end I'm getting an undefined reference error: *** * * * GNU

Re: Do the runtime support the large file 2GB with fstati64 (error: undefined reference to __fstati64 )?

2013-06-12 Thread Lord Flaubert Steve Ataucuri Cruz
2013/6/10 JonY <10wa...@gmail.com>: > On 6/10/2013 09:11, Lord Flaubert Steve Ataucuri Cruz wrote: >> Folks, >> >> I did some research at mailing list, faq and I didn't seek any >> information about this error . I am trying to build an installer of >> some great tools of linux to windows, but I wan

Re: Do the runtime support the large file 2GB with fstati64 (error: undefined reference to __fstati64 )?

2013-06-10 Thread JonY
On 6/10/2013 09:11, Lord Flaubert Steve Ataucuri Cruz wrote: > Folks, > > I did some research at mailing list, faq and I didn't seek any > information about this error . I am trying to build an installer of > some great tools of linux to windows, but I wanna use and Cygwin > runtime and Mingw(plea

Do the runtime support the large file 2GB with fstati64 (error: undefined reference to __fstati64 )?

2013-06-09 Thread Lord Flaubert Steve Ataucuri Cruz
/lib/w32api libinilex.a libgetopt++/.libs/libgetopt++.a -lbz2 -lz -lcomctl32 -lole32 -lwsock32 -lnetapi32 -luuid -lstdc++ -lmingw32 -lws2_32 /usr/lib/gcc/i686-pc-mingw32/3.4.4/libstdc++.a(basic_file.o):basic_file.cc:(.text+0x4ed): undefined reference to `__fstati64' collect2: ld returned 1 ex

Re: argp - Missing initializer and _argp_parse undefined reference

2012-03-17 Thread Corinna Vinschen
,0}; > > The last error after fixing the above is: > > $ gcc -Wall -Wextra -pedantic -o socket1 socket1.c > /tmp/ccdeH74x.o:socket1.c:(.text+0x45): undefined reference to `_argp_parse' > collect2: ld returned 1 exit status > > cygcheck -l produces the following: >

Re: 1.7.8: undefined reference to __xpg_strerror_r

2011-03-30 Thread Corinna Vinschen
/cygwin/tmpmpich2/examples' > ../bin/mpicc -I../src/include -I/cygdrive/d/cygwin/mpich2-1.3.2p1/src/include > - > c /cygdrive/d/cygwin/mpich2-1.3.2p1/examples/cpi.c > ../bin/mpicc -o cpi cpi.o -lm > /cygdrive/d/cygwin/tmpmpich2/lib/libmpich.a(strerror.o):strerror.c: >

Re: 1.7.8: undefined reference to __xpg_strerror_r

2011-03-30 Thread Jacky
e/d/cygwin/mpich2-1.3.2p1/examples/cpi.c ../bin/mpicc -o cpi cpi.o -lm /cygdrive/d/cygwin/tmpmpich2/lib/libmpich.a(strerror.o):strerror.c: (.text+0x28): undefined reference to `__xpg_strerror_r' collect2: ld returned 1 exit status make[2]: *** [cpi] Error 1 make[2]: Leaving directory `/cyg

Re: 1.7.8: undefined reference to __xpg_strerror_r

2011-03-08 Thread Corinna Vinschen
On Mar 8 18:53, Hughes, Gregory Mark (PSG Consumer Experience) wrote: > Hi, > > After updating to Cygwin 1.7.8-1, I am seeing an unresolved reference to > __xpg_strerror_r Fixed in the recent snapshots on http://cygwin.com/snapshots/ Corinna -- Corinna Vinschen Please, sen

1.7.8: undefined reference to __xpg_strerror_r

2011-03-08 Thread Hughes, Gregory Mark (PSG Consumer Experience)
Hi, After updating to Cygwin 1.7.8-1, I am seeing an unresolved reference to __xpg_strerror_r This test program links successfully if I define _GNU_SOURCE to so select the alternate strerror_r entrypoint. Compile with "gcc test.c": #include #include int main() { char err_buf[256];

undefined reference to `QTextStream::QTextStream(__sFILE64*

2010-07-08 Thread guy . j . maurel
(_REENT->_stderr) and got the error /cygdrive/y/Workspace/automoc/Debug/../src/kde4automoc.cpp:129: undefined reference to `QTextStream::QTextStream(__sFILE64*, QFlags)' within "eclipse" This 64-bit-entry is not supplied by QtCore, only the 32-bit one. What is to

Re: Encounter undefined reference to `_libintl_dgettext'

2010-06-01 Thread Cygwin/X
On Tue, 1 Jun 2010 22:16:50 -0700 (PDT) aldray wrote: > I realise that whatever usb device i plug in, like iphone. on the > Ubuntu gphoto2, it is able to detect the device. > > But when i do that on gphoto2 running on cygwin, it cannot detect > anything. Is this some issue with the usb lib? Very

Re: Encounter undefined reference to `_libintl_dgettext'

2010-06-01 Thread aldray
posting annoying in email? > > -- > Problem reports: http://cygwin.com/problems.html > FAQ: http://cygwin.com/faq/ > Documentation: http://cygwin.com/docs.html > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > > > -- View

Re: Encounter undefined reference to `_libintl_dgettext'

2010-06-01 Thread Larry Hall (Cygwin)
On 6/1/2010 2:37 AM, aldray wrote: I found a version 2.4.7.x in the url you gave. i manage to get the gphoto installed. however it is unable to detect my camera A520 plugged into the usb. below is the debug statement. Sorry, I don't know anything about gphoto2. From what I can see, this is cam

Re: Encounter undefined reference to `_libintl_dgettext'

2010-05-31 Thread aldray
akov, >> How do i apply the patches you mentioned in the url? >> I am quite new to cygwin. > > The README explains that. > >> I am using libgphoto2-2.4.9.1. > > If you really need 2.4.9.1, you'll have to build this yourself, as you > intended. But i

Re: Encounter undefined reference to `_libintl_dgettext'

2010-05-26 Thread Larry Hall (Cygwin)
On 5/26/2010 10:25 PM, aldray wrote: Hi Yaakov, How do i apply the patches you mentioned in the url? I am quite new to cygwin. The README explains that. I am using libgphoto2-2.4.9.1. If you really need 2.4.9.1, you'll have to build this yourself, as you intended. But if you're flexible,

Re: Encounter undefined reference to `_libintl_dgettext'

2010-05-26 Thread aldray
faq/ > Documentation: http://cygwin.com/docs.html > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > > > -- View this message in context: http://old.nabble.com/Encounter-undefined-reference-to-%60_libintl_dgettext%27-tp28667111p28688764.html Sent from

Re: Encounter undefined reference to `_libintl_dgettext'

2010-05-25 Thread aldray
Hi, after adding in the 'LDFLAGS=-lintl', i am encountering this issue with the camlibs for adc. Any idea what is the issue for this? adc65/.libs/adc65.o: In function `adc65_exchange': /home/S-SATORU/libgphoto2-2.4.3/camlibs/adc65/adc65.c:51: undefined reference to Â*`_gp_po

Re: Encounter undefined reference to `_libintl_dgettext'

2010-05-25 Thread Yaakov (Cygwin/X)
On 2010-05-25 06:15, aldray wrote: Hi all, I encounter some issue when installing gphoto on cygwin. Anyone knows how to resolve this? http://cygwin-ports.svn.sourceforge.net/viewvc/cygwin-ports/ports/trunk/graphics/libgphoto2/ Yaakov -- Problem reports: http://cygwin.com/problems.html

Re: Encounter undefined reference to `_libintl_dgettext'

2010-05-25 Thread Dave Korn
On 25/05/2010 12:15, aldray wrote: > Hi all, > I encounter some issue when installing gphoto on cygwin. Anyone knows how to > resolve this? Adding 'LDFLAGS=-lintl' at configure time should do it. cheers, DaveK -- Problem reports: http://cygwin.com/problems.html FAQ:

Encounter undefined reference to `_libintl_dgettext'

2010-05-25 Thread aldray
rive/d/libgphoto2-2.4.9.1/libgphoto2_port/ptpip ' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/cygdrive/d/libgphoto2-2.4.9.1/libgphoto2_port' make[2]: *** [all] Error 2 make[2]: Leaving directory `/cygdrive/d/libgphoto2-2.4.9.1/libgphoto2_port' make[1]: *** [all-recur

Re: "undefined reference to `_JNI_CreateJavaVM'"

2010-02-18 Thread Larry Hall (Cygwin)
u're in a POSIX environment (because you are). You should avoid using the "win32" includes. Your undefined reference is likely coming about because of a mixture of calling conventions though. You need to look at the calling convention that the JNI stuff uses. Compiling with Cygw

Re: "undefined reference to `_JNI_CreateJavaVM'"

2010-02-18 Thread Gary
On Thu, Feb 18, 2010 at 11:47:13AM -0500, Larry Hall (Cygwin) wrote: > On 02/18/2010 05:43 AM, Gary wrote: > >I've basically followed along with what is written at > >http://www.inonit.com/cygwin/jni/invocationApi/ (built an import > >library, passed ld the "-L. -ljvm" parameters, and so on). One

Re: "undefined reference to `_JNI_CreateJavaVM'"

2010-02-18 Thread Larry Hall (Cygwin)
On 02/18/2010 05:43 AM, Gary wrote: I've basically followed along with what is written at http://www.inonit.com/cygwin/jni/invocationApi/ (built an import library, passed ld the "-L. -ljvm" parameters, and so on). One difference is that gcc no longer supports -mno-cygwin, but I'm not convinced t

"undefined reference to `_JNI_CreateJavaVM'"

2010-02-18 Thread Gary
I am trying to call some Java code from C via JNI, and am having problems building: main.o:main.c:(.text+0xcc): undefined reference to `_JNI_CreateJavaVM' I've basically followed along with what is written at http://www.inonit.com/cygwin/jni/invocationApi/ (built an import library, pas

Re: Problems linking--"undefined reference to..."

2010-01-29 Thread Greg Chicares
main(int, > char**)': [...] > traj_int_obj.o:traj_int_obj.cc:(.text+0x12): undefined > reference to `_mcount' '_mcount' is used by gprof. If an object file was built with '-pg', then you need to use '-pg' for linking, too. -- Problem reports: http://cygwin.com/proble

Problems linking--"undefined reference to..."

2010-01-29 Thread Peter Mills
model1 model1.cc -L/home/Petey/lib -ldataset-g -lpetey -lsparse-g -lgsl -lgslcblas /tmp/cc5e9G8Z.o: In function `_ZN7datasetD0Ev': /home/Petey/include/simple_temp.h:(.dtors+0x0): undefined reference to `global destructors keyed to x_grid' /home/Petey/lib/libdataset-g.a(simple_temp

Re: undefined reference to `___real__Znwj'

2010-01-20 Thread Dave Korn
On 18/12/2009 20:01, Dave "What part of PCYMTNQREAIYR isn't obvious? ;-)" Korn wrote: > The problem is a bug in the linker, so you'll need to check out binutils > from sourceware.org cvs and apply the attached > weaksyms-vs-undefs-order-of-ref-fix-take-2.diff patch. I misunderstood this probl

Re: undefined reference to `___real__Znwj'

2009-12-18 Thread Dave "What part of PCYMTNQREAIYR isn't obvious? ;-)" Korn
jojelino wrote: > thanks for replying. i needed it! > in fact, there is no need to change whole problematic cygwin source code to > fix aliasing problem.. > for me, just getting rid of '-Werror' from makefile.in resolves the problem. > it just complains for some lines of warning :) Yeah, and ju

Re: undefined reference to `___real__Znwj'

2009-12-18 Thread jojelino
thanks for replying. i needed it! in fact, there is no need to change whole problematic cygwin source code to fix aliasing problem.. for me, just getting rid of '-Werror' from makefile.in resolves the problem. it just complains for some lines of warning :) "Dave "What part of PCYMTNQREAIYR isn't o

Re: undefined reference to `___real__Znwj'

2009-12-18 Thread Dave "What part of PCYMTNQREAIYR isn't obvious? ;-)" Korn
amp; BSF_WEAK) != 0 && addit && sym_hash + && (*sym_hash)->root.type == bfd_link_hash_undefined) + { + /* If we try to add a PE weak external after having already + seen an undefined reference to it in an earlier object, + _bfd_generic_link_add_one_symbol will return

Re: undefined reference to `___real__Znwj'

2009-12-17 Thread jojelino
oh my.. this is exact step i used. compile gcc with latest git reprository i used >./configure --prefix=/usr/local/cc --enable-newlib-mb --enable-newlib-iconv > --enable-newlib-multithread to build cygwin. (it would be good to clarify i got from cvs. so cygwin 1.7.2) >make -j 10 because of speed

Re: undefined reference to `___real__Znwj'

2009-12-17 Thread Dave Korn
jojelino wrote: > tested with gcc version 4.5.0 20091217 (experimental) (GCC) You're going to have to describe the exact steps to reproduce this problem. As far as I can see the winsup directory doesn't come anywhere close to building with 4.5.0 at the moment, so I don't understand what exactly

Re: undefined reference to `___real__Znwj'

2009-12-17 Thread Dave Korn
jojelino wrote: > i'm using GNU nm (GNU Binutils) 2.20.51.20091023 Right, that should be up-to-date enough. I'll post more when I've managed to reproduce the problem. > "Dave Korn" http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwi

Re: undefined reference to `___real__Znwj'

2009-12-17 Thread jojelino
p/i686-pc-cygwin/winsup/cygwin/libcygwin.a(_cygwin_crt0_common.o):_cyg >> win_crt0_common.cc:(.data+0x0): undefined reference to `___real__Znwj' >> /tmp/winsup/i686-pc-cygwin/winsup/cygwin/libcygwin.a(_cygwin_crt0_common.o):_cyg >> win_crt0_common.cc:(.data+0x4): undefined

Re: undefined reference to `___real__Znwj'

2009-12-17 Thread Dave Korn
jojelino wrote: > tested with gcc version 4.5.0 20091217 (experimental) (GCC) > cygwin0.dll have __real__z* symbol... > /tmp/winsup/i686-pc-cygwin/winsup/cygwin/libcygwin.a(_cygwin_crt0_common.o):_cyg > win_crt0_common.cc:(.data+0x0): undefined reference to `___real__Znwj' >

undefined reference to `___real__Znwj'

2009-12-17 Thread jojelino
helper.o bsd_log.o bsd_mutex.o sysv_msg.o sysv_sem.o s ysv_shm.o setpwd.o /tmp/winsup/i686-pc-cygwin/winsup/cygwin/version.o -static -s tatic-libgcc -L/tmp/winsup/i686-pc-cygwin/winsup/cygwin -lntdll /tmp/winsup/i686-pc-cygwin/winsup/cygwin/libcygwin.a(_cygwin_crt0_common.o):_cyg win_crt0_common.

Re: [1.7]/usr/lib/libcygwin.a(libcmain.o):(.text+0xa9): undefined reference to `_winm...@16'

2009-11-27 Thread Tatsuro MATSUOKA
Hello --- Csaba Raduly wrote: > What library should I link to overcome the above: undefined reference to > `_winm...@16' ? > > You may want to check http://www.bloodshed.net/dev/faq.html#winmain > There appears to be no .o in that commandline, so there may be no >

Re: [1.7]/usr/lib/libcygwin.a(libcmain.o):(.text+0xa9): undefined reference to `_winm...@16'

2009-11-27 Thread Csaba Raduly
-lfreetype -lz -lgobject-2.0 > -lgmodule-2.0 -lglib-2.0 > -lintl -liconv > /usr/lib/libcygwin.a(libcmain.o):(.text+0xa9): undefined reference to > `_winm...@16' > > What library should I link to overcome the above: undefined reference to > `_winm...@16' ? You

R: [1.7]/usr/lib/libcygwin.a(libcmain.o):(.text+0xa9): undefined reference to `_winm...@16'

2009-11-26 Thread Marco Atzeri
pangocairo-1.0 > -lcairo > -lpangoft2-1.0 -lpixman-1 -lglitz -lpng12 -lxcb-render-util > -lXrender -lxcb-render -lX11 -lxcb -lXau > -lXdmcp -lpango-1.0 -lm -lfontconfig -lexpat -lfreetype -lz > -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 > -lintl -liconv  > /usr/lib/libcygwin.a(libcmain.o):

[1.7]/usr/lib/libcygwin.a(libcmain.o):(.text+0xa9): undefined reference to `_winm...@16'

2009-11-26 Thread Tatsuro MATSUOKA
-lxcb-render -lX11 -lxcb -lXau -lXdmcp -lpango-1.0 -lm -lfontconfig -lexpat -lfreetype -lz -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -lintl -liconv /usr/lib/libcygwin.a(libcmain.o):(.text+0xa9): undefined reference to `_winm...@16' What library should I link to overcome the above: unde

Build of cygwin-1.5.25-15 Fails -- undefined reference to `___mingw_vfprintf'

2009-08-04 Thread Dan Smisko
zio.o):gzio.c:(.text+0x1b): undefined reference to `___mingw_vfprintf' /usr/i686-pc-mingw32/lib/libz.a(gzio.o):gzio.c:(.text+0x4b): undefined reference to `___mingw_vsprintf' collect2: ld returned 1 exit status make[3]: *** [cygcheck.exe] Error 1 make[3]: Leaving directory `/tmp/cygwin-

Re: undefined reference

2009-07-01 Thread Winderson Martins de Souza
Hi Rob, thanks for your reply.. Sorry, but I didn't understand what you said by strike, bu when I trie the normal configure, I get the following output: 69: undefined reference to `_xmalloc' /home/Winmat/cygwin-ports/ports/branches/cygwin-1.5/devel/gettext/gettext-0.17/gettext-tools/

Re: undefined reference

2009-06-26 Thread Sisyphus
- Original Message - From: "Winderson Martins de Souza" To: ; Sent: Friday, June 26, 2009 11:32 PM Subject: Fwd: undefined reference Hello, I'm trying to compile gettext on cygwin, but I'm getting an undefined reference error, could anyone help?? I'm

Fwd: undefined reference

2009-06-26 Thread Winderson Martins de Souza
Hello, I'm trying to compile gettext on cygwin, but I'm getting an undefined reference error, could anyone help?? I'm running configure without shared library, as with it I was getting another undefined error, then I'm stuck here rts/branches/cygwin-1.5/devel/gettext/gettext-

Fwd: undefined reference

2009-06-26 Thread Winderson Martins de Souza
Hello, I'm trying to compile gettext on cygwin, but I'm getting an undefined reference error, could anyone help?? I'm running configure without shared library, as with it I was getting another undefined error, then I'm stuck here rts/branches/cygwin-1.5/devel/gettext/gettext-

Re: xfce4 - undefined reference

2009-06-19 Thread Winderson Martins de Souza
Souza wrote: >>>> >>>> can some help me to figure out how to by pass this error? I'm trying >>>> to compile the last version of xfce under cygwin, and that's the >>>> output: >>>> >>>> $ make >>>> make  all-r

Re: xfce4 - undefined reference

2009-06-19 Thread Winderson Martins de Souza
yes, I do have mingw-runtime and mingw-gcc installed, but when I try to remove them, the cygwin setup installs then again as required packages for gcc. Is there a way to use gcc wihtout them? 2009/6/19 Yaakov (Cygwin/X) : > On 19/06/2009 12:59, Winderson Martins de Souza wrote: >> >> checking GOBJ

Re: xfce4 - undefined reference

2009-06-19 Thread Larry Hall (Cygwin)
de Souza wrote: can some help me to figure out how to by pass this error? I'm trying to compile the last version of xfce under cygwin, and that's the output: $ make make all-recursive In function `internal_initialize': /home/Bug/xfce4/tar/libxfce4util-4.6.1/libxfce4util/

Re: xfce4 - undefined reference

2009-06-19 Thread Yaakov (Cygwin/X)
On 19/06/2009 12:59, Winderson Martins de Souza wrote: checking GOBJECT_CFLAGS... -mms-bitfields -IC:/cygwin/include/glib-2.0 -IC:/cygwin/lib/glib-2.0/include checking GOBJECT_LIBS... -LC:/cygwin/lib -lgobject-2.0 -lglib-2.0 -lintl This looks like you're trying to mix Cygwin and MinGW, which wo

Re: xfce4 - undefined reference

2009-06-19 Thread Winderson Martins de Souza
;> >> can some help me to figure out how to by pass this error? I'm trying >> to compile the last version of xfce under cygwin, and that's the >> output: >> >> $ make >> make  all-recursive > > > >> In function `internal_initialize&#

Re: xfce4 - undefined reference

2009-06-19 Thread Larry Hall (Cygwin)
.1/libxfce4util/xfce-miscutils.c:88: undefined reference to `_g_get_home_dir Does xfce have a configure script? If so, did you run it? If you're just trying to get a binary version for Cygwin, you might want to just point 'setup.exe' as <http://sourceware.org/cygwinports/>

xfce4 - undefined reference

2009-06-19 Thread Winderson Martins de Souza
l/lib/libglib-2.0.dll.a -luser32 -lkernel32 /usr/lib/libintl.dll.a /usr/lib/libiconv.dll.a -L/usr/local/lib ../libxfce4util/.libs/libxfce4util.a(libxfce4util_la-xfce-miscutils.o): In function `internal_initialize': /home/Bug/xfce4/tar/libxfce4util-4.6.1/libxfce4util/xfce-miscutils.c:88: undef

Problem on compiling fcitx, undefined reference to '_XpmCreateImageFromData'

2009-06-05 Thread Xu Ning
o sp.o to ols.o ui.o table.o xim.o qw.o vk.o about.o QuickPhrase.o AutoEng.o extra.o internalVersion.o ../lib/ libXimd.a -lX11 InputWindow.o: In function `DrawInputWindow': /home/Administrator/tools/fcitx-3.6.0-rc/src/InputWindow.c:444: undefined reference to `_XpmCreateIm ageFromData' /home/A

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-02-19 Thread Matt Wozniski
On 2/19/09, Andrew Schulman wrote: > > Note that for Emacs to recognize screen-256color, you need to add the > > following into "term/screen-256color.el" in the load path (for Emacs 22): > > > > (defun terminal-init-screen () > > "Terminal initialization function for screen." > > ;; Use th

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-02-19 Thread Andrew Schulman
> Note that for Emacs to recognize screen-256color, you need to add the > following into "term/screen-256color.el" in the load path (for Emacs 22): > > (defun terminal-init-screen () > "Terminal initialization function for screen." > ;; Use the xterm color initialization code. > (load "term/

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-02-19 Thread Presto Ten
Terminal initialization function for screen." ;; Use the xterm color initialization code. (load "term/xterm") (xterm-register-default-colors) (tty-set-up-initial-frame-faces)) -p -- View this message in context: http://www.nabble.com/Can%27t-compile-Screen%3A-Undefine

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-31 Thread Matt Wozniski
On Fri, Jan 30, 2009 at 5:19 AM, Andrew Schulman wrote: >> The yellow >> color vim uses when running on 16 colors is kind of hard to read, especially >> on >> a white background (which I use). There are some good 256-color themes out >> there (desert256, inkpot), and I wanted to use them. See al

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-30 Thread Andrew Schulman
> The yellow > color vim uses when running on 16 colors is kind of hard to read, especially > on > a white background (which I use). There are some good 256-color themes out > there (desert256, inkpot), and I wanted to use them. Good enough, thanks. -- Unsubscribe info: http://cygwin.com/

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-29 Thread Justin L .
Andrew Schulman writes: > I'm curious: where do you use this? Well, I'll admit to some degree that it's yak shaving (http://projects.csail.mit.edu/gsb/old-archive/gsb-archive/gsb2000-02-11.html), but the use case for me is running Screen locally and having multiple terminals open remotely, with

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-29 Thread Andrew Schulman
> screen-256color: GNU Screen compiled with the --enable-colors256 flag; without > this flag, terminals launched from within Screen can only show 16 colors. > Depending on your terminal, you may need to launch Screen as > 'TERM=screen-256color screen' in order for 256 colors to work. OK, thanks.

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-29 Thread Justin L .
Andrew Schulman writes: > TERM=screen-256color screen > > gives 256 colors, at least in Cygwin 1.5. Can you confirm this? Yes. Beautiful, Andrew. You said you needed text for the release announcement. I'm not sure what it's supposed to look like, but you can use this, if it works: screen-

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-29 Thread Andrew Schulman
> I'm using a Perl script, available at > http://www.frexx.de/xterm-256-notes/data/256colors2.pl, to test whether my > terminal is giving me 256 colors. Thanks, this is helpful. > It works when I run it from a vanilla bash > prompt, but not from within Screen, even after I installed your build.

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-27 Thread Justin L .
Thanks for looking at this, Andrew. I might have messed something up, but after extracting your build, I still don't get 256 colors within a Screen terminal. I'm using a Perl script, available at http://www.frexx.de/xterm-256-notes/data/256colors2.pl, to test whether my terminal is giving me 2

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-27 Thread Andrew Schulman
> >>> Installing screen-4.0.3-1 > /usr/src/screen-4.0.3-1/src/screen-4.0.3/etc/mkinstalldirs > /usr/src/screen-4.0.3-1/inst/usr/bin /usr/src/screen-4.0.3-1/inst`sed < > config.h > -n -e '/define SCREENENCODINGS/s/^.*"\([^"]*\)"/\1/p'` > /usr/bin/install -c screen /usr/src/screen-4.0.3-1/inst/usr/b

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-26 Thread Justin L .
> I'm guessing that you need libncurses-devel. Yep. That's what I was missing. > If it compiles cleanly and is of > interest then I can certainly package a new release with it. Unfortunately, I can't get it to compile cleanly when I add --enable-colors256 to the cygconf line. The output from

Re: Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-26 Thread Andrew Schulman
certainly package a new release with it. > display.o:display.c:(.text+0x76d): undefined reference to `__imp__ospeed' I don't have this problem when I compile screen. ospeed is defined in termcap.h, which comes in termcap and libncurses-devel. I'm guessing that you need libncurse

Can't compile Screen: Undefined reference to __imp__ospeed

2009-01-25 Thread Justin L .
I get the following error: display.o:display.c:(.text+0x76d): undefined reference to `__imp__ospeed' display.o:display.c:(.text+0xa68): undefined reference to `__imp__ospeed' display.o:display.c:(.text+0xb36): undefined reference to `__imp__ospeed' It's not clear to me if these error

[OT] Re: 1.5.18-1: undefined reference to `ffs' in mno-cygwin mode

2009-01-22 Thread Dave Korn
Dmitry Smirnov wrote: >> While this isn't a Cygwin issue (you're using '-mno-cygwin'), > Well, I never installed mingw separately. Is was a part of Cygwin > installation, so I supposed it has some relation. :-) Well, we give you a MinGW cross-compiler in the -mno-cygwin mode of gcc ... but we do

Re: 1.5.18-1: undefined reference to `ffs' in mno-cygwin mode

2009-01-22 Thread Dmitry Smirnov
> While this isn't a Cygwin issue (you're using '-mno-cygwin'), Well, I never installed mingw separately. Is was a part of Cygwin installation, so I supposed it has some relation. :-) I'll try to ask mingw guys. > This search: > http://www.google.com/search?q=ffs+qemu > leads to some links that l

Re: 1.5.18-1: undefined reference to `ffs' in mno-cygwin mode

2009-01-22 Thread Greg Chicares
On 2009-01-22 14:32Z, Dmitry Smirnov wrote: > > I was successfully built QEMU with -mno-cygwin and -O2 (default debug option). > But -O0 gives me the following: [...] > /cygdrive/d/Dvs/Project/qemu-0.9.1/hw/omap.c:125: undefined reference to `ffs' > omap.o:/cygdrive/d/Dvs/P

1.5.18-1: undefined reference to `ffs' in mno-cygwin mode

2009-01-22 Thread Dmitry Smirnov
2xx_gpio.o: In function `pxa2xx_gpio_handler_update': /cygdrive/d/Dvs/Project/qemu-0.9.1/hw/pxa2xx_gpio.c:129: undefined reference to `ffs' spitz.o: In function `scoop_writeb': /cygdrive/d/Dvs/Project/qemu-0.9.1/hw/spitz.c:561: undefined reference to `ffs' /cygdrive/d/Dvs/Pro

Re: undefined reference to '_cfmakeraw'

2008-09-12 Thread Christopher Faylor
On Fri, Sep 12, 2008 at 04:37:19PM -0400, Christopher Faylor wrote: >On Fri, Sep 12, 2008 at 12:49:47PM -0500, Andrew Bouchard wrote: >> undefined reference to '_cfmakeraw' > >A google search implies that you probably need to install the >libncurses-devel package. A

Re: undefined reference to '_cfmakeraw'

2008-09-12 Thread Yaakov (Cygwin Ports)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Andrew Bouchard wrote: > undefined reference to '_cfmakeraw' cfmakeraw, while available on Linux glibc, is not available on Cygwin. But the glibc manual tells us exactly what it does: http://www.gnu.org/software/libc/manual/html_node

Re: undefined reference to '_cfmakeraw'

2008-09-12 Thread Christopher Faylor
On Fri, Sep 12, 2008 at 12:49:47PM -0500, Andrew Bouchard wrote: > undefined reference to '_cfmakeraw' A google search implies that you probably need to install the libncurses-devel package. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem report

Re: undefined reference to '_cfmakeraw'

2008-09-12 Thread Andrew Bouchard
(1) Just to be sure, I went back and installed al of the cygwin packages available through the setup.exe file. It's still installing, and it looks like it will be for some time, but I already went through the list that I was able to find and made sure I had them all. (2) I did run a './conf

Re: undefined reference to '_cfmakeraw'

2008-09-12 Thread [EMAIL PROTECTED]
aining, so I have to admit a fair > amount of cluelessness here. The error that I get just before the installer > gets out of all the directories is: > > undefined reference to '_cfmakeraw' > > I've tried to Google the problem and searched the mailing lists, but I k

undefined reference to '_cfmakeraw'

2008-09-12 Thread Andrew Bouchard
efore the installer gets out of all the directories is: undefined reference to '_cfmakeraw' I've tried to Google the problem and searched the mailing lists, but I keep coming up with diff files that show code. I get the impression from various places that these are fixes of so

Re: 1.5.7 undefined reference to getreent when using mno-cygwin

2008-05-12 Thread Igor Peshansky
in32 calls for threading, sockets, semaphores, > > > etc. > > > > > > I know that I need to compile with the option -mno-cygwin to be able to > > > run > > > the program on > > > a computer without the cygwin.dll, which is what I want, however, whe

EXPAT 1.95.8 build error undefined reference to [EMAIL PROTECTED]'

2008-02-29 Thread Anik Pal
rsion-info 5:0:5 -rpath /usr/local/lib -o libexpat.la lib/xmlparse.lo lib/xm ltok.lo lib/xmlrole.lo /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../libcygwin.a(libcmain.o):(.text+0x ab): undefined reference to [EMAIL PROTECTED]' collect2: ld returned 1 exit status make: *** [libexpat.la] Error

  1   2   3   >