Re: Trying to compile in Windows
Bill Deegan <[email protected]>
| Newsgroups | gmane.comp.programming.tools.scons.user |
|---|---|
| Message-ID | <CAEyG4CHrqZ0LkrQJeKOP3po63zED=YM+W0emz+OtZoJVH7YXEA@mail.gmail.com> |
what version of scons? What version of python? What version of windows? (32 or 64 bit?) On Mon, Apr 22, 2019 at 4:04 PM Javier GONZALEZ PLATAS <[email protected]> wrote: > Nothing change! > > Javier González Platas > > > > Departamento de Física > Avda. Astrofísico Fco. Sánchez s/n > Apartado 456 > 38200 La Laguna. S/C de Tenerife > > T. 922 318 251 > M. 629 080 140 > > ull.es <https://www.ull.es/> > ------------------------------ > Aviso de confidencialidad > <https://www.ull.es/informacion-sobre-web-institucional/#aviso-confidencialidad> > > > El lun., 22 abr. 2019 a las 18:33, Bill Deegan (<[email protected]>) > escribió: > >> Try adding >> env['ENV'] = os.environ >> at the end of your SConstruct and see if that changes anything.. >> >> On Mon, Apr 22, 2019 at 12:31 PM Bill Deegan <[email protected]> >> wrote: >> >>> both 32 and 64 bits? >>> >>> On Mon, Apr 22, 2019 at 11:33 AM Javier GONZALEZ PLATAS < >>> [email protected]> wrote: >>> >>>> Right! >>>> >>>> Javier González Platas >>>> >>>> >>>> >>>> Departamento de Física >>>> Avda. Astrofísico Fco. Sánchez s/n >>>> Apartado 456 >>>> 38200 La Laguna. S/C de Tenerife >>>> >>>> T. 922 318 251 >>>> M. 629 080 140 >>>> >>>> ull.es <https://www.ull.es/> >>>> ------------------------------ >>>> Aviso de confidencialidad >>>> <https://www.ull.es/informacion-sobre-web-institucional/#aviso-confidencialidad> >>>> >>>> >>>> El lun., 22 abr. 2019 a las 17:29, Bill Deegan (< >>>> [email protected]>) escribió: >>>> >>>>> If you bring up the appropriate cmd shell and just run >>>>> >>>>> link /MACHINE:X86 /SUBSYSTEM:console /OUT:testing.exe test_1.obj >>>>> test_2.obj Test_submodules.obj >>>>> >>>>> >>>>> Which is failing for SCons, does it link? >>>>> >>>>> >>>>> -Bill >>>>> >>>>> On Mon, Apr 22, 2019 at 10:21 AM Javier GONZALEZ PLATAS < >>>>> [email protected]> wrote: >>>>> >>>>>> Additional comment. >>>>>> In the case of 32bits, the problems seems about link procedure. I can >>>>>> do the compilation of the files.... >>>>>> >>>>>> Javier González Platas >>>>>> >>>>>> >>>>>> >>>>>> Departamento de Física >>>>>> Avda. Astrofísico Fco. Sánchez s/n >>>>>> Apartado 456 >>>>>> 38200 La Laguna. S/C de Tenerife >>>>>> >>>>>> T. 922 318 251 >>>>>> M. 629 080 140 >>>>>> >>>>>> ull.es <https://www.ull.es/> >>>>>> ------------------------------ >>>>>> Aviso de confidencialidad >>>>>> <https://www.ull.es/informacion-sobre-web-institucional/#aviso-confidencialidad> >>>>>> >>>>>> >>>>>> El lun., 22 abr. 2019 a las 16:00, Javier GONZALEZ PLATAS (< >>>>>> [email protected]>) escribió: >>>>>> >>>>>>> OK >>>>>>> >>>>>>> Here you have them. >>>>>>> >>>>>>> >>>>>>> >>>>>>> Javier Gonzalez-Platas >>>>>>> Dpto. de Física - Universidad de La Laguna >>>>>>> >>>>>>> >>>>>>> >>>>>>> *De: *Bill Deegan <[email protected]> >>>>>>> *Enviado: *lunes, 22 de abril de 2019 15:48 >>>>>>> *Para: *SCons users mailing list <[email protected]> >>>>>>> *Asunto: *Re: [Scons-users] Trying to compile in Windows >>>>>>> >>>>>>> >>>>>>> >>>>>>> Bring up a 32 bit cmd window type : >>>>>>> >>>>>>> set > intel32.txt >>>>>>> >>>>>>> Then do the same on 64 bit cmd window. >>>>>>> >>>>>>> >>>>>>> >>>>>>> Intel Fortran + SCons may not be that heavily used and/or recent >>>>>>> changes in Intel Fortran may have changed how it needs to be configured >>>>>>> within scons. >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> On Mon, Apr 22, 2019 at 5:24 AM Javier GONZALEZ PLATAS < >>>>>>> [email protected]> wrote: >>>>>>> >>>>>>> Thanks for your comments. >>>>>>> >>>>>>> >>>>>>> >>>>>>> Each CMD terminal in windows have their respective definitions for >>>>>>> compile and link correctly depending if I want do a 32 or 64 bits programs. >>>>>>> >>>>>>> I thought that scons was taking all environment information from the >>>>>>> terminal CMD that it was called then I put env= environment(ENV=os.environ) >>>>>>> >>>>>>> on SConstruct. >>>>>>> >>>>>>> If not, how can I do to pass the information from environment >>>>>>> variables in Windows to "SCONS" environment? I have tried the %PATH% or >>>>>>> similar without success. I'm not expert on python.... >>>>>>> >>>>>>> >>>>>>> >>>>>>> *Javier González Platas* >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> [image: https://static.ull.es/marca/logo-ull-firma.png] >>>>>>> >>>>>>> >>>>>>> >>>>>>> *Departamento de Física* >>>>>>> >>>>>>> Avda. Astrofísico Fco. Sánchez s/n >>>>>>> >>>>>>> Apartado 456 >>>>>>> >>>>>>> 38200 La Laguna. S/C de Tenerife >>>>>>> >>>>>>> >>>>>>> >>>>>>> T. 922 318 251 >>>>>>> >>>>>>> M. 629 080 140 >>>>>>> >>>>>>> >>>>>>> >>>>>>> *ull.es* <https://www.ull.es/> >>>>>>> >>>>>>> Aviso de confidencialidad >>>>>>> <https://www.ull.es/informacion-sobre-web-institucional/#aviso-confidencialidad> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>>> El lun., 22 abr. 2019 a las 11:07, Javier Llopis (<[email protected]>) >>>>>>> escribió: >>>>>>> >>>>>>> My guess about what is happening here is that Scons is locating the >>>>>>> right executable tools, probably using the PATH variable, but it >>>>>>> still >>>>>>> tries to use the 64 bit runtime libraries, which is why the linker >>>>>>> gives >>>>>>> unresolved symbols errors. >>>>>>> >>>>>>> SCons, for the most part, ignores the external environment on which >>>>>>> it >>>>>>> is run and tries to locate the tools and libraries it needs by >>>>>>> itself. I >>>>>>> believe the PATH variable was used here as a last resort. The last >>>>>>> time >>>>>>> I tried to compile a Fortran program using Scons and Intel Fortran >>>>>>> on >>>>>>> Windows (~2 years ago) I had lots of issues, looked at the code and >>>>>>> found the tool search to be a bit dated, designed for DEC Fortran, >>>>>>> the >>>>>>> product that was bought by Intel over a decade ago and turned into >>>>>>> Intel >>>>>>> Fortran. To be honest, tool location on Windows for anything other >>>>>>> than >>>>>>> MS Visual Studio seems to be a major headache and comes up on this >>>>>>> list >>>>>>> somewhat regularly. >>>>>>> >>>>>>> What you might need to do is recreate the correct environment on >>>>>>> Scons. >>>>>>> The Intel Command Windows are probably running a .bat script that >>>>>>> sets >>>>>>> up the correct environment, you need to analyse that script and do >>>>>>> something similar on Scons to find the right tools. Sorry I can't be >>>>>>> more specific. >>>>>>> >>>>>>> Cheers >>>>>>> J >>>>>>> >>>>>>> >>>>>>> On 2019-04-22 07:42, Javier GONZALEZ PLATAS wrote: >>>>>>> > The current state is the next: >>>>>>> > I have the last version of Intel Fortran compiler installed in my >>>>>>> > Windows 10. >>>>>>> > Scons was installed as package into Anaconda. Is also the last >>>>>>> version >>>>>>> > 3.0.5. >>>>>>> > >>>>>>> > Intel Parallel fortran creates a two CMD terminals. One for >>>>>>> creating >>>>>>> > 32bits programs and >>>>>>> > one for 64 bits. I haven't problems to compile and link fortran >>>>>>> > programs in both systems. >>>>>>> > >>>>>>> > The case is, when I try to compile and linhk an easy example in the >>>>>>> > cmd for 32 bits I have >>>>>>> > seriuos problems and yesterday I sent the output that I got using >>>>>>> > scons. >>>>>>> > >>>>>>> > For my surprise, I have done the same thing using the CMD terminal >>>>>>> > defined for 64 bits and >>>>>>> > it works!!!! >>>>>>> > >>>>>>> > The question is how can I do in order that compile and link using >>>>>>> 32 >>>>>>> > bits. >>>>>>> > >>>>>>> > Here is my actual simple SConstruct file >>>>>>> > >>>>>>> > Javier González Platas >>>>>>> > >>>>>>> > Departamento de Física >>>>>>> > Avda. Astrofísico Fco. Sánchez s/n >>>>>>> > >>>>>>> > Apartado 456 >>>>>>> > >>>>>>> > 38200 La Laguna. S/C de Tenerife >>>>>>> > >>>>>>> > T. 922 318 251 >>>>>>> > M. 629 080 140 >>>>>>> > >>>>>>> > ull.es [1] >>>>>>> > >>>>>>> > ------------------------- >>>>>>> > >>>>>>> > Aviso de confidencialidad [2] >>>>>>> > >>>>>>> > El dom., 21 abr. 2019 a las 23:57, Bill Deegan >>>>>>> > (<[email protected]>) escribió: >>>>>>> > >>>>>>> >> Looks like you need to specify some libraries to link against. >>>>>>> >> What version of Python? What version of SCons? >>>>>>> >> Can you share a simple repeatable SConstruct to show the problem? >>>>>>> >> (Or create an example repo on github/bitbucket/etc) >>>>>>> >> >>>>>>> >> On Sun, Apr 21, 2019 at 5:20 PM Javier GONZALEZ PLATAS >>>>>>> >> <[email protected]> wrote: >>>>>>> >> >>>>>>> >>> For any reason, during the link procress I have the next >>>>>>> messages. >>>>>>> >>> Any suggestion? >>>>>>> >>> >>>>>>> >>> (base) F:\Scons_Test\test_submodules>scons >>>>>>> >>> >>>>>>> >>> scons: Reading SConscript files ... >>>>>>> >>> >>>>>>> >>> scons: done reading SConscript files. >>>>>>> >>> >>>>>>> >>> scons: Building targets ... >>>>>>> >>> >>>>>>> >>> link /MACHINE:X86 /SUBSYSTEM:console /OUT:testing.exe test_1.obj >>>>>>> >>> test_2.obj Test_submodules.obj >>>>>>> >>> >>>>>>> >>> Microsoft (R) Incremental Linker Version 14.16.27026.1 >>>>>>> >>> >>>>>>> >>> Copyright (C) Microsoft Corporation. All rights reserved. >>>>>>> >>> >>>>>>> >>> LINK : error LNK2001: símbolo externo _mainCRTStartup sin >>>>>>> >>> resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__Sleep@4 sin resolver al que se hace referencia en >>>>>>> >>> la función _for__reentrancy_cleanup >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__Sleep@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__Sleep@4 sin resolver >>>>>>> >>> >>>>>>> >>> ifconsol.lib(for_m_console.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__Sleep@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__InterlockedExchange@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__reentrancy_cleanup >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__InterlockedExchange@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__InterlockedExchange@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo _signal sin resolver al que se hace referencia en la >>>>>>> >>> función _for__reentrancy_cleanup >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> _signal sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo >>>>>>> >>> _signal sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__TlsSetValue@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__destroy_threadstor >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__TlsGetValue@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__destroy_threadstor >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__TlsFree@4 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for__destroy_threadstor_index >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__SetLastError@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _create_threadstor_key >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetLastError@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetLastError@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetLastError@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__TlsAlloc@0 sin resolver al que se hace referencia >>>>>>> >>> en la función _create_threadstor_key >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo _atexit sin resolver al que se hace referencia en la >>>>>>> >>> función _create_threadstor_key >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> _atexit sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> _atexit sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__ReleaseMutex@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__release_mutex >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__CloseHandle@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__CloseHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__CloseHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__CloseHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__CloseHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__CloseHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__WaitForSingleObject@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__thread_clean >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__WaitForSingleObject@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__WaitForSingleObject@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo >>>>>>> >>> externo __endthread sin resolver al que se hace referencia en la >>>>>>> >>> función _for__thread_clean >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__WriteFile@20 sin resolver al que se hace referencia en la >>>>>>> >>> función _for_write_seq >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__WriteFile@20 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__WriteFile@20 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__WriteFile@20 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__WriteFile@20 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_m_qwin.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetLastError@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetFileType@4 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _for__get_s >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetFileType@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetFileType@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetFileType@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetFileType@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetFileType@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SetFilePointer@16 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for_write_seq >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetFilePointer@16 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(fast_mem_ops.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(proc_init_utils.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_x.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(new_proc_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_t_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_t.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_s_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_s.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_x_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_x.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_preconnected_units_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_default_io_sizes_env_init.obj) : error >>>>>>> >>> LNK2001: símbolo externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_fmt_comp.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_x.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_s.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_m_qwin.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_vax_g.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_vax_d.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ibm_long.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cray.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ieee_single.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ieee_double.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_vax_f.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ibm_short.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_desc_item.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_io_util.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_fmt_val.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> ___security_cookie sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(fast_mem_ops.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(proc_init_utils.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_x.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(new_proc_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_t_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_t.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_s_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_s.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_x_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_x.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_preconnected_units_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_default_io_sizes_env_init.obj) : error >>>>>>> >>> LNK2001: símbolo externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_fmt_comp.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_x.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_s.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_m_qwin.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_vax_g.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_vax_d.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ibm_long.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cray.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ieee_single.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ieee_double.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_vax_f.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_ibm_short.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_desc_item.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_io_util.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_fmt_val.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> @__security_check_cookie@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_lub_mgt.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetCurrentThreadId@0 sin resolver al que se hace >>>>>>> referencia >>>>>>> >>> en la función _for__acquire_lun >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetCurrentThreadId@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetStdHandle@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__prompt_user >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetStdHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_lub_mgt.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetStdHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetStdHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetStdHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetStdHandle@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(fast_mem_ops.obj) : error LNK2019: símbolo externo >>>>>>> >>> _exit sin resolver al que se hace referencia en la función >>>>>>> >>> ___cacheSize >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_exit.obj) : error LNK2001: símbolo externo >>>>>>> >>> _exit sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo _exit sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo _exit sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(new_proc_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> _exit sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> _malloc sin resolver al que se hace referencia en la función >>>>>>> >>> _for__get_vm >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> _realloc sin resolver al que se hace referencia en la función >>>>>>> >>> _for__realloc_vm >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> _free sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_s.obj) : error LNK2001: símbolo externo >>>>>>> >>> _free sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2001: símbolo externo >>>>>>> >>> _free sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2001: símbolo externo >>>>>>> >>> _free sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2001: símbolo externo >>>>>>> >>> _free sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_x.obj) : error LNK2001: símbolo externo >>>>>>> >>> _free sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__VirtualAlloc@16 sin resolver al que se hace referencia en >>>>>>> >>> la función _for_allocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetSystemInfo@4 sin resolver al que se hace referencia en >>>>>>> >>> la función _for_allocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_default_io_sizes_env_init.obj) : error >>>>>>> >>> LNK2001: símbolo externo __imp__GetEnvironmentVariableA@12 sin >>>>>>> >>> resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_io_util.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_preconnected_units_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetEnvironmentVariableA@12 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> __aligned_malloc sin resolver al que se hace referencia en la >>>>>>> >>> función _for_allocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__VirtualFree@12 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _for_deallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2019: símbolo externo >>>>>>> >>> __aligned_free sin resolver al que se hace referencia en la >>>>>>> >>> función _for_deallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_text_to_int.obj) : error LNK2001: símbolo >>>>>>> >>> externo __allmul sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2001: símbolo externo >>>>>>> >>> __allmul sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo >>>>>>> >>> __allmul sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> __allmul sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_int_to_text.obj) : error LNK2001: símbolo >>>>>>> >>> externo __allmul sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2019: símbolo externo >>>>>>> >>> __alloca_probe sin resolver al que se hace referencia en la >>>>>>> >>> función _for__add_to_lf_table >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2019: símbolo externo >>>>>>> >>> __stricmp sin resolver al que se hace referencia en la función >>>>>>> >>> _for__add_to_lf_table >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> __stricmp sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __stricmp sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __stricmp sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__FormatMessageA@28 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__io_return >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__FormatMessageA@28 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__LoadLibraryA@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__io_return >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__LoadLibraryA@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetThreadLocale@0 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__io_return >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetThreadLocale@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo _strncpy sin resolver al que se hace referencia en la >>>>>>> >>> función _for__reopen_file >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncpy sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__IsDebuggerPresent@0 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__issue_diagnostic >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__IsDebuggerPresent@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo _abort sin resolver al que se hace referencia en la >>>>>>> >>> función _for__issue_diagnostic >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> _abort sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __imp__GetProcAddress@8 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetProcAddress@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetProcAddress@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetProcAddress@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_exit_handler.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetProcAddress@8 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetProcAddress@8 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetModuleHandleA@4 sin resolver al que se hace referencia >>>>>>> >>> en la función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetModuleHandleA@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetModuleHandleA@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_exit_handler.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__GetModuleHandleA@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetModuleHandleA@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__FreeLibrary@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__message_catalog_close >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__CreateFileA@28 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__dump_msg_buff >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__CreateFileA@28 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo _strerror sin resolver al que se hace referencia en la >>>>>>> >>> función _for_gerror_i >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo >>>>>>> >>> externo _strncmp sin resolver al que se hace referencia en la >>>>>>> >>> función _for_gerror_i >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncmp sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncmp sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo _strncmp sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SetEndOfFile@4 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _for__put_su >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__SetEndOfFile@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__SetEndOfFile@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2019: símbolo externo >>>>>>> >>> __write sin resolver al que se hace referencia en la función >>>>>>> >>> _for__write_output. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2019: símbolo externo >>>>>>> >>> _strchr sin resolver al que se hace referencia en la función >>>>>>> >>> _SetRecType >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo _strchr sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2019: símbolo externo >>>>>>> >>> _strstr sin resolver al que se hace referencia en la función >>>>>>> >>> _SetRecType >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2019: símbolo externo >>>>>>> >>> _toupper sin resolver al que se hace referencia en la función >>>>>>> >>> _for_open >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo >>>>>>> >>> externo _toupper sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__DeleteCriticalSection@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__aio_destroy >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__LeaveCriticalSection@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__aio_acquire_lun_fname >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(tbk_traceback.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__LeaveCriticalSection@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __imp__LeaveCriticalSection@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__EnterCriticalSection@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__aio_acquire_lun_fname >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(tbk_traceback.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__EnterCriticalSection@4 sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __imp__EnterCriticalSection@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__ExitThread@4 sin resolver al que se hace referencia en la >>>>>>> >>> función _for__aio_acquire_lun. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__InitializeCriticalSection@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__aio_acquire_lun. >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __imp__InitializeCriticalSection@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__CreateEventA@16 sin resolver al que se hace referencia en >>>>>>> >>> la función _for__aio_acquire_lun. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SetEvent@4 sin resolver al que se hace referencia en la >>>>>>> >>> función _for__aio_acquire_lun. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__TerminateThread@8 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for__aio_release_lun. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__CreateThread@24 sin resolver al que se hace referencia en >>>>>>> >>> la función _for_asynchronous >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_io_util.obj) : error LNK2019: símbolo externo >>>>>>> >>> _isdigit sin resolver al que se hace referencia en la función >>>>>>> >>> _for_check_env_name >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2019: símbolo externo >>>>>>> >>> _isspace sin resolver al que se hace referencia en la función >>>>>>> >>> _for__udio_fmt >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_fmt_comp.obj) : error LNK2001: símbolo >>>>>>> >>> externo _isspace sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__MapViewOfFile@20 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for_avallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__CreateFileMappingA@24 sin resolver al que se hace >>>>>>> >>> referencia en la función _for_avallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__OpenFileMappingA@12 sin resolver al que se hace >>>>>>> referencia >>>>>>> >>> en la función _for_avallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> _rand sin resolver al que se hace referencia en la función >>>>>>> >>> _for_avallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __getpid sin resolver al que se hace referencia en la función >>>>>>> >>> _for_avallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__UnmapViewOfFile@4 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for_avdeallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetHandleInformation@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for_avdeallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__IsBadReadPtr@8 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _for_avdeallocate >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> __controlfp_s sin resolver al que se hace referencia en la >>>>>>> >>> función _for_get_fpe_ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> _memmove sin resolver al que se hace referencia en la función >>>>>>> >>> _for__nt_signal_handler >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo >>>>>>> >>> _memmove sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> ___pxcptinfoptrs sin resolver al que se hace referencia en la >>>>>>> >>> función _GETEXCEPTIONPTRSQQ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SetErrorMode@4 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _for_rtl_init_wrap_ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetCommandLineA@0 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for_rtl_init_wrap_ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetACP@0 sin resolver al que se hace referencia en la >>>>>>> >>> función _for_rtl_init_wrap_ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SetConsoleCtrlHandler@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for_rtl_init_wrap_ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> _getenv sin resolver al que se hace referencia en la función >>>>>>> >>> _for_rtl_init_wrap_ >>>>>>> >>> >>>>>>> >>> libirc.lib(fast_mem_ops.obj) : error LNK2001: símbolo externo >>>>>>> >>> _getenv sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> __clearfp sin resolver al que se hace referencia en la función >>>>>>> >>> _for_rtl_init_wrap_ >>>>>>> >>> >>>>>>> >>> libirc.lib(q2fp.obj) : error LNK2001: símbolo externo __fltused >>>>>>> >>> sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(ia32_divq.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(ia32_addsubq.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(qcomp.obj) : error LNK2001: símbolo externo __fltused >>>>>>> >>> sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(fp2q.obj) : error LNK2001: símbolo externo __fltused >>>>>>> >>> sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_s.obj) : error LNK2001: símbolo >>>>>>> >>> externo __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_x.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_nan_s.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_x.obj) : error LNK2001: símbolo >>>>>>> >>> externo __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_t_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_a_to_t.obj) : error LNK2001: símbolo >>>>>>> >>> externo __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvtas_s_to_a.obj) : error LNK2001: símbolo >>>>>>> >>> externo __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_t.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_cvtas_s.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2001: símbolo externo >>>>>>> >>> __fltused sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2019: símbolo externo >>>>>>> >>> _memchr sin resolver al que se hace referencia en la función >>>>>>> >>> _for__get_s >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo _memchr sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__ReadFile@20 sin resolver al que se hace referencia en la >>>>>>> >>> función _for__read_input. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo >>>>>>> >>> externo __imp__ReadFile@20 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetFileInformationByHandle@8 sin resolver al que >>>>>>> se >>>>>>> >>> hace referencia en la función _for__reopen_file >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetTempPathA@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetTempFileNameA@16 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetFullPathNameA@16 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetSystemDefaultLangID@0 sin resolver al que se >>>>>>> >>> hace referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__WideCharToMultiByte@32 sin resolver al que se >>>>>>> hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetFullPathNameW@16 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__MultiByteToWideChar@24 sin resolver al que se >>>>>>> hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetUserDefaultLangID@0 sin resolver al que se >>>>>>> hace >>>>>>> >>> referencia en la función _for__compute_filename. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo _strtok sin resolver al que se hace referencia en la >>>>>>> >>> función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo _atoi sin resolver al que se hace referencia en la >>>>>>> >>> función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __get_osfhandle sin resolver al que se hace referencia en >>>>>>> >>> la función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __open_osfhandle sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __fileno sin resolver al que se hace referencia en la >>>>>>> >>> función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __access sin resolver al que se hace referencia en la >>>>>>> >>> función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __errno sin resolver al que se hace referencia en la >>>>>>> >>> función _for__open_proc. >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo >>>>>>> >>> __errno sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001: >>>>>>> >>> símbolo externo __errno sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__DeleteFileA@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__close_proc >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__GetVersionExA@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__close_proc >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetVersionExA@4 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__SetThreadPriority@8 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__close_proc >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2019: símbolo >>>>>>> >>> externo __imp__CreateProcessA@40 sin resolver al que se hace >>>>>>> >>> referencia en la función _for__close_proc >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_int_to_text.obj) : error LNK2019: símbolo >>>>>>> >>> externo __aulldiv sin resolver al que se hace referencia en la >>>>>>> >>> función _cvt_integer64_to_text >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(cvt_text_to_int.obj) : error LNK2001: símbolo >>>>>>> >>> externo __aulldiv sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetSystemTimeAsFileTime@4 sin resolver al que se hace >>>>>>> >>> referencia en la función _for_since_epoch >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetLocalTime@4 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _for_secnds >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetProcessTimes@20 sin resolver al que se hace referencia >>>>>>> >>> en la función _for_cpusec >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetCurrentProcess@0 sin resolver al que se hace >>>>>>> referencia >>>>>>> >>> en la función _for_cpusec >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> __imp__GetCurrentProcess@0 sin resolver >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2019: símbolo externo >>>>>>> >>> _clock sin resolver al que se hace referencia en la función >>>>>>> >>> _for_cpusec >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2019: símbolo externo >>>>>>> >>> __alldiv sin resolver al que se hace referencia en la función >>>>>>> >>> ___msportlib_d_fseek >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__FlushFileBuffers@4 sin resolver al que se hace referencia >>>>>>> >>> en la función _COMMITQQ >>>>>>> >>> >>>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2019: símbolo externo >>>>>>> >>> _raise sin resolver al que se hace referencia en la función >>>>>>> >>> _for__raise >>>>>>> >>> >>>>>>> >>> libirc.lib(new_proc_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> _strlen sin resolver al que se hace referencia en la función >>>>>>> >>> ___intel_new_feature_proc_init >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strlen sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strlen sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strlen sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(new_proc_init.obj) : error LNK2019: símbolo externo >>>>>>> >>> _strncat sin resolver al que se hace referencia en la función >>>>>>> >>> ___intel_new_feature_proc_init >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncat sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strncat sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(fastmemset.obj) : error LNK2019: símbolo externo >>>>>>> >>> _memset sin resolver al que se hace referencia en la función >>>>>>> >>> __intel_fast_memset.A >>>>>>> >>> >>>>>>> >>> libirc.lib(proc_init_utils.obj) : error LNK2001: símbolo externo >>>>>>> >>> _memset sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> _memset sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(fastmemcpy.obj) : error LNK2019: símbolo externo >>>>>>> >>> _memcpy sin resolver al que se hace referencia en la función >>>>>>> >>> __intel_fast_memcpy.A >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> _memcpy sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2019: >>>>>>> >>> símbolo externo __imp__LoadLibraryExA@12 sin resolver al que se >>>>>>> >>> hace referencia en la función ___intel_lib_wrappers_init >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2019: >>>>>>> >>> símbolo externo __imp__GetModuleHandleExA@12 sin resolver al que >>>>>>> >>> se hace referencia en la función ___intel_lib_wrappers_init >>>>>>> >>> >>>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2019: >>>>>>> >>> símbolo externo _strcat_s sin resolver al que se hace referencia >>>>>>> >>> en la función ___intel_lib_wrappers_init >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2019: símbolo externo >>>>>>> >>> _strcat sin resolver al que se hace referencia en la función >>>>>>> >>> _tbk_string_stack_signal_impl. >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2019: símbolo externo >>>>>>> >>> _strcpy sin resolver al que se hace referencia en la función >>>>>>> >>> _stackwalk_cb >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> _strcpy sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2019: símbolo externo >>>>>>> >>> __splitpath sin resolver al que se hace referencia en la función >>>>>>> >>> _stackwalk_cb >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo >>>>>>> >>> __splitpath sin resolver >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetModuleFileNameA@12 sin resolver al que se hace >>>>>>> >>> referencia en la función _tbk_getModuleName >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__VirtualQuery@12 sin resolver al que se hace referencia en >>>>>>> >>> la función _tbk_getModuleName >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> _memcmp sin resolver al que se hace referencia en la función >>>>>>> >>> _tbk_get_pc_info >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__StackWalk64@36 sin resolver al que se hace referencia en >>>>>>> la >>>>>>> >>> función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SymCleanup@4 sin resolver al que se hace referencia en la >>>>>>> >>> función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__SymInitialize@12 sin resolver al que se hace referencia >>>>>>> en >>>>>>> >>> la función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __imp__GetCurrentThread@0 sin resolver al que se hace referencia >>>>>>> >>> en la función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __except_handler4 sin resolver al que se hace referencia en la >>>>>>> >>> función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo >>>>>>> >>> __except_list sin resolver al que se hace referencia en la >>>>>>> >>> función _tbk_trace_stack_impl >>>>>>> >>> >>>>>>> >>> LINK : error LNK2001: símbolo externo __load_config_used sin >>>>>>> >>> resolver >>>>>>> >>> >>>>>>> >>> C:\Program Files (x86)\Microsoft Visual >>>>>>> >>> >>>>>>> >> >>>>>>> > >>>>>>> Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\lib\x64\LIBCMT.lib >>>>>>> >>> : warning LNK4272: el tipo de máquina de biblioteca 'x64' está >>>>>>> >>> en conflicto con el tipo de máquina de destino 'x86' >>>>>>> >>> >>>>>>> >>> C:\Program Files (x86)\Microsoft Visual >>>>>>> >>> >>>>>>> >> >>>>>>> > >>>>>>> Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\lib\x64\libcpmt.lib >>>>>>> >>> : warning LNK4272: el tipo de máquina de biblioteca 'x64' está >>>>>>> >>> en conflicto con el tipo de máquina de destino 'x86' >>>>>>> >>> >>>>>>> >>> C:\Program Files (x86)\Windows >>>>>>> >>> Kits\10\lib\10.0.17763.0\um\x64\kernel32.lib : warning LNK4272: >>>>>>> el >>>>>>> >>> tipo de máquina de biblioteca 'x64' está en conflicto con el >>>>>>> >>> tipo de máquina de destino 'x86' >>>>>>> >>> >>>>>>> >>> C:\Program Files (x86)\Windows >>>>>>> >>> Kits\10\lib\10.0.17763.0\um\x64\ImageHlp.lib : warning LNK4272: >>>>>>> el >>>>>>> >>> tipo de máquina de biblioteca 'x64' está en conflicto con el >>>>>>> >>> tipo de máquina de destino 'x86' >>>>>>> >>> >>>>>>> >>> testing.exe : fatal error LNK1120: 132 externos sin resolver >>>>>>> >>> >>>>>>> >>> scons: *** [testing.exe] Error 1120 >>>>>>> >>> >>>>>>> >>> scons: building terminated because of errors. >>>>>>> >>> >>>>>>> >>> Javier Gonzalez-Platas >>>>>>> >>> Dpto. de Física - Universidad de La Laguna >>>>>>> >>> >>>>>>> >>> _______________________________________________ >>>>>>> >>> Scons-users mailing list >>>>>>> >>> [email protected] >>>>>>> >>> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>>>> >> _______________________________________________ >>>>>>> >> Scons-users mailing list >>>>>>> >> [email protected] >>>>>>> >> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>>>> > >>>>>>> > >>>>>>> > Links: >>>>>>> > ------ >>>>>>> > [1] https://www.ull.es/ >>>>>>> > [2] >>>>>>> > >>>>>>> https://www.ull.es/informacion-sobre-web-institucional/#aviso-confidencialidad >>>>>>> > _______________________________________________ >>>>>>> > Scons-users mailing list >>>>>>> > [email protected] >>>>>>> > https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>>>> _______________________________________________ >>>>>>> Scons-users mailing list >>>>>>> [email protected] >>>>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>>>> >>>>>>> _______________________________________________ >>>>>>> Scons-users mailing list >>>>>>> [email protected] >>>>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>>>> >>>>>>> >>>>>>> >>>>>> _______________________________________________ >>>>>> Scons-users mailing list >>>>>> [email protected] >>>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>>> >>>>> _______________________________________________ >>>>> Scons-users mailing list >>>>> [email protected] >>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>>> >>>> _______________________________________________ >>>> Scons-users mailing list >>>> [email protected] >>>> https://pairlist4.pair.net/mailman/listinfo/scons-users >>>> >>> _______________________________________________ >> Scons-users mailing list >> [email protected] >> https://pairlist4.pair.net/mailman/listinfo/scons-users >> > _______________________________________________ > Scons-users mailing list > [email protected] > https://pairlist4.pair.net/mailman/listinfo/scons-users > _______________________________________________ Scons-users mailing list [email protected] https://pairlist4.pair.net/mailman/listinfo/scons-users
9E49895CA310426CB98C609B8D24C421.png
(image/png, 140 B) - not displayed