[Scons-users] Trying to compile in Windows

Bill Deegan bill at baddogconsulting.com
Mon Apr 22 12:33:16 EDT 2019


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 <bill at baddogconsulting.com>
wrote:

> both 32 and 64 bits?
>
> On Mon, Apr 22, 2019 at 11:33 AM Javier GONZALEZ PLATAS <
> jplatas at ull.edu.es> 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 (<
>> bill at baddogconsulting.com>) 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 <
>>> jplatas at ull.edu.es> 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 (<
>>>> jplatas at ull.edu.es>) escribió:
>>>>
>>>>> OK
>>>>>
>>>>> Here you have them.
>>>>>
>>>>>
>>>>>
>>>>> Javier Gonzalez-Platas
>>>>> Dpto. de Física - Universidad de La Laguna
>>>>>
>>>>>
>>>>>
>>>>> *De: *Bill Deegan <bill at baddogconsulting.com>
>>>>> *Enviado: *lunes, 22 de abril de 2019 15:48
>>>>> *Para: *SCons users mailing list <scons-users at scons.org>
>>>>> *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 <
>>>>> jplatas at ull.edu.es> 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 (<javier at llopis.me>)
>>>>> 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
>>>>> > (<bill at baddogconsulting.com>) 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
>>>>> >> <jplatas at ull.edu.es> 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__Sleep at 4 sin resolver
>>>>> >>>
>>>>> >>> ifconsol.lib(for_m_console.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__Sleep at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__InterlockedExchange at 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 at 8 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__InterlockedExchange at 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 at 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 at 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 at 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__SetLastError at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__SetLastError at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__TlsAlloc at 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 at 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__CloseHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__CloseHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__CloseHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__CloseHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_reentrancy.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__WaitForSingleObject at 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 at 8 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__WaitForSingleObject at 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 at 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 at 20 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__WriteFile at 20 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__WriteFile at 20 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__WriteFile at 20 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_m_qwin.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetLastError at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__GetFileType at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetFileType at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetFileType at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetFileType at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetFileType at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__SetFilePointer at 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 at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__SetFilePointer at 16 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__SetFilePointer at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(tbk_display.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(irc_msg_support.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(proc_init_utils.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_nan_x.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_nan_t.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(new_proc_init.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001:
>>>>> >>> símbolo externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_t_to_a.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_a_to_t.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_s_to_a.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_a_to_s.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_portlib.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_x_to_a.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvtas_a_to_x.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_preconnected_units_init.obj) : error LNK2001:
>>>>> >>> símbolo externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_default_io_sizes_env_init.obj) : error
>>>>> >>> LNK2001: símbolo externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_secnds.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_fmt_comp.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_cvtas_x.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_cvtas_t.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_cvtas_s.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_m_qwin.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_vax_g.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_vax_d.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_ibm_long.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_cray.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_ieee_single.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_ieee_double.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_vax_f.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(cvt_ibm_short.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_fmt.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_udio.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_avalloc.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_desc_item.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_io_util.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_fmt_val.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq_lis.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_need_lf.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo
>>>>> >>> @__security_check_cookie at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_lub_mgt.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__GetCurrentThreadId at 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 at 0 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__GetStdHandle at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_lub_mgt.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetStdHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetStdHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_put.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetStdHandle at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_get.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetStdHandle at 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 at 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 at 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 at 12 sin
>>>>> >>> resolver
>>>>> >>>
>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001:
>>>>> >>> símbolo externo __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_io_util.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_preconnected_units_init.obj) : error LNK2001:
>>>>> >>> símbolo externo __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_vm.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_open.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetEnvironmentVariableA at 12 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetEnvironmentVariableA at 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 at 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 at 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 at 28 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__LoadLibraryA at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__GetThreadLocale at 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 at 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 at 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 at 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 at 8 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetProcAddress at 8 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetProcAddress at 8 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetProcAddress at 8 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_exit_handler.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetProcAddress at 8 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetProcAddress at 8 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(tbk_backtrace.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__GetModuleHandleA at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetModuleHandleA at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_exit_handler.obj) : error LNK2001: símbolo
>>>>> >>> externo __imp__GetModuleHandleA at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_init.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__GetModuleHandleA at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_diags_intel.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__FreeLibrary at 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 at 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 at 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_wseq.obj) : error LNK2001: símbolo externo
>>>>> >>> __imp__SetEndOfFile at 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 at 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001:
>>>>> >>> símbolo externo __imp__LeaveCriticalSection at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__EnterCriticalSection at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libirc.lib(intel_lib_vs_wrappers_init.obj) : error LNK2001:
>>>>> >>> símbolo externo __imp__EnterCriticalSection at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__ExitThread at 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_aio.obj) : error LNK2019: símbolo externo
>>>>> >>> __imp__CreateEventA at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 20 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_nt_open_proc.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__GetFileInformationByHandle at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 4 sin resolver
>>>>> >>>
>>>>> >>> libifcoremt.lib(for_close_proc.obj) : error LNK2019: símbolo
>>>>> >>> externo __imp__SetThreadPriority at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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 at 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
>>>>> >>> Scons-users at scons.org
>>>>> >>> https://pairlist4.pair.net/mailman/listinfo/scons-users
>>>>> >> _______________________________________________
>>>>> >> Scons-users mailing list
>>>>> >> Scons-users at scons.org
>>>>> >> 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
>>>>> > Scons-users at scons.org
>>>>> > https://pairlist4.pair.net/mailman/listinfo/scons-users
>>>>> _______________________________________________
>>>>> Scons-users mailing list
>>>>> Scons-users at scons.org
>>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users
>>>>>
>>>>> _______________________________________________
>>>>> Scons-users mailing list
>>>>> Scons-users at scons.org
>>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users
>>>>>
>>>>>
>>>>>
>>>> _______________________________________________
>>>> Scons-users mailing list
>>>> Scons-users at scons.org
>>>> https://pairlist4.pair.net/mailman/listinfo/scons-users
>>>>
>>> _______________________________________________
>>> Scons-users mailing list
>>> Scons-users at scons.org
>>> https://pairlist4.pair.net/mailman/listinfo/scons-users
>>>
>> _______________________________________________
>> Scons-users mailing list
>> Scons-users at scons.org
>> https://pairlist4.pair.net/mailman/listinfo/scons-users
>>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://pairlist4.pair.net/pipermail/scons-users/attachments/20190422/07b9672d/attachment-0001.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 9E49895CA310426CB98C609B8D24C421.png
Type: image/png
Size: 140 bytes
Desc: not available
URL: <https://pairlist4.pair.net/pipermail/scons-users/attachments/20190422/07b9672d/attachment-0001.png>


More information about the Scons-users mailing list