Compiler Problem ZLIB

Submitted by Papagenu on Fri, 11/12/2021 - 11:03
Forums

Hello,

i'm kind of new to programming and have problems with the installation of Freeling 4.2 with Java API. I followed the steps from manual, but have no clue how to solve this:

C:\FreeLing-4.2\build>cmake .. -DCMAKE_INSTALL_PREFIX=C:\FreeLing\FreeLing-4.2\freeling -DZLIB_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\zlib -DBOOST_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\boost -DICU_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\icu -G "NMake Makefiles" -DJAVA_API=ON -DSWIG_DIR=C:\swigwin-4.0.2 -DSWIG_EXECUTABLE=C:\swigwin-4.0.2\swig.exe
-- The C compiler identification is MSVC 19.0.24215.1
-- The CXX compiler identification is MSVC 19.0.24215.1
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
CMake Warning (dev) at CMakeLists.txt:39 (find_package):
Policy CMP0074 is not set: find_package uses _ROOT variables.
Run "cmake --help-policy CMP0074" for policy details. Use the cmake_policy
command to set the policy and suppress this warning.

CMake variable ZLIB_ROOT is set to:

C:\FreeLing\FreeLing-4.2\dependencies\zlib

For compatibility, CMake is ignoring the variable.
This warning is for project developers. Use -Wno-dev to suppress it.

CMake Error at C:/Program Files/CMake/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find ZLIB (missing: ZLIB_LIBRARY) (found version "1.2.11")
Call Stack (most recent call first):
C:/Program Files/CMake/share/cmake-3.21/Modules/FindPackageHandleStandardArgs.cmake:594 (_FPHSA_FAILURE_MESSAGE)
C:/Program Files/CMake/share/cmake-3.21/Modules/FindZLIB.cmake:120 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:39 (find_package)

-- Configuring incomplete, errors occurred!
See also "C:/FreeLing-4.2/build/CMakeFiles/CMakeOutput.log".

Can someone help me, please?

OR

In another Forums Post (https://nlp.lsi.upc.edu/freeling/node/690) Lluis noted, that there is a precompiled Package with Python API, is there a precompiled package with Java API?

Thanks a lot
David

Even if you had a precompiled Java API, you'd still need ZLIB, which is a requirement for FreeLing.

The problem with ZLIB is that your version of CMake is probably too new (3.18 or later)
 you have two options:

     1) change your cmake version for one between 3.12 and 3.17

    2) edit file CMakeLists.txt in the root of freeling soruce folder, and add the line:

           cmake_policy(SET CMP0074 NEW)

       somewhere at the beggining (eg. in line 2, after "cmake_minimum_required")

       (I did not test the second one, please let me know if it works)

Thank you; it helped:)

unfortunately,I'm facing a new error after nmake install:

[...]
[ 99%] Linking CXX executable convert_model.exe
[ 99%] Built target convert_model
Scanning dependencies of target Jfreeling_swig_compilation
[100%] Swig compile freeling_javaAPI.i for java
(1) : Error: Unable to find 'swig.swg'
(3) : Error: Unable to find 'java.swg'
C:\FreeLingSource\FreeLing-4.2\APIs\java\freeling_javaAPI.i(45) : Error: Unable to find 'std_wstring.i'
C:\FreeLingSource\FreeLing-4.2\APIs\java\std_list.i(8) : Error: Unable to find 'std_common.i'
C:\FreeLingSource\FreeLing-4.2\APIs\java\..\common\templates.i(9) : Error: Unable to find 'std_vector.i'
C:\FreeLingSource\FreeLing-4.2\APIs\java\..\common\templates.i(10) : Error: Unable to find 'std_map.i'
C:\FreeLingSource\FreeLing-4.2\APIs\java\..\common\templates.i(11) : Error: Unable to find 'std_pair.i'
NMAKE : fatal error U1077: 'echo' : return code '0x1'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2'
Stop.

I tested different versions of swig and added the path swig/lib to the environment variables.

Any ideas? Thanks!

EDIT:

I removed the "-DSWIG_DIR=%SWIGDIR%" command from cmake command and it worked for me:) now im facing a new error:

during the cmake procedure i cant find pthread.h:

.. -DCMAKE_INSTALL_PREFIX=C:\FreeLing\FreeLing-4.2\freeling -DZLIB_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\zlib -DBOOST_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\boost -DICU_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\icu -G "NMake Makefiles" -DSWIG_EXECUTABLE=C:\swigwin\swig.exe -DJAVA_API=ON
-- The C compiler identification is MSVC 19.0.24215.1
-- The CXX compiler identification is MSVC 19.0.24215.1
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe - works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe - works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found ZLIB: C:/FreeLing/FreeLing-4.2/dependencies/zlib/lib/zlib.lib (found version "1.2.11")
-- Looking for pthread.h
-- Looking for pthread.h - not found
-- Found Threads: TRUE
-- Found Boost: C:/FreeLing/FreeLing-4.2/dependencies/boost/include/boost-1_61 (found version "1.61.0") found components: regex filesystem thread program_options system chrono date_time atomic
-- Found the following ICU libraries:
-- dt (required)
-- in (required)
-- uc (required)
-- Found ICU: C:/FreeLing/FreeLing-4.2/dependencies/icu/include (found version "59.1")
-- BACKEND not specified, defaulting to eigen.
-- Eigen dir is C:/FreeLingSource/FreeLing-4.2/src/eigen3
-- Found SWIG: C:/swigwin/swig.exe (found version "3.0.12")
-- Found Java: C:/Program Files/Java/jdk-12/bin/java.exe (found version "12.0.0") found components: Runtime Development
-- Found JNI: C:/Program Files/Java/jdk-12/lib/jawt.lib
-- Configuring done
-- Generating done
-- Build files have been written to: C:/FreeLingSource/FreeLing-4.2/build

after the nmake install procedure, i get the folling error:

--....
-- Up-to-date: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/ukb.dat
-- Creating as dictionary...
CMake Error at cmake_install.cmake:53 (message):
Error 'Exit code 0xc0000135

' while executing dictionary indexation program. Make sure compilation
ended without errors, and that boost libraries can be found in the path.

NMAKE : fatal error U1077: 'echo' : return code '0x1'
Stop.

Any ideas?

Thankyou!

pthread.h is for linux.  It is normal it does not find it, but then it checks for Threads (the windows equivalent) and finds it, so it is ok.

About the dictionary, it is created by a helper program that should be in src/utilities/build-dict.exe, which should have been compiled in the nmake process.

Check if it is there.

 

When I use both packages FreeLing-src-4.2.tar.gz and FreeLing-langs-src-4.2.tar.gz , build-dict.exe is not in the src folder. When I only use FreeLing-src-4.2.tar.gz build-dict.exe is in the folder, but i get this error:

[100%] Built target Jfreeling
Install the project...
...
--...
-- -- Creating ca/balear dictionary...
CMake Error at cmake_install.cmake:57 (message):
multiword fusion failed with error: Exit code 0xc0000135

NMAKE : fatal error U1077: 'echo' : return code '0x1'
Stop.

You need to use both packages, there is a bug in the installer that expects all languages to be there. You can remove unneeded languages later if you want

In any case, having more languages should not affect the building of build-dict.exe.  It should be created anyway.

Run it all with both packages installed, and post the whole output of  "nmake" and "nmake install"

 

C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC>cd C:\FreeLing-4.2src\FreeLing-4.2\build

C:\FreeLing-4.2src\FreeLing-4.2\build>cmake .. -DCMAKE_INSTALL_PREFIX=C:\FreeLing\FreeLing-4.2\freeling -DZLIB_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\zlib -DBOOST_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\boost -DICU_ROOT=C:\FreeLing\FreeLing-4.2\dependencies\icu -G "NMake Makefiles" -DSWIG_EXECUTABLE=C:\swigwin\swig.exe -DJAVA_API=ON
-- The C compiler identification is MSVC 19.0.24215.1
-- The CXX compiler identification is MSVC 19.0.24215.1
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe - works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/bin/amd64/cl.exe - works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found ZLIB: C:/FreeLing/FreeLing-4.2/dependencies/zlib/lib/zlib.lib (found version "1.2.11")
-- Looking for pthread.h
-- Looking for pthread.h - not found
-- Found Threads: TRUE
-- Found Boost: C:/FreeLing/FreeLing-4.2/dependencies/boost/include/boost-1_61 (found version "1.61.0") found components: regex filesystem thread program_options system chrono date_time atomic
-- Found the following ICU libraries:
-- dt (required)
-- in (required)
-- uc (required)
-- Found ICU: C:/FreeLing/FreeLing-4.2/dependencies/icu/include (found version "59.1")
-- BACKEND not specified, defaulting to eigen.
-- Eigen dir is C:/FreeLing-4.2src/FreeLing-4.2/src/eigen3
-- Found SWIG: C:/swigwin/swig.exe (found version "3.0.12")
-- Found Java: C:/Program Files/Java/jdk-12/bin/java.exe (found version "12.0.0") found components: Runtime Development
-- Found JNI: C:/Program Files/Java/jdk-12/lib/jawt.lib
-- Configuring done
-- Generating done
-- Build files have been written to: C:/FreeLing-4.2src/FreeLing-4.2/build

C:\FreeLing-4.2src\FreeLing-4.2\build>nmake

Microsoft (R) Program Maintenance Utility Version 14.00.24210.0
Copyright (C) Microsoft Corporation. All rights reserved.

Scanning dependencies of target dynet
[ 0%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/aligned-mem-pool.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
aligned-mem-pool.cc
[ 1%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/cfsm-builder.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
cfsm-builder.cc
[ 1%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/deep-lstm.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
deep-lstm.cc
[ 1%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/devices.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
devices.cc
[ 2%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/dict.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
dict.cc
[ 2%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/dim.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
dim.cc
[ 3%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/dynet.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
dynet.cc
[ 3%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/exec.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
exec.cc
[ 3%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/expr.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
expr.cc
[ 4%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/fast-lstm.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
fast-lstm.cc
[ 4%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/globals.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
globals.cc
[ 4%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/grad-check.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
grad-check.cc
[ 5%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/graph.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
graph.cc
[ 5%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/gru.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
gru.cc
[ 5%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/hsm-builder.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
hsm-builder.cc
[ 6%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/init.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
init.cc
[ 6%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/io.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
io.cc
[ 6%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/lstm.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
lstm.cc
[ 7%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/mem.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
mem.cc
[ 7%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/model.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
model.cc
[ 7%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-activations.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-activations.cc
[ 8%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-affinetransform.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-affinetransform.cc
[ 8%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-argmax.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-argmax.cc
[ 8%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-arith-const.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-arith-const.cc
[ 9%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-arith-cwise.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-arith-cwise.cc
[ 9%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-arith-sum.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-arith-sum.cc
[ 9%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-arith-unary.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-arith-unary.cc
[ 10%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-concat.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-concat.cc
[ 10%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-const.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-const.cc
[ 10%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-contract.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-contract.cc
[ 11%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-conv.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-conv.cc
[ 11%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-conv2d.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-conv2d.cc
[ 11%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-dropout.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-dropout.cc
[ 12%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-flow.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-flow.cc
[ 12%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-hinge.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-hinge.cc
[ 12%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-linalg.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-linalg.cc
[ 13%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-logsumexp.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-logsumexp.cc
[ 13%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-losses.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-losses.cc
[ 13%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-lstm.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-lstm.cc
[ 14%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-matrixmultiply.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-matrixmultiply.cc
[ 14%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-maxpooling2d.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-maxpooling2d.cc
[ 14%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-minmax.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-minmax.cc
[ 15%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-moments.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-moments.cc
[ 15%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-cumulative.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-cumulative.cc
[ 15%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-normalization.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-normalization.cc
[ 16%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-norms.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-norms.cc
[ 16%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-pickneglogsoftmax.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-pickneglogsoftmax.cc
[ 17%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-random.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-random.cc
[ 17%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-select.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-select.cc
[ 17%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-similarities.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-similarities.cc
[ 18%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-softmaxes.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-softmaxes.cc
[ 18%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-to-device.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-to-device.cc
[ 18%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/nodes-trig.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
nodes-trig.cc
[ 19%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/param-init.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
param-init.cc
[ 19%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/param-nodes.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
param-nodes.cc
[ 19%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/pretrain.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
pretrain.cc
[ 20%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/rnn-state-machine.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
rnn-state-machine.cc
[ 20%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/rnn.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
rnn.cc
[ 20%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/saxe-init.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
saxe-init.cc
[ 21%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/shadow-params.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
shadow-params.cc
[ 21%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/tensor.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
tensor.cc
[ 21%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/training.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
training.cc
[ 22%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/treelstm.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
treelstm.cc
[ 22%] Building CXX object src/libdynet/dynet/CMakeFiles/dynet.dir/weight-decay.cc.obj
cl : Command line warning D9025 : overriding '/W3' with '/W1'
weight-decay.cc
[ 22%] Linking CXX shared library dynet.dll
Creating library dynet.lib and object dynet.exp
Creating library dynet.lib and object dynet.exp
[ 22%] Built target dynet
Scanning dependencies of target crfsuite
[ 23%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/cqdb/cqdb.c.obj
cqdb.c
[ 23%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/cqdb/lookup3.c.obj
lookup3.c
[ 23%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crf1d_context.c.obj
crf1d_context.c
[ 24%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crf1d_encode.c.obj
crf1d_encode.c
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crf\crf1d_encode.c(889): warning C4101: 'i': unreferenced local variable
[ 24%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crf1d_feature.c.obj
crf1d_feature.c
[ 24%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crf1d_model.c.obj
crf1d_model.c
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crf\crf1d_model.c(435): warning C4267: 'function': conversion from 'size_t' to 'long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crf\crf1d_model.c(542): warning C4267: 'function': conversion from 'size_t' to 'long', possible loss of data
[ 25%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crf1d_tag.c.obj
crf1d_tag.c
[ 25%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crfsuite.c.obj
crfsuite.c
[ 25%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/crfsuite_train.c.obj
crfsuite_train.c
[ 26%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/dataset.c.obj
dataset.c
[ 26%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/dictionary.c.obj
dictionary.c
[ 26%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/holdout.c.obj
holdout.c
[ 27%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/logging.c.obj
logging.c
[ 27%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/params.c.obj
params.c
[ 27%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/quark.c.obj
quark.c
[ 28%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/rumavl.c.obj
rumavl.c
[ 28%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/train_arow.c.obj
train_arow.c
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crf\train_arow.c(312): warning C4101: 'tau': unreferenced local variable
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crf\train_arow.c(311): warning C4101: 'norm2': unreferenced local variable
[ 28%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/train_averaged_perceptron.c.obj
train_averaged_perceptron.c
[ 29%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/train_l2sgd.c.obj
train_l2sgd.c
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crf\train_l2sgd.c(292): warning C4101: 's': unreferenced local variable
[ 29%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/train_lbfgs.c.obj
train_lbfgs.c
[ 29%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crf/train_passive_aggressive.c.obj
train_passive_aggressive.c
[ 30%] Building CXX object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/crfsuite_api.cpp.obj
crfsuite_api.cpp
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crfsuite_api.cpp(122): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crfsuite_api.cpp(128): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\crfsuite\crfsuite\crfsuite_api.cpp(349): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 30%] Building C object src/crfsuite/CMakeFiles/crfsuite.dir/crfsuite/lbfgs/lbfgs.c.obj
lbfgs.c
[ 30%] Linking CXX shared library crfsuite.dll
Creating library crfsuite.lib and object crfsuite.exp
Creating library crfsuite.lib and object crfsuite.exp
[ 30%] Built target crfsuite
Scanning dependencies of target foma
[ 31%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/apply.c.obj
apply.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(96): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(474): warning C4018: '>': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(497): warning C4018: '>': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(990): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(1031): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(1246): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(1254): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\apply.c(1297): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 31%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/coaccessible.c.obj
coaccessible.c
[ 31%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/constructions.c.obj
constructions.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\constructions.c(158): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\constructions.c(299): warning C4018: '<': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\constructions.c(351): warning C4018: '>': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\constructions.c(371): warning C4018: '<': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\constructions.c(374): warning C4018: '<': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\constructions.c(861): warning C4244: '=': conversion from 'short' to 'unsigned char', possible loss of data
[ 32%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/define.c.obj
define.c
[ 32%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/determinize.c.obj
determinize.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\determinize.c(263): warning C4018: '<': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\determinize.c(759): warning C4018: '>=': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\determinize.c(760): warning C4018: '>=': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\determinize.c(813): warning C4018: '<': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\determinize.c(849): warning C4018: '<': signed/unsigned mismatch
[ 32%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/dynarray.c.obj
dynarray.c
[ 33%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/extract.c.obj
extract.c
[ 33%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/flags.c.obj
flags.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\flags.c(395): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\flags.c(416): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 33%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/int_stack.c.obj
int_stack.c
[ 34%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/io.c.obj
io.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\io.c(544): warning C4244: 'initializing': conversion from '__int64' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\io.c(1027): warning C4267: 'function': conversion from 'size_t' to 'unsigned int', possible loss of data
[ 34%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/lex.cmatrix.c.obj
lex.cmatrix.c
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(48): warning C4005: 'INT8_MIN': macro redefinition
lex.cmatrix.c(80): note: see previous definition of 'INT8_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(49): warning C4005: 'INT16_MIN': macro redefinition
lex.cmatrix.c(83): note: see previous definition of 'INT16_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(50): warning C4005: 'INT32_MIN': macro redefinition
lex.cmatrix.c(86): note: see previous definition of 'INT32_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(52): warning C4005: 'INT8_MAX': macro redefinition
lex.cmatrix.c(89): note: see previous definition of 'INT8_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(53): warning C4005: 'INT16_MAX': macro redefinition
lex.cmatrix.c(92): note: see previous definition of 'INT16_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(54): warning C4005: 'INT32_MAX': macro redefinition
lex.cmatrix.c(95): note: see previous definition of 'INT32_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(56): warning C4005: 'UINT8_MAX': macro redefinition
lex.cmatrix.c(98): note: see previous definition of 'UINT8_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(57): warning C4005: 'UINT16_MAX': macro redefinition
lex.cmatrix.c(101): note: see previous definition of 'UINT16_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(58): warning C4005: 'UINT32_MAX': macro redefinition
lex.cmatrix.c(104): note: see previous definition of 'UINT32_MAX'
lex.cmatrix.c(1220): warning C4003: not enough actual parameters for macro 'cmatrixwrap'
[ 34%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/lex.lexc.c.obj
lex.lexc.c
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(48): warning C4005: 'INT8_MIN': macro redefinition
lex.lexc.c(84): note: see previous definition of 'INT8_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(49): warning C4005: 'INT16_MIN': macro redefinition
lex.lexc.c(87): note: see previous definition of 'INT16_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(50): warning C4005: 'INT32_MIN': macro redefinition
lex.lexc.c(90): note: see previous definition of 'INT32_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(52): warning C4005: 'INT8_MAX': macro redefinition
lex.lexc.c(93): note: see previous definition of 'INT8_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(53): warning C4005: 'INT16_MAX': macro redefinition
lex.lexc.c(96): note: see previous definition of 'INT16_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(54): warning C4005: 'INT32_MAX': macro redefinition
lex.lexc.c(99): note: see previous definition of 'INT32_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(56): warning C4005: 'UINT8_MAX': macro redefinition
lex.lexc.c(102): note: see previous definition of 'UINT8_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(57): warning C4005: 'UINT16_MAX': macro redefinition
lex.lexc.c(105): note: see previous definition of 'UINT16_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(58): warning C4005: 'UINT32_MAX': macro redefinition
lex.lexc.c(108): note: see previous definition of 'UINT32_MAX'
lexc.l(67): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
lex.lexc.c(1616): warning C4244: '=': conversion from '__int64' to 'int', possible loss of data
lex.lexc.c(1697): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(102): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(109): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(112): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(115): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(118): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(122): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(134): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(140): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(153): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(158): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(172): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(177): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(184): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(190): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(192): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(196): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(201): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(203): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(208): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(213): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(221): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(223): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(228): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(230): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(234): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(239): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(241): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(246): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(246): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lexc.l(248): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
lex.lexc.c(2061): warning C4003: not enough actual parameters for macro 'lexcwrap'
[ 35%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/lex.yy.c.obj
lex.yy.c
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(48): warning C4005: 'INT8_MIN': macro redefinition
lex.yy.c(61): note: see previous definition of 'INT8_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(49): warning C4005: 'INT16_MIN': macro redefinition
lex.yy.c(64): note: see previous definition of 'INT16_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(50): warning C4005: 'INT32_MIN': macro redefinition
lex.yy.c(67): note: see previous definition of 'INT32_MIN'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(52): warning C4005: 'INT8_MAX': macro redefinition
lex.yy.c(70): note: see previous definition of 'INT8_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(53): warning C4005: 'INT16_MAX': macro redefinition
lex.yy.c(73): note: see previous definition of 'INT16_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(54): warning C4005: 'INT32_MAX': macro redefinition
lex.yy.c(76): note: see previous definition of 'INT32_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(56): warning C4005: 'UINT8_MAX': macro redefinition
lex.yy.c(79): note: see previous definition of 'UINT8_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(57): warning C4005: 'UINT16_MAX': macro redefinition
lex.yy.c(82): note: see previous definition of 'UINT16_MAX'
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\stdint.h(58): warning C4005: 'UINT32_MAX': macro redefinition
lex.yy.c(85): note: see previous definition of 'UINT32_MAX'
lex.yy.c(2170): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
lex.yy.c(2170): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(168): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(168): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(178): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(178): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(191): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(191): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(201): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(201): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(209): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(209): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(215): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(215): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(221): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(221): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(226): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(226): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(231): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(231): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(240): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(240): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(245): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(245): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(249): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(249): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(260): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(260): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(265): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(265): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(272): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(272): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(277): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(277): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(281): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(281): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(284): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(284): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(290): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(290): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(295): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(295): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(300): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(300): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(302): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(302): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(304): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(304): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(305): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(305): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(306): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(306): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(307): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(307): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(308): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(308): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(309): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(309): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(310): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(310): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(311): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(311): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(312): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(312): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(313): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(313): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(314): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(314): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(315): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(315): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(316): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(317): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(317): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(318): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(318): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(319): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(319): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(320): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(320): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(321): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(321): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(322): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(322): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(323): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(323): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(324): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(324): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(326): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(326): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(333): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(333): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(338): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(379): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(379): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(381): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(381): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(382): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(382): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(383): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(383): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(384): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(384): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(389): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(389): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(386): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(386): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(387): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(387): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(388): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(388): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(389): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(389): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(390): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(390): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(391): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(391): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(392): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(392): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(393): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(393): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(394): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(394): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(395): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(395): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(396): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(396): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(397): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(397): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(398): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(398): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(399): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(399): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(400): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(400): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(401): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(401): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(402): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(402): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(403): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(403): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(404): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(404): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(405): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(405): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(406): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(406): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(407): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(407): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(408): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(408): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(409): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(409): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(410): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(410): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(411): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(411): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(412): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(412): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(413): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(413): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(414): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(414): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(415): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(415): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(416): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(416): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(417): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(417): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(418): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(418): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(419): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(419): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(420): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(420): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(421): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(421): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(423): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(423): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(424): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(424): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(425): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(425): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(426): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(426): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(427): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(427): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(428): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(428): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(429): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(429): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(430): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(430): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(431): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(431): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(432): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(432): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(433): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(433): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(434): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(434): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(435): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(435): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(436): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(436): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(437): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(437): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(438): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(438): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(439): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(439): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(440): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(440): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(441): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(441): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(442): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(442): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(443): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(443): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(444): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(444): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(445): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(445): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(446): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(446): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(447): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(447): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(448): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(448): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(449): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(449): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(450): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(450): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(451): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(451): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(452): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(452): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(453): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(453): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(454): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(454): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(455): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(455): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(456): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(456): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(457): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(457): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(459): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(459): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(461): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(461): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(461): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(461): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(462): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(462): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
regex.l(463): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
regex.l(463): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[ 35%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/lexcread.c.obj
lexcread.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\lexcread.c(620): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\lexcread.c(646): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\lexcread.c(888): warning C4018: '<': signed/unsigned mismatch
[ 35%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/mem.c.obj
mem.c
[ 36%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/minimize.c.obj
minimize.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\minimize.c(174): warning C4244: '=': conversion from '__int64' to 'int', possible loss of data
[ 36%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/regex.c.obj
regex.c
[ 36%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/reverse.c.obj
reverse.c
[ 37%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/rewrite.c.obj
rewrite.c
[ 37%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/sigma.c.obj
sigma.c
[ 37%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/spelling.c.obj
spelling.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\spelling.c(251): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\spelling.c(287): warning C4244: '=': conversion from '__int64' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\spelling.c(471): warning C4244: '=': conversion from '__int64' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\spelling.c(764): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 38%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/stringhash.c.obj
stringhash.c
[ 38%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/structures.c.obj
structures.c
[ 39%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/topsort.c.obj
topsort.c
[ 39%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/trie.c.obj
trie.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\trie.c(79): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 39%] Building C object src/libfoma/CMakeFiles/foma.dir/foma/utf8.c.obj
utf8.c
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(29): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(44): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(92): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(104): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(122): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(144): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfoma\foma\utf8.c(163): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 40%] Linking CXX shared library foma.dll
apply.c.obj : warning LNK4197: export 'apply_clear' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_init' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_down' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_up' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_upper_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_lower_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_random_lower' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_random_upper' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_random_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_reset_enumerator' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_index' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_show_flags' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_obey_flags' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_print_space' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_print_pairs' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_space_symbol' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_separator' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_epsilon' specified multiple times; using first specification
coaccessible.c.obj : warning LNK4197: export 'fsm_coaccessible' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_count' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_sequentialize' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_bimachine' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_invert' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_kleene_star' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_kleene_plus' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_optionality' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_concat' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_concat_n' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_concat_m_n' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_union' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_priority_union_upper' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_priority_union_lower' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_intersect' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_compose' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_lenient_compose' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_cross_product' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_shuffle' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_precedes' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_follows' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_symbol' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_explode' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_escape' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_complete' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_complement' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_term_negation' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_minus' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_simple_replace' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_contains' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_contains_opt_one' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_contains_one' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_ignore' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_quotient_right' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_quotient_left' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_quotient_interleave' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_substitute_label' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_substitute_symbol' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_universal' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_equal_substrings' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_letter_machine' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_mark_fsm_tail' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_add_loop' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_add_sink' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_left_rewr' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_flatten' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_close_sigma' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_network_to_char' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_compact' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_equivalent' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_symbol_occurs' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_merge_sigma' specified multiple times; using first specification
define.c.obj : warning LNK4197: export 'defined_networks_init' specified multiple times; using first specification
define.c.obj : warning LNK4197: export 'defined_functions_init' specified multiple times; using first specification
define.c.obj : warning LNK4197: export 'add_defined' specified multiple times; using first specification
determinize.c.obj : warning LNK4197: export 'fsm_determinize' specified multiple times; using first specification
determinize.c.obj : warning LNK4197: export 'fsm_epsilon_remove' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_init' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_set_final' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_set_initial' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_add_arc' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_add_arc_nums' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_add_symbol' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_check_symbol' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_copy_sigma' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_done' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_init' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_reset' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_is_final' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_is_initial' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_num_states' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_has_unknowns' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_arc' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_source' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_target' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_in' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_out' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_num_in' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_num_out' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_symbol_number' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_initial' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_final' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_state' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_state_arc' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_done' specified multiple times; using first specification
extract.c.obj : warning LNK4197: export 'fsm_lower' specified multiple times; using first specification
extract.c.obj : warning LNK4197: export 'fsm_upper' specified multiple times; using first specification
flags.c.obj : warning LNK4197: export 'flag_build' specified multiple times; using first specification
flags.c.obj : warning LNK4197: export 'flag_eliminate' specified multiple times; using first specification
flags.c.obj : warning LNK4197: export 'flag_twosided' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'read_att' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'net_print_att' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_prolog' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'file_to_mem' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_binary_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_binary_file_multiple' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_binary_file_multiple_init' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_text_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_spaced_text_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_write_binary_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'load_defined' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'save_defined' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'foma_write_prolog' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'foma_net_print' specified multiple times; using first specification
lex.cmatrix.c.obj : warning LNK4197: export 'my_cmatrixparse' specified multiple times; using first specification
lex.lexc.c.obj : warning LNK4197: export 'fsm_lexc_parse_file' specified multiple times; using first specification
lex.lexc.c.obj : warning LNK4197: export 'fsm_lexc_parse_string' specified multiple times; using first specification
lex.yy.c.obj : warning LNK4197: export 'fsm_parse_regex' specified multiple times; using first specification
mem.c.obj : warning LNK4197: export 'xxmalloc' specified multiple times; using first specification
minimize.c.obj : warning LNK4197: export 'fsm_minimize' specified multiple times; using first specification
reverse.c.obj : warning LNK4197: export 'fsm_reverse' specified multiple times; using first specification
rewrite.c.obj : warning LNK4197: export 'fsm_clear_contexts' specified multiple times; using first specification
rewrite.c.obj : warning LNK4197: export 'fsm_context_restrict' specified multiple times; using first specification
rewrite.c.obj : warning LNK4197: export 'fsm_rewrite' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_add' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_add_number' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_add_special' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_remove' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_remove_num' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_string' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_create' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_max' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_copy' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_init' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_clear' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_heap_max' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_med_limit' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_med_cutoff' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_get_cost' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_align_symbol' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_get_instring' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_get_outstring' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'fsm_create_letter_lookup' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_init' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_default_substitute' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_default_insert' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_default_delete' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_set_cost' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_print' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_print_att' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_get_library_version_string' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sort_arcs' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_boolean' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_copy' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_empty_set' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_empty_string' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_identity' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_quantifier' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_logical_eq' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_logical_precedence' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_lowerdet' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_lowerdeteps' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_markallfinal' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_nonidentity' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_ambiguous_domain' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_ambiguous' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_unambiguous' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sigma_net' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sigma_pairs_net' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isempty' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isfunctional' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isunambiguous' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isidentity' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isuniversal' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_issequential' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_create' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_empty' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sigma_destroy' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_destroy' specified multiple times; using first specification
topsort.c.obj : warning LNK4197: export 'fsm_topsort' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_init' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_done' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_add_word' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_end_word' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_symbol' specified multiple times; using first specification
Creating library foma.lib and object foma.exp
apply.c.obj : warning LNK4197: export 'apply_clear' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_init' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_down' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_up' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_upper_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_lower_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_random_lower' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_random_upper' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_random_words' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_reset_enumerator' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_index' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_show_flags' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_obey_flags' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_print_space' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_print_pairs' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_space_symbol' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_separator' specified multiple times; using first specification
apply.c.obj : warning LNK4197: export 'apply_set_epsilon' specified multiple times; using first specification
coaccessible.c.obj : warning LNK4197: export 'fsm_coaccessible' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_count' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_sequentialize' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_bimachine' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_invert' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_kleene_star' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_kleene_plus' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_optionality' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_concat' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_concat_n' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_concat_m_n' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_union' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_priority_union_upper' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_priority_union_lower' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_intersect' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_compose' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_lenient_compose' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_cross_product' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_shuffle' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_precedes' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_follows' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_symbol' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_explode' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_escape' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_complete' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_complement' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_term_negation' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_minus' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_simple_replace' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_contains' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_contains_opt_one' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_contains_one' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_ignore' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_quotient_right' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_quotient_left' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_quotient_interleave' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_substitute_label' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_substitute_symbol' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_universal' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_equal_substrings' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_letter_machine' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_mark_fsm_tail' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_add_loop' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_add_sink' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_left_rewr' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_flatten' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_close_sigma' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_network_to_char' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_compact' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_equivalent' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_symbol_occurs' specified multiple times; using first specification
constructions.c.obj : warning LNK4197: export 'fsm_merge_sigma' specified multiple times; using first specification
define.c.obj : warning LNK4197: export 'defined_networks_init' specified multiple times; using first specification
define.c.obj : warning LNK4197: export 'defined_functions_init' specified multiple times; using first specification
define.c.obj : warning LNK4197: export 'add_defined' specified multiple times; using first specification
determinize.c.obj : warning LNK4197: export 'fsm_determinize' specified multiple times; using first specification
determinize.c.obj : warning LNK4197: export 'fsm_epsilon_remove' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_init' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_set_final' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_set_initial' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_add_arc' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_add_arc_nums' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_add_symbol' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_check_symbol' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_copy_sigma' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_construct_done' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_init' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_reset' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_is_final' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_is_initial' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_num_states' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_has_unknowns' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_arc' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_source' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_target' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_in' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_out' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_num_in' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_arc_num_out' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_symbol_number' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_initial' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_final' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_state' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_get_next_state_arc' specified multiple times; using first specification
dynarray.c.obj : warning LNK4197: export 'fsm_read_done' specified multiple times; using first specification
extract.c.obj : warning LNK4197: export 'fsm_lower' specified multiple times; using first specification
extract.c.obj : warning LNK4197: export 'fsm_upper' specified multiple times; using first specification
flags.c.obj : warning LNK4197: export 'flag_build' specified multiple times; using first specification
flags.c.obj : warning LNK4197: export 'flag_eliminate' specified multiple times; using first specification
flags.c.obj : warning LNK4197: export 'flag_twosided' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'read_att' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'net_print_att' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_prolog' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'file_to_mem' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_binary_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_binary_file_multiple' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_binary_file_multiple_init' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_text_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_read_spaced_text_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'fsm_write_binary_file' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'load_defined' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'save_defined' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'foma_write_prolog' specified multiple times; using first specification
io.c.obj : warning LNK4197: export 'foma_net_print' specified multiple times; using first specification
lex.cmatrix.c.obj : warning LNK4197: export 'my_cmatrixparse' specified multiple times; using first specification
lex.lexc.c.obj : warning LNK4197: export 'fsm_lexc_parse_file' specified multiple times; using first specification
lex.lexc.c.obj : warning LNK4197: export 'fsm_lexc_parse_string' specified multiple times; using first specification
lex.yy.c.obj : warning LNK4197: export 'fsm_parse_regex' specified multiple times; using first specification
mem.c.obj : warning LNK4197: export 'xxmalloc' specified multiple times; using first specification
minimize.c.obj : warning LNK4197: export 'fsm_minimize' specified multiple times; using first specification
reverse.c.obj : warning LNK4197: export 'fsm_reverse' specified multiple times; using first specification
rewrite.c.obj : warning LNK4197: export 'fsm_clear_contexts' specified multiple times; using first specification
rewrite.c.obj : warning LNK4197: export 'fsm_context_restrict' specified multiple times; using first specification
rewrite.c.obj : warning LNK4197: export 'fsm_rewrite' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_add' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_add_number' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_add_special' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_remove' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_remove_num' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_string' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_create' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_max' specified multiple times; using first specification
sigma.c.obj : warning LNK4197: export 'sigma_copy' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_init' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_clear' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_heap_max' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_med_limit' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_med_cutoff' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_get_cost' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_set_align_symbol' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_get_instring' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med_get_outstring' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'apply_med' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'fsm_create_letter_lookup' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_init' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_default_substitute' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_default_insert' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_default_delete' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_set_cost' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_print' specified multiple times; using first specification
spelling.c.obj : warning LNK4197: export 'cmatrix_print_att' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_get_library_version_string' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sort_arcs' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_boolean' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_copy' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_empty_set' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_empty_string' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_identity' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_quantifier' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_logical_eq' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_logical_precedence' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_lowerdet' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_lowerdeteps' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_markallfinal' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_nonidentity' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_ambiguous_domain' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_ambiguous' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_extract_unambiguous' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sigma_net' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sigma_pairs_net' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isempty' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isfunctional' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isunambiguous' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isidentity' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_isuniversal' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_issequential' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_create' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_empty' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_sigma_destroy' specified multiple times; using first specification
structures.c.obj : warning LNK4197: export 'fsm_destroy' specified multiple times; using first specification
topsort.c.obj : warning LNK4197: export 'fsm_topsort' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_init' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_done' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_add_word' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_end_word' specified multiple times; using first specification
trie.c.obj : warning LNK4197: export 'fsm_trie_symbol' specified multiple times; using first specification
Creating library foma.lib and object foma.exp
[ 40%] Built target foma
Scanning dependencies of target treeler
[ 41%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/base/dictionary.cc.obj
dictionary.cc
[ 41%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/base/fidx.cc.obj
fidx.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
[ 41%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/base/token.cc.obj
token.cc
[ 42%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/class/class-basic.cc.obj
class-basic.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
[ 42%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/class/fgen-class.cc.obj
fgen-class.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
[ 42%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/class/io-class.cc.obj
io-class.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\class\io-class.cc(96): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 43%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/class/model-mc.cc.obj
model-mc.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 43%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/control/factory-base.cc.obj
factory-base.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 43%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/dependency_parser.cc.obj
dependency_parser.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\dep\dependency_parser.cc(41): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-basic-dep1.tcc(151): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(171): note: see reference to function template instantiation 'void treeler::FGenBasicDep1::create_cache(const treeler::DepSymbols &,const treeler::FGenBasicDep1::Configuration &,const X &,treeler::FGenBasicDep1::FVec *&,treeler::FGenBasicDep1::FVec *&)' being compiled
with
[
XX=treeler::dependency_parser::DEP1_X,
X=treeler::dependency_parser::DEP1_X
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(162): note: while compiling class template member function 'void treeler::FGenDepV0::features(const X &,treeler::DepFeaturesV0 &) const'
with
[
X=treeler::dependency_parser::DEP1_X,
R=treeler::dependency_parser::DEP1_R
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(176): note: see reference to function template instantiation 'void treeler::FGenDepV0::features(const X &,treeler::DepFeaturesV0 &) const' being compiled
with
[
X=treeler::dependency_parser::DEP1_X,
R=treeler::dependency_parser::DEP1_R
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(67): note: see reference to class template instantiation 'treeler::FGenDepV0' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(153): note: see reference to class template instantiation 'treeler::WFScores' being compiled
with
[
X=treeler::dependency_parser::DEP1_X,
R=treeler::dependency_parser::DEP1_R,
FGen=treeler::dependency_parser::DEP1_FGEN,
P=treeler::Parameters
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dependency_parser.h(78): note: see reference to class template instantiation 'treeler::WFScorer' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-basic-dep1.tcc(180): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-basic-dep1.tcc(71): warning C4101: 'e': unreferenced local variable
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-basic-dep1.tcc(95): warning C4101: 'e': unreferenced local variable
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-basic-dep1.tcc(139): warning C4101: 'e': unreferenced local variable
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-basic-dep1.tcc(167): warning C4101: 'e': unreferenced local variable
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(507): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(473): note: while compiling class template member function 'void treeler::Parameters::load(const char *,bool)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(466): note: see reference to function template instantiation 'void treeler::Parameters::load(const char *,bool)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(195): note: while compiling class template member function 'treeler::Parameters::Parameters(const int)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/control/factory-scores.h(100): note: see reference to function template instantiation 'treeler::Parameters::Parameters(const int)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(201): note: while compiling class template member function 'treeler::Parameters::~Parameters(void)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\dep\dependency_parser.cc(75): note: see reference to function template instantiation 'treeler::Parameters::~Parameters(void)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(69): note: see reference to class template instantiation 'treeler::Parameters' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(507): warning C4267: 'initializing': conversion from 'size_t' to 'const int', possible loss of data
[ 44%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/parser-projdep1.cc.obj
parser-projdep1.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 44%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/parser-projdep2.cc.obj
parser-projdep2.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 44%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/part-dep1.cc.obj
part-dep1.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\dep\part-dep1.cc(47): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\dep\part-dep1.cc(54): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 45%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/part-dep2-index.cc.obj
part-dep2-index.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 45%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/part-dep2.cc.obj
part-dep2.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 45%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/dep/pos-symbols.cc.obj
pos-symbols.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\dep\pos-symbols.cc(154): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 46%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/io/io-basic.cc.obj
io-basic.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 46%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/srl/part-srl0.cc.obj
part-srl0.cc
[ 46%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/srl/simple-parser.cc.obj
simple-parser.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/srl.h(89): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(103): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\simple-parser.cc(117): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\simple-parser.cc(117): warning C4267: 'initializing': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-tree.h(229): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-tree.h(228): note: while compiling class template member function 'treeler::DepTree &&treeler::DepTree::convert(const treeler::DepVector &)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\simple-parser.cc(166): note: see reference to function template instantiation 'treeler::DepTree &&treeler::DepTree::convert(const treeler::DepVector &)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\simple-parser.cc(91): note: see reference to class template instantiation 'treeler::DepTree' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-tree.h(229): warning C4267: 'initializing': conversion from 'size_t' to 'const int', possible loss of data
[ 47%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/srl/srl_parser.cc.obj
srl_parser.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/srl.h(89): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(103): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(82): warning C4800: 'const int': forcing value to bool 'true' or 'false' (performance warning)
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(84): warning C4805: '|=': unsafe mix of type 'long' and type 'bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(97): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/sentence.h(54): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(571): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(118): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const T (&))' being compiled
with
[
T=char [4]
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(532): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(493): note: while compiling class template member function 'void treeler::CoNLLBasicStream::write(std::ostream &) const'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(425): note: see reference to function template instantiation 'void treeler::CoNLLBasicStream::write(std::ostream &) const' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(118): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const T (&))' being compiled
with
[
T=char [4]
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(533): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/io-sentence.h(142): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/io.h(13): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const treeler::BasicSentence> &)' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(118): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const treeler::srl::Sentence &)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(581): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/io.h(90): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const std::vector> &)' being compiled
with
[
_Ty=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(118): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const treeler::srl::PredArgSet &)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/io-dep.h(113): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/io.h(14): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const treeler::DepVector &)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-tree.h(229): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-tree.h(228): note: while compiling class template member function 'treeler::DepTree &&treeler::DepTree::convert(const treeler::DepVector &)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/simple-parser.h(176): note: see reference to function template instantiation 'treeler::DepTree &&treeler::DepTree::convert(const treeler::DepVector &)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/simple-parser.h(176): note: see reference to class template instantiation 'treeler::DepTree' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/simple-parser.h(126): note: see reference to function template instantiation 'double treeler::srl::SimpleParser::argmax(const treeler::srl::SimpleParser::X &,S &,treeler::srl::PredArgSet &,treeler::Label &)' being compiled
with
[
S=treeler::WFScores
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(109): note: see reference to function template instantiation 'double treeler::srl::SimpleParser::argmax>(const treeler::srl::SimpleParser::X &,S &,treeler::srl::PredArgSet &)' being compiled
with
[
X=treeler::srl_parser::srl_sentence_type,
R=treeler::srl_parser::srl_part_type,
FGen=treeler::srl_parser::srl_fgen_type,
P=treeler::Parameters,
S=treeler::WFScores
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-tree.h(229): warning C4267: 'initializing': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(507): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(473): note: while compiling class template member function 'void treeler::Parameters::load(const char *,bool)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(466): note: see reference to function template instantiation 'void treeler::Parameters::load(const char *,bool)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(195): note: while compiling class template member function 'treeler::Parameters::Parameters(const int)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/control/factory-scores.h(100): note: see reference to function template instantiation 'treeler::Parameters::Parameters(const int)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(201): note: while compiling class template member function 'treeler::Parameters::~Parameters(void)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\srl\srl_parser.cc(135): note: see reference to function template instantiation 'treeler::Parameters::~Parameters(void)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(69): note: see reference to class template instantiation 'treeler::Parameters' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(153): note: see reference to class template instantiation 'treeler::WFScores' being compiled
with
[
X=treeler::srl_parser::srl_sentence_type,
R=treeler::srl_parser::srl_part_type,
FGen=treeler::srl_parser::srl_fgen_type,
P=treeler::Parameters
]
c:\freeling-4.2src\freeling-4.2\src\libtreeler\treeler\srl\srl_parser.h(90): note: see reference to class template instantiation 'treeler::WFScorer' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/parameters.h(507): warning C4267: 'initializing': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v1.h(647): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v1.h(643): note: while compiling class template member function 'void treeler::DepFeaturesV1Extractor::X,treeler::PartDep1,FIdx>::extract(const treeler::DepSymbols &,const X &,const R &,treeler::FeatureVector *)'
with
[
FIdx=treeler::FIdxBits,
X=treeler::srl::FeaturesSRLV1::X,
R=treeler::PartDep1
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fgen-srl-v1.h(190): note: see reference to function template instantiation 'void treeler::DepFeaturesV1Extractor::X,treeler::PartDep1,FIdx>::extract(const treeler::DepSymbols &,const X &,const R &,treeler::FeatureVector *)' being compiled
with
[
FIdx=treeler::FIdxBits,
X=treeler::srl::FeaturesSRLV1::X,
R=treeler::PartDep1
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fgen-srl-v1.h(190): note: see reference to class template instantiation 'treeler::DepFeaturesV1Extractor::X,treeler::PartDep1,FIdx>' being compiled
with
[
FIdx=treeler::FIdxBits
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fgen-srl-v1.h(183): note: while compiling class template member function 'treeler::FeatureVector::FIdx> *treeler::srl::FeaturesSRLV1::phi(const treeler::srl::PartSRL &)'
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fgen-srl-v1.h(167): note: see reference to function template instantiation 'treeler::FeatureVector::FIdx> *treeler::srl::FeaturesSRLV1::phi(const treeler::srl::PartSRL &)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/wf-scores.h(128): note: while compiling class template member function 'std::vector> treeler::WFScores::score_block(const R &,const std::list> &)'
with
[
_Ty=double,
X=treeler::srl_parser::srl_sentence_type,
R=treeler::srl_parser::srl_part_type,
FGen=treeler::srl_parser::srl_fgen_type,
P=treeler::Parameters
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/simple-parser.h(238): note: see reference to function template instantiation 'std::vector> treeler::WFScores::score_block(const R &,const std::list> &)' being compiled
with
[
_Ty=double,
X=treeler::srl_parser::srl_sentence_type,
R=treeler::srl_parser::srl_part_type,
FGen=treeler::srl_parser::srl_fgen_type,
P=treeler::Parameters
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/ftemplates-srl.h(84): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fgen-srl-v1.h(196): note: see reference to function template instantiation 'void treeler::srl::FTemplatesSRL::extract(const treeler::srl::FTemplatesSRL::Configuration &,const treeler::srl::SRLSymbols &,const treeler::srl::FTemplatesSRL::X &,int,int,treeler::FeatureVector *)' being compiled
with
[
FIdx=treeler::FIdxBits
]
[ 47%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/tag/io-tag.cc.obj
io-tag.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\tag\io-tag.cc(13): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(581): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\tag\io-tag.cc(9): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator <<(treeler::CoNLLBasicStream &,const std::vector> &)' being compiled
with
[
_Ty=int
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/io/conllstream.h(601): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\tag\io-tag.cc(26): note: see reference to function template instantiation 'treeler::CoNLLBasicStream &treeler::operator >>(treeler::CoNLLBasicStream &,std::vector> &)' being compiled
with
[
_Ty=int
]
[ 47%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/tag/part-tag.cc.obj
part-tag.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 48%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/tag/tuple-seq.cc.obj
tuple-seq.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 48%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/util/char-utils.cc.obj
char-utils.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\char-utils.cc(92): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\char-utils.cc(94): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\char-utils.cc(95): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\char-utils.cc(96): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 48%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/util/options.cc.obj
options.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(192): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(228): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(231): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(232): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(238): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(247): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(248): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(277): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(292): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler\util\options.cc(349): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 49%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/util/timer.cc.obj
timer.cc
[ 49%] Building CXX object src/libtreeler/CMakeFiles/treeler.dir/treeler/base/windll.cc.obj
windll.cc
[ 50%] Linking CXX shared library treeler.dll
Creating library treeler.lib and object treeler.exp
Creating library treeler.lib and object treeler.exp
[ 50%] Built target treeler
Scanning dependencies of target freeling
[ 50%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/RE_map.cc.obj
RE_map.cc
[ 50%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/accents/accents.cc.obj
accents.cc
[ 51%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/accents/accents_default.cc.obj
accents_default.cc
[ 51%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/accents/accents_es.cc.obj
accents_es.cc
[ 51%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/accents/accents_gl.cc.obj
accents_gl.cc
[ 52%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/alternatives.cc.obj
alternatives.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\alternatives.cc(233): warning C4267: 'argument': conversion from 'size_t' to 'long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\alternatives.cc(292): warning C4267: 'argument': conversion from 'size_t' to 'long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\alternatives.cc(293): warning C4267: 'argument': conversion from 'size_t' to 'long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\alternatives.cc(456): warning C4267: 'argument': conversion from 'size_t' to 'long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\alternatives.cc(474): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
[ 52%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/analyzer.cc.obj
analyzer.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/srl.h(89): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(103): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(82): warning C4800: 'const int': forcing value to bool 'true' or 'false' (performance warning)
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(84): warning C4805: '|=': unsafe mix of type 'long' and type 'bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(178): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
[ 52%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/analyzer_config.cc.obj
analyzer_config.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(457): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(458): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(459): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(460): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(461): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(462): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(463): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(464): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(465): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(466): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(467): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(468): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(469): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(470): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\analyzer_config.cc(471): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
[ 53%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/automat.cc.obj
automat.cc
[ 53%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/bioner.cc.obj
bioner.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\bioner.cc(168): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 53%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/chart_parser/chart.cc.obj
chart.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\chart_parser\chart.cc(153): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 54%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/chart_parser/chart_parser.cc.obj
chart_parser.cc
[ 54%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/chart_parser/grammar.cc.obj
grammar.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\chart_parser\grammar.cc(368): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 54%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/compounds.cc.obj
compounds.cc
[ 55%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/configfile.cc.obj
configfile.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\configfile.cc(89): warning C4800: 'int': forcing value to bool 'true' or 'false' (performance warning)
[ 55%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/mention_detector.cc.obj
mention_detector.cc
[ 55%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/mention_detector_constit.cc.obj
mention_detector_constit.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_constit.cc(449): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
[ 56%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/mention_detector_dep.cc.obj
mention_detector_dep.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(220): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(242): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(245): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(260): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(267): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(270): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\mention_detector_dep.cc(295): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 56%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor.cc.obj
relaxcor.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor.cc(609): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 56%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor_fex.cc.obj
relaxcor_fex.cc
[ 57%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor_fex_abs.cc.obj
relaxcor_fex_abs.cc
[ 57%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor_fex_constit.cc.obj
relaxcor_fex_constit.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(1761): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(1798): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(1801): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(1814): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(1854): warning C4244: 'return': conversion from 'unsigned __int64' to 'double', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(1855): warning C4244: 'return': conversion from 'unsigned __int64' to 'double', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(2282): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(2283): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_constit.cc(2291): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 57%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor_fex_dep.cc.obj
relaxcor_fex_dep.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_dep.cc(507): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_dep.cc(726): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\coref\relaxcor\relaxcor_fex_dep.cc(746): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 58%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor_model.cc.obj
relaxcor_model.cc
[ 58%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/coref/relaxcor/relaxcor_modelDT.cc.obj
relaxcor_modelDT.cc
[ 58%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/corrector.cc.obj
corrector.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(425): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(441): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(554): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(736): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(746): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(775): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(831): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\corrector.cc(859): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 59%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/crf_nerc.cc.obj
crf_nerc.cc
[ 59%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/csr_kb.cc.obj
csr_kb.cc
[ 59%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/database.cc.obj
database.cc
[ 60%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates.cc.obj
dates.cc
[ 60%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_ca.cc.obj
dates_ca.cc
[ 60%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_de.cc.obj
dates_de.cc
[ 61%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_default.cc.obj
dates_default.cc
[ 61%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_en.cc.obj
dates_en.cc
[ 61%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_es.cc.obj
dates_es.cc
[ 62%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_fr.cc.obj
dates_fr.cc
[ 62%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_gl.cc.obj
dates_gl.cc
[ 62%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_pt.cc.obj
dates_pt.cc
[ 63%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dates/dates_ru.cc.obj
dates_ru.cc
[ 63%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dependency_parsing/dep_lstm.cc.obj
dep_lstm.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_lstm.cc(64): warning C4267: 'initializing': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_lstm.cc(235): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_lstm.cc(236): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_lstm.cc(237): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_lstm.cc(450): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_lstm.cc(621): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 64%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dependency_parsing/dep_rules.cc.obj
dep_rules.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_rules.cc(467): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_rules.cc(469): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_rules.cc(557): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_rules.cc(558): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 64%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dependency_parsing/dep_treeler.cc.obj
dep_treeler.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_treeler.cc(221): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(178): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
[ 64%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dependency_parsing/dep_txala.cc.obj
dep_txala.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(406): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(533): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(641): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(642): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(895): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(896): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dependency_parsing\dep_txala.cc(897): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 65%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/dictionary.cc.obj
dictionary.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dictionary.cc(672): warning C4267: 'argument': conversion from 'size_t' to 'unsigned long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dictionary.cc(680): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\dictionary.cc(688): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 65%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/embeddings.cc.obj
embeddings.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\zstr\zstr.hpp(182): warning C4244: '=': conversion from '__int64' to 'uInt', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\zstr\zstr.hpp(184): warning C4267: '=': conversion from 'size_t' to 'uInt', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\zstr\zstr.hpp(251): warning C4267: '=': conversion from 'size_t' to 'uInt', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\zstr\zstr.hpp(286): warning C4244: '=': conversion from '__int64' to 'uInt', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\embeddings.cc(91): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\embeddings.cc(104): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\embeddings.cc(117): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\embeddings.cc(377): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept(false)' being compiled
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\embeddings.cc(377): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept(false)' being compiled
[ 65%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/fex/fex.cc.obj
fex.cc
[ 66%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/fex/fex_lexicon.cc.obj
fex_lexicon.cc
[ 66%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/fex/fex_rule.cc.obj
fex_rule.cc
[ 66%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/fex/nerc_features.cc.obj
nerc_features.cc
[ 67%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/foma_FSM.cc.obj
foma_FSM.cc
[ 67%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/hmm_tagger.cc.obj
hmm_tagger.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(156): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(646): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(705): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(706): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(708): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(716): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(718): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\hmm_tagger.cc(728): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 67%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/lang_ident/idioma.cc.obj
idioma.cc
[ 68%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/lang_ident/lang_ident.cc.obj
lang_ident.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\lang_ident\lang_ident.cc(104): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 68%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/language.cc.obj
language.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(365): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(394): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(402): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(460): warning C4018: '>': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(464): warning C4018: '>': signed/unsigned mismatch
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(681): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1337): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1381): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1384): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1598): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1604): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Objty=std::pair,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Objty=std::pair,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>(std::allocator<_Other> &,_Objty *,std::pair &&)' being compiled
with
[
_Alloc=std::allocator,void *>>,
_Ty=std::pair,
_Other=std::_Tree_node,void *>,
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>(std::allocator<_Other> &,_Objty *,std::pair &&)' being compiled
with
[
_Alloc=std::allocator,void *>>,
_Ty=std::pair,
_Other=std::_Tree_node,void *>,
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(889): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>(_Ty *,std::pair &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(887): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>(_Ty *,std::pair &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>(std::pair &&)' being compiled
with
[
_Kty=int,
_Ty=int,
_Traits=std::_Tmap_traits,std::allocator>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>(std::pair &&)' being compiled
with
[
_Kty=int,
_Ty=int,
_Traits=std::_Tmap_traits,std::allocator>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>(std::pair &&)' being compiled
with
[
_Kty=int,
_Ty=int,
_Pr=std::less,
_Alloc=std::allocator>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>(std::pair &&)' being compiled
with
[
_Kty=int,
_Ty=int,
_Pr=std::less,
_Alloc=std::allocator>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1005): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less<_Ty>,std::allocator>>::insert,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=int,
_Valty=std::pair
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\language.cc(1005): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less<_Ty>,std::allocator>>::insert,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=int,
_Valty=std::pair
]
[ 68%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/lexer.cc.obj
lexer.cc
[ 69%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/locutions.cc.obj
locutions.cc
[ 69%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/maco.cc.obj
maco.cc
[ 69%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/maco_options.cc.obj
maco_options.cc
[ 70%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/nec.cc.obj
nec.cc
[ 70%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/ner.cc.obj
ner.cc
[ 70%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/ner_module.cc.obj
ner_module.cc
[ 71%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/np.cc.obj
np.cc
[ 71%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers.cc.obj
numbers.cc
[ 71%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_ca.cc.obj
numbers_ca.cc
[ 72%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_cs.cc.obj
numbers_cs.cc
[ 72%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_de.cc.obj
numbers_de.cc
[ 72%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_default.cc.obj
numbers_default.cc
[ 73%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_en.cc.obj
numbers_en.cc
[ 73%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_es.cc.obj
numbers_es.cc
[ 73%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_gl.cc.obj
numbers_gl.cc
[ 74%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_it.cc.obj
numbers_it.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\numbers\numbers_it.cc(380): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\numbers\numbers_it.cc(382): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\numbers\numbers_it.cc(411): warning C4267: '-=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\numbers\numbers_it.cc(437): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[ 74%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_pt.cc.obj
numbers_pt.cc
[ 74%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/numbers/numbers_ru.cc.obj
numbers_ru.cc
[ 75%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/adaboost.cc.obj
adaboost.cc
[ 75%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/classifier.cc.obj
classifier.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\omlet\classifier.cc(83): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\omlet\classifier.cc(101): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 75%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/dataset.cc.obj
dataset.cc
[ 76%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/example.cc.obj
example.cc
[ 76%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/libsvm.cc.obj
libsvm.cc
[ 76%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/svm.cc.obj
svm.cc
[ 77%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/viterbi.cc.obj
viterbi.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\omlet\viterbi.cc(86): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\omlet\viterbi.cc(174): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 77%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/omlet/weakrule.cc.obj
weakrule.cc
[ 78%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/conll_handler.cc.obj
conll_handler.cc
[ 78%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/input_conll.cc.obj
input_conll.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\input_conll.cc(291): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\input_conll.cc(297): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\input_conll.cc(366): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\input_conll.cc(373): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\input_conll.cc(379): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 78%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/input_freeling.cc.obj
input_freeling.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\input_freeling.cc(85): warning C4267: 'argument': conversion from 'size_t' to 'unsigned long', possible loss of data
[ 79%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/input_handler.cc.obj
input_handler.cc
[ 79%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/io_handler.cc.obj
io_handler.cc
[ 79%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output.cc.obj
output.cc
[ 80%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_conll.cc.obj
output_conll.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_conll.cc(173): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_conll.cc(212): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_conll.cc(384): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_conll.cc(422): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_conll.cc(437): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_conll.cc(440): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 80%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_freeling.cc.obj
output_freeling.cc
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(199): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,void,0>(std::pair> &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,void,0>(std::pair> &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>>(std::allocator<_Other> &,_Objty *,std::pair> &&)' being compiled
with
[
_Alloc=std::allocator>,void *>>,
_Ty=std::pair>,
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>>(std::allocator<_Other> &,_Objty *,std::pair> &&)' being compiled
with
[
_Alloc=std::allocator>,void *>>,
_Ty=std::pair>,
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(889): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>>(_Ty *,std::pair> &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(887): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>>(_Ty *,std::pair> &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Traits=std::_Tmap_traits,std::less,std::allocator>>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Traits=std::_Tmap_traits,std::less,std::allocator>>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Pr=std::less,
_Alloc=std::allocator>>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Pr=std::less,
_Alloc=std::allocator>>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_freeling.cc(258): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less,std::allocator>>::insert>,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Valty=std::pair>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_freeling.cc(258): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less,std::allocator>>::insert>,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Valty=std::pair>
]
[ 80%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_handler.cc.obj
output_handler.cc
[ 81%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_json.cc.obj
output_json.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_json.cc(154): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_json.cc(286): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_json.cc(313): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_json.cc(320): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(199): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,void,0>(std::pair> &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,void,0>(std::pair> &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>>(std::allocator<_Other> &,_Objty *,std::pair> &&)' being compiled
with
[
_Alloc=std::allocator>,void *>>,
_Ty=std::pair>,
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>>(std::allocator<_Other> &,_Objty *,std::pair> &&)' being compiled
with
[
_Alloc=std::allocator>,void *>>,
_Ty=std::pair>,
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(889): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>>(_Ty *,std::pair> &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(887): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>>(_Ty *,std::pair> &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Traits=std::_Tmap_traits,std::less,std::allocator>>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Traits=std::_Tmap_traits,std::less,std::allocator>>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Pr=std::less,
_Alloc=std::allocator>>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Pr=std::less,
_Alloc=std::allocator>>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_json.cc(372): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less,std::allocator>>::insert>,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Valty=std::pair>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_json.cc(372): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less,std::allocator>>::insert>,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Valty=std::pair>
]
[ 81%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_naf.cc.obj
output_naf.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_naf.cc(323): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_naf.cc(357): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_naf.cc(401): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_naf.cc(472): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 81%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_train.cc.obj
output_train.cc
[ 82%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/output/output_xml.cc.obj
output_xml.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_xml.cc(170): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_xml.cc(308): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_xml.cc(328): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_xml.cc(337): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(199): note: see reference to function template instantiation 'std::pair::pair(std::pair &&) noexcept' being compiled
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,void,0>(std::pair> &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,void,0>(std::pair> &&) noexcept' being compiled
with
[
_Kty=int,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>>(std::allocator<_Other> &,_Objty *,std::pair> &&)' being compiled
with
[
_Alloc=std::allocator>,void *>>,
_Ty=std::pair>,
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair>>(std::allocator<_Other> &,_Objty *,std::pair> &&)' being compiled
with
[
_Alloc=std::allocator>,void *>>,
_Ty=std::pair>,
_Other=std::_Tree_node>,void *>,
_Objty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(889): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>>(_Ty *,std::pair> &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(887): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair>>(_Ty *,std::pair> &&)' being compiled
with
[
_Other=std::_Tree_node>,void *>,
_Ty=std::pair>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Traits=std::_Tmap_traits,std::less,std::allocator>>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Traits=std::_Tmap_traits,std::less,std::allocator>>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Pr=std::less,
_Alloc=std::allocator>>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace>>(std::pair> &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Pr=std::less,
_Alloc=std::allocator>>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_xml.cc(386): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less,std::allocator>>::insert>,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Valty=std::pair>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\output\output_xml.cc(386): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less,std::allocator>>::insert>,void>(_Valty &&)' being compiled
with
[
_Kty=int,
_Ty=std::pair,
_Valty=std::pair>
]
[ 82%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/phonetics.cc.obj
phonetics.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\phonetics.cc(96): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\phonetics.cc(146): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 82%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/prefTree.cc.obj
prefTree.cc
[ 83%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/probabilities.cc.obj
probabilities.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\probabilities.cc(414): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 83%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/processor.cc.obj
processor.cc
[ 83%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/punts.cc.obj
punts.cc
[ 84%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities.cc.obj
quantities.cc
[ 84%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_ca.cc.obj
quantities_ca.cc
[ 84%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_default.cc.obj
quantities_default.cc
[ 85%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_en.cc.obj
quantities_en.cc
[ 85%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_es.cc.obj
quantities_es.cc
[ 85%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_gl.cc.obj
quantities_gl.cc
[ 86%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_pt.cc.obj
quantities_pt.cc
[ 86%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/quantities/quantities_ru.cc.obj
quantities_ru.cc
[ 86%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/regexp.cc.obj
regexp.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\regexp.cc(186): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\regexp.cc(196): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\regexp.cc(197): warning C4244: 'argument': conversion from '__int64' to 'int', possible loss of data
[ 87%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/relax_tagger/constraint_grammar.cc.obj
constraint_grammar.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\relax_tagger\constraint_grammar.cc(418): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 87%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/relax_tagger/relax.cc.obj
relax.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\relax_tagger\relax.cc(85): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\relax_tagger\relax.cc(121): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 87%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/relax_tagger/relax_tagger.cc.obj
relax_tagger.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\relax_tagger\relax_tagger.cc(75): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 88%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semdb.cc.obj
semdb.cc
[ 88%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semgraph/ent_extract.cc.obj
ent_extract.cc
[ 88%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semgraph/rel_extract.cc.obj
rel_extract.cc
[ 89%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semgraph/rel_extract_SPR.cc.obj
rel_extract_SPR.cc
[ 89%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semgraph/rel_extract_SRL.cc.obj
rel_extract_SRL.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\semgraph\rel_extract_SRL.cc(153): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\semgraph\rel_extract_SRL.cc(196): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\semgraph\rel_extract_SRL.cc(202): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\semgraph\rel_extract_SRL.cc(226): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[ 89%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semgraph/semgraph.cc.obj
semgraph.cc
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\utility(200): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,std::allocator>,unsigned __int64,void,0>(std::pair,std::allocator>,unsigned __int64> &&) noexcept' being compiled
with
[
_Kty=std::wstring,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(737): note: see reference to function template instantiation 'std::pair::pair,std::allocator>,unsigned __int64,void,0>(std::pair,std::allocator>,unsigned __int64> &&) noexcept' being compiled
with
[
_Kty=std::wstring,
_Ty=int
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Objty=std::pair,
_Ty=std::pair,std::allocator>,unsigned __int64>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(857): note: see reference to function template instantiation 'void std::allocator<_Other>::construct<_Objty,_Ty>(_Objty *,_Ty &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Objty=std::pair,
_Ty=std::pair,std::allocator>,unsigned __int64>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(996): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair,std::allocator>,unsigned __int64>>(std::allocator<_Other> &,_Objty *,std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Alloc=std::allocator,void *>>,
_Ty=std::pair,
_Other=std::_Tree_node,void *>,
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xmemory0(995): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,std::pair,std::allocator>,unsigned __int64>>(std::allocator<_Other> &,_Objty *,std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Alloc=std::allocator,void *>>,
_Ty=std::pair,
_Other=std::_Tree_node,void *>,
_Objty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(889): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair,std::allocator>,unsigned __int64>>(_Ty *,std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(887): note: see reference to function template instantiation 'void std::_Wrap_alloc>::construct<_Ty,std::pair,std::allocator>,unsigned __int64>>(_Ty *,std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Other=std::_Tree_node,void *>,
_Ty=std::pair
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode,std::allocator>,unsigned __int64>>(std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Kty=std::wstring,
_Ty=int,
_Traits=std::_Tmap_traits,std::allocator>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\xtree(1076): note: see reference to function template instantiation 'std::_Tree_node,void *> *std::_Tree_comp_alloc<_Traits>::_Buynode,std::allocator>,unsigned __int64>>(std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Kty=std::wstring,
_Ty=int,
_Traits=std::_Tmap_traits,std::allocator>,false>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace,std::allocator>,unsigned __int64>>(std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Kty=std::wstring,
_Ty=int,
_Pr=std::less,
_Alloc=std::allocator>
]
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE\map(194): note: see reference to function template instantiation 'std::pair>>>,bool> std::_Tree>::emplace,std::allocator>,unsigned __int64>>(std::pair,std::allocator>,unsigned __int64> &&)' being compiled
with
[
_Kty=std::wstring,
_Ty=int,
_Pr=std::less,
_Alloc=std::allocator>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\semgraph\semgraph.cc(119): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less<_Kty>,std::allocator>>::insert,std::allocator>,unsigned __int64>,void>(_Valty &&)' being compiled
with
[
_Kty=std::wstring,
_Ty=int,
_Valty=std::pair,std::allocator>,unsigned __int64>
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\semgraph\semgraph.cc(119): note: see reference to function template instantiation 'std::pair>>>,bool> std::map<_Kty,_Ty,std::less<_Kty>,std::allocator>>::insert,std::allocator>,unsigned __int64>,void>(_Valty &&)' being compiled
with
[
_Kty=std::wstring,
_Ty=int,
_Valty=std::pair,std::allocator>,unsigned __int64>
]
[ 90%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/semgraph/semgraph_extract.cc.obj
semgraph_extract.cc
[ 90%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/senses.cc.obj
senses.cc
[ 90%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/splitter.cc.obj
splitter.cc
[ 91%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/srl/srl_treeler.cc.obj
srl_treeler.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/srl.h(89): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(103): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(82): warning C4800: 'const int': forcing value to bool 'true' or 'false' (performance warning)
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(84): warning C4805: '|=': unsafe mix of type 'long' and type 'bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\srl\srl_treeler.cc(244): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\srl\srl_treeler.cc(335): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\srl\srl_treeler.cc(345): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\srl\srl_treeler.cc(361): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 91%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/suffixes.cc.obj
suffixes.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\suffixes.cc(96): warning C4267: 'argument': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\suffixes.cc(97): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\suffixes.cc(153): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\suffixes.cc(208): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
[ 92%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/summarizer/lexical_chain.cc.obj
lexical_chain.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\lexical_chain.cc(87): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[ 92%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/summarizer/relation.cc.obj
relation.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\relation.cc(214): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\relation.cc(305): warning C4244: '=': conversion from 'unsigned __int64' to 'double', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\relation.cc(361): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 92%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/summarizer/summarizer.cc.obj
summarizer.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\summarizer.cc(175): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\summarizer.cc(192): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\summarizer.cc(284): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\summarizer.cc(370): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\summarizer\summarizer.cc(512): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[ 93%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/tagger.cc.obj
tagger.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\tagger.cc(121): warning C4267: '=': conversion from 'size_t' to 'unsigned int', possible loss of data
[ 93%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/tagset.cc.obj
tagset.cc
[ 93%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/tokenizer.cc.obj
tokenizer.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\tokenizer.cc(182): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\tokenizer.cc(210): warning C4267: 'argument': conversion from 'size_t' to 'unsigned long', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\tokenizer.cc(211): warning C4267: '+=': conversion from 'size_t' to 'unsigned long', possible loss of data
[ 94%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/traces.cc.obj
traces.cc
[ 94%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/ukb.cc.obj
ukb.cc
C:\FreeLing-4.2src\FreeLing-4.2\src\libfreeling\ukb.cc(155): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[ 94%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/util.cc.obj
util.cc
[ 95%] Building CXX object src/libfreeling/CMakeFiles/freeling.dir/version.cc.obj
version.cc
[ 95%] Linking CXX shared library freeling.dll
Creating library freeling.lib and object freeling.exp
Creating library freeling.lib and object freeling.exp
[ 95%] Built target freeling
Scanning dependencies of target analyzer_client
[ 96%] Building CXX object src/main/CMakeFiles/analyzer_client.dir/sample_analyzer/analyzer_client.cc.obj
analyzer_client.cc
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(71): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(91): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(116): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(156): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[ 96%] Linking CXX executable analyzer_client.exe
[ 96%] Built target analyzer_client
Scanning dependencies of target analyzer
[ 96%] Building CXX object src/main/CMakeFiles/analyzer.dir/sample_analyzer/main.cc.obj
main.cc
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(71): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(91): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(116): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\socket.h(156): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\config.h(246): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\config.h(247): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\config.h(248): warning C4267: 'argument': conversion from 'size_t' to 'const int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/srl.h(89): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(103): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(82): warning C4800: 'const int': forcing value to bool 'true' or 'false' (performance warning)
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(84): warning C4805: '|=': unsafe mix of type 'long' and type 'bool' in operation
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\stats.h(94): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
c:\freeling-4.2src\freeling-4.2\src\main\sample_analyzer\stats.h(96): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(178): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
[ 96%] Linking CXX executable analyzer.exe
[ 96%] Built target analyzer
Scanning dependencies of target build-dict
[ 96%] Building CXX object src/utilities/CMakeFiles/build-dict.dir/installation/build-dict.cc.obj
build-dict.cc
[ 97%] Linking CXX executable build-dict.exe
[ 97%] Built target build-dict
Scanning dependencies of target fusion-mw
[ 97%] Building CXX object src/utilities/CMakeFiles/fusion-mw.dir/installation/fusion-mw.cc.obj
fusion-mw.cc
[ 98%] Linking CXX executable fusion-mw.exe
[ 98%] Built target fusion-mw
Scanning dependencies of target dicc2phon
[ 99%] Building CXX object src/utilities/CMakeFiles/dicc2phon.dir/installation/dicc2phon.cc.obj
dicc2phon.cc
[ 99%] Linking CXX executable dicc2phon.exe
[ 99%] Built target dicc2phon
Scanning dependencies of target gz-cat
[ 99%] Building CXX object src/utilities/CMakeFiles/gz-cat.dir/installation/gz-cat.cc.obj
gz-cat.cc
[ 99%] Linking CXX executable gz-cat.exe
[ 99%] Built target gz-cat
Scanning dependencies of target convert_model
[ 99%] Building CXX object src/utilities/CMakeFiles/convert_model.dir/embeddings/convert_model.cc.obj
convert_model.cc
[ 99%] Linking CXX executable convert_model.exe
[ 99%] Built target convert_model
Scanning dependencies of target Jfreeling_swig_compilation
[100%] Swig compile freeling_javaAPI.i for java
[100%] Built target Jfreeling_swig_compilation
Scanning dependencies of target Jfreeling
[100%] Building CXX object APIs/java/CMakeFiles/Jfreeling.dir/edu/upc/Jfreeling/freeling_javaAPIJAVA_wrap.cxx.obj
freeling_javaAPIJAVA_wrap.cxx
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/sentence.h(71): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/part-tag.h(166): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/fidx.h(90): warning C4805: '|=': unsafe mix of type 'uint64_t' and type 'const bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/tag/tuple-seq.h(52): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(340): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/part-dep1.h(342): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/srl.h(89): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/paths-container.h(103): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(82): warning C4800: 'const int': forcing value to bool 'true' or 'false' (performance warning)
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/srl/fidx-path.h(84): warning C4805: '|=': unsafe mix of type 'long' and type 'bool' in operation
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(2952): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(3174): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(3195): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(3899): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(4086): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(4395): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(4445): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(4740): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(4889): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(6750): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(6800): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(7613): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(7663): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(8511): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(8561): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(9409): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(9459): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(10137): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(10158): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(10748): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(10769): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(11359): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(11380): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(11970): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(11991): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(12372): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(12393): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(12507): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(12811): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13451): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13472): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13493): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13659): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13680): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13703): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13724): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13779): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(13800): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(14576): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(14626): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(15267): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(15357): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(15473): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(15740): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(16249): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(16718): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(16814): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(16835): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(16978): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(16999): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17020): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17056): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17150): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17171): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17286): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17307): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17328): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17349): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17370): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17435): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17463): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17553): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(17610): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18140): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18190): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18240): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18290): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18340): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18390): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18440): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18490): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18540): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18590): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18640): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18690): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18740): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18790): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18868): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18918): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(18968): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19018): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19068): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19118): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19308): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19358): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19408): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19458): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19508): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19558): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(19608): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(20290): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(21227): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(21266): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(21826): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(21876): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(21926): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(21976): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22026): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22076): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22126): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22176): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22226): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22276): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22326): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(22376): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(25017): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(25226): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26110): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26189): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26297): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26347): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26416): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26751): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26856): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26901): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(26958): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(27928): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(27978): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28034): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28077): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28120): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28181): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28241): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28407): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28443): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28479): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28787): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(28815): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29207): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29235): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29441): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29469): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29597): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29625): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29788): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29816): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(29978): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\build\APIs\java\edu\upc\Jfreeling\freeling_javaAPIJAVA_wrap.cxx(30006): warning C4267: 'initializing': conversion from 'size_t' to 'jsize', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(180): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to function template instantiation 'void treeler::DepSymbols::map(const treeler::BasicSentence> &,treeler::BasicSentence> &) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(181): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/base/basic-sentence.h(157): note: while compiling class template member function 'int treeler::BasicSentence>::size(void) const'
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/dep-symbols.h(178): note: see reference to function template instantiation 'int treeler::BasicSentence>::size(void) const' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
C:\FreeLing-4.2src\FreeLing-4.2\src\libtreeler\treeler/dep/fgen-dep-v0.h(69): note: see reference to class template instantiation 'treeler::BasicSentence>' being compiled
with
[
__LexT=std::string,
__TagT=std::string
]
[100%] Linking CXX shared library Jfreeling.dll
Creating library Jfreeling.lib and object Jfreeling.exp
Creating library Jfreeling.lib and object Jfreeling.exp
warning: [options] bootstrap class path not set in conjunction with -source 8
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
1 warning
[100%] Built target Jfreeling

C:\FreeLing-4.2src\FreeLing-4.2\build>nmake install

Microsoft (R) Program Maintenance Utility Version 14.00.24210.0
Copyright (C) Microsoft Corporation. All rights reserved.

[ 22%] Built target dynet
[ 30%] Built target crfsuite
[ 40%] Built target foma
[ 50%] Built target treeler
[ 95%] Built target freeling
[ 96%] Built target analyzer_client
[ 96%] Built target analyzer
[ 97%] Built target build-dict
[ 98%] Built target fusion-mw
[ 99%] Built target dicc2phon
[ 99%] Built target gz-cat
[ 99%] Built target convert_model
[100%] Built target Jfreeling_swig_compilation
[100%] Built target Jfreeling
Install the project...
-- Install configuration: "Debug"
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/chunker
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/chunker/grammar-chunk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/chunker/grammar.lemastemp
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/constr_gram.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/adv-espec-verbs-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/marq-disc-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-a-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-ante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-bajo-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-con-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-contra-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-de-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-desde-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-durante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-en-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-entre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-hacia-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-hasta-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-mediante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-para-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-por-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-sin-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-sobre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/nom-prep-tras-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-1prep-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-2prep-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-atrib-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-ditr-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-imper-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-intr-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-iobj-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-mov-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-pred-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-a-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-acerca-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-ante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-con-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-contra-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-de-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-desde-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-en-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-entre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-hacia-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-hasta-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-para-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-por-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-sin-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-sobre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-prep-tras-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-que-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/dep_txala/verbs-trans-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazLOC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazLOC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazMISC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazMISC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazORG-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazORG-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazPER-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/gazPER-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/nec-ab.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/nec-svm.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/nec.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/nec.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/nec.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/nec.svm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/twGENT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/twLOC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/twORG.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/nec/twPER.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/as/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/balear
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/chunker
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/chunker/grammar-chunk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/chunker/grammar-old.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/compounds.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/coref
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/coref/coref.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/coref/coref.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_lstm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_lstm/params-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-markers
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-markers/marq-disc-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-a-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-amb-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-contra-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-davant-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-de-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-en-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-entre-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-per-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-sense-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-sobre-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-nouns/nom-prep-sota-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-specs
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-specs/adv-espec-verbs-ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/Subj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/Subj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjAttr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjAttrIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-cap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-com.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-darrere.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-davant.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-per.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-sense.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPred-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjDobjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-amb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-cap-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-cap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-com.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-contra.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-davant.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-des.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-per.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-prop.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-sense.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj-sota.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjIobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj-a-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj-de-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj-des-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj-des-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj-en-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj-sobre-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPobjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPred-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf/SubjPredIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINF-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFAttrAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFDobjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFDobjINFIobjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFDobjINT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFDobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFDobjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINFPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjINT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPAttrAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPAttrAPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPAttrNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPAttrPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFIobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINTIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjINTIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-cap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-com.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-davant.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-per.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-sense.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredAP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCPredPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPIobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjNPPobjPP-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjNPPobjPP-darrere.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjNPPobjPP-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjNPPobjPP-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjNPPobjPP-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-amb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-cap-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-cap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-com.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-contra.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-davant.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-des.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-per.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-sense.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-sota.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPIobjPP-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-a-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-de-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-des-fins.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-en-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-sobre-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredAP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredAPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredAPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredNP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjNPPredPPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSC-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCAttrAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCAttrNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCDobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCDobjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/complex-verbs-synf-cat/SubjSCPredAPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/dep_txala/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/embeddings
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/function.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazLOC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazLOC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazMISC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazMISC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazORG-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazORG-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazPER-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/gazPER-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/twGENT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/twLOC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/twMISC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/twORG.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/data/twPER.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-f35-rich-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-f35-rich-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-f35.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-f43-poor1-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-f43-poor1-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nec/nec-f43.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-f80-poor1-3abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-f80-poor1-3abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-f80-rich-3abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-f80-rich-3abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/ner/ner-f80.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nerc/nerc-f02.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/nerc/nerc/nerc.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semgraph
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semgraph/arguments.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semgraph/semgraph-entities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semgraph/semgraph-SPR-treeler.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semgraph/semgraph-SPR-txala.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/semgraph/semgraph-SRL.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/summarizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/dep/parameters.009.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/pred.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/roles.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/srl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/srl/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/srl/parameters.025.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/treeler/srl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/twitter
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/twitter/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/twitter/usermap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ca/valencia
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/alternatives
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/alternatives/cost-keyboard
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/alternatives/cost-ort
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/alternatives/cost-phon
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/corrector
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/corrector/edit.dist
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/corrector/phonetic.dist
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/bg.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/ca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/cs.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/fr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/gl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/hi.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/hr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/ident-few.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/ident.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/it.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/ja.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/pt.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/ru.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/sk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/sl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/sr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/lang_ident/zh.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/nec/cities-CL.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/nec/cities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/nec/README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/pred-nom.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/pred-verb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/punct.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/quantities_default.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/wn.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/wn2roles.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/wn30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/common/xwn.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/as.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/ca-balear.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/ca-valencia.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/ca.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/cs.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/cy.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/de.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/en.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/es-ar.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/es-cl.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/es-old.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/es.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/fr.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/gl.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/ident.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/it.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/nb.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/pt.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/ru.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/config/sl.cfg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cs
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cs/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cs/phonetics.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cs/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cs/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/constr_gram.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/nec/nec.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/cy/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/compounds.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/dep_lstm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/dep_lstm/params-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/embeddings
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/locutions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/semgraph
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/semgraph/semgraph-entities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/semgraph/semgraph-SRL.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/dep/parameters.002.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/pred.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/roles.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/srl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/srl/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/srl/parameters.037.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/treeler/srl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/de/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/alternatives-ort.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/alternatives-phon.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/asr
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/asr/general-16k.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/asr/general-8k.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/appendix.PRP
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/conjuncions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/dicc.vbmodals
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/grammar-chunk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/grammar-old.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/list.PDTssg
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/nexes.mixtos
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/nexes.parentetics
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/nexes.preposicionals
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/nexes.subordinants
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-about.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-across.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-after.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-ahead.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-along.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-around.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-as.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-at.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-away.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-back.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-by.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-down.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-for.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-forward.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-in.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-into.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-of.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-off.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-on.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-onto.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-out.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-over.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-still.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-through.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-to.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-together.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-under.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-up.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-upon.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-with.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/ph-without.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/sn-chunkPRP.data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/sn-chunkPRPsdet.data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/chunker/WH-words.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/compounds.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/adaboost
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/adaboost/coref.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/adaboost/coref.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/mention_detector_constit.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/mention_detector_dep.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/fex.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/model.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/relaxcor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/capitals.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/forenames.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/gentilicis.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/gpe-regexps.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/llista-nicknames.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/person-names.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_constit/resources/titles.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_dep/fex.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_dep/model.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/coref/relaxcor_dep/relaxcor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/corrector.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/dep_lstm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/dep_lstm/params-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/dep_txala
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/dep_txala/compl.dicc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/dep_txala/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/dep_txala/interseccio.2xtr.suj+sub-that.dicc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/Domain-FOOD-locutions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/Domain-FOOD-usermap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/embeddings
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/heufull.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/locucions-extended.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/locucions-nps-wn.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/locucions-nums-wn.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/locucions.README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/moneda-TODO.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/moneda.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/function.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazLOC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazLOC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazMISC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazMISC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazORG-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazORG-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazPER-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/gazPER-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/twGENT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/twLOC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/twMISC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/twORG.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/data/twPER.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-f35-poor1-5abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-f35-poor1-5abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-f35-rich-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-f35-rich-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nec/nec-f35.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-f81-poor1-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-f81-poor1-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-f81-rich-5abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-f81-rich-5abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/ner/ner-f81.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nerc/nerc-f03.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/nerc/nerc/nerc.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/phonetics.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/semgraph
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/semgraph/semgraph-entities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/semgraph/semgraph-SPR-treeler.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/semgraph/semgraph-SPR-txala.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/semgraph/semgraph-SRL.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/summarizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/dep/parameters.004.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/pred.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/roles.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/srl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/srl/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/srl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/treeler/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/twitter
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/twitter/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/twitter/usermap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/en/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/alternatives-ort.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/alternatives-phon.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/asr
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/asr/banking-16k.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/chunker
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/chunker/grammar-chunk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/chunker/grammar-full.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/chunker/grammar-old.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/chunker/grammar.lemastemp
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/compounds.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/adaboost
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/adaboost/coref.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/adaboost/coref.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/mention_detector_constit.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/mention_detector_dep.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/fex.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/model.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/relaxcor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/capitals.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/forenames.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/gentilicis.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/gpe-regexps.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/llista-nicknames.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/person-names.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_constit/resources/titles.txt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_dep/fex.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_dep/model.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/coref/relaxcor_dep/relaxcor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/corrector.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_lstm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_lstm/params-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-markers
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-markers/marq-disc-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-a-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-ante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-bajo-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-con-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-contra-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-de-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-desde-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-durante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-en-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-entre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-hacia-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-hasta-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-mediante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-para-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-por-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-sin-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-sobre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-nouns/nom-prep-tras-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-specs
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-specs/adv-espec-verbs-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-markers
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-markers/marq-disc-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-a-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-ante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-bajo-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-con-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-contra-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-de-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-desde-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-durante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-en-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-entre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-hacia-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-hasta-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-mediante-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-para-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-por-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-sin-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-sobre-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-nouns/nom-prep-tras-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-specs
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-specs/adv-espec-verbs-es.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/Dobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/Subj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/Subj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjAttr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjAttrIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-ante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-delante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-detras.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-fuera_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-para.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-sin.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPobjIobj-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPred-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjDobjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-acerca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-adonde.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-alrededor-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-alrededor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-ante-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-ante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-bajo-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-bajo.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-cerca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-con-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-con.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-contra-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-contra.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-desde.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-detras.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-en-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-entre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-en_busca_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-frente_a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-frente_a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-hacia-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-hasta-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-junto.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-para.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-por-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-sin.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-sobre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjIobj-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjIobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-de-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-de-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-de-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-de-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-desde-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-desde-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-en-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-junto_a-en-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-junto_a-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-sobre-entre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj-sobre-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPred-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPobjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPred-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/complex-verbs-synf/SubjPredIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/Dobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/Subj-Pure.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/Subj-PV-Pure.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/Subj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/Subj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjAttr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjAttrIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-ante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-con.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-delante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-detras.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-fuera_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-para.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-sin.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPobjIobj-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPred-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjDobjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-acerca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-adonde.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-alrededor-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-alrededor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-ante-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-ante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-a_cargo_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-bajo-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-bajo.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-cerca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-con-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-con.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-con.dat.save
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-contra-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-contra.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-desde.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-detras.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-en-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-entre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-en_busca_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-frente_a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-frente_a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-hacia-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-hasta-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-junto.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-para.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-por-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-sin.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-sobre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjIobj-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjIobj-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjIobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-de-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-de-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-de-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-de-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-desde-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-desde-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-en-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-junto_a-en-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-junto_a-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-sobre-entre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj-sobre-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPred-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPobjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPred-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPred.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf/SubjPredIobj.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINF-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFAttrAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFAttrNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjINFIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjINFIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjINT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFDobjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFIobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFPobjPP-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjINFPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrAPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrAPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPAttrPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINF-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINF.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINFPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINTIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjINTIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-ante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-delante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-detras.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-fuera_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-para.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPPIobjNP-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPobjPPIobjPP-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredAP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjNPPredPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjSC-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPDobjSCPredPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPIobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-acerca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-adonde.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-alrededor-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-alrededor.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-ante-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-ante.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-a_cargo_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-bajo-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-bajo.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-cerca.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-con-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-con.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-contra-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-contra.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-desde.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-detras.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-en-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-entre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-en_busca_de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-frente_a-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-frente_a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-hacia-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-hasta-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-junto-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-junto.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-para.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-por-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-por.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-sin.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-sobre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP-sobre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPIobjNP-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPIobjPP-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPIobjPP-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPIobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-de-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-de-de-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-de-de.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-de-hacia.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-desde-a.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-desde-hasta.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-en-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-junto_a-en-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-junto_a-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-sobre-entre-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP-sobre-entre.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPredAP-como.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPobjPPPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredAPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredAPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredNPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredNPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjNPPredPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCAttrAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCAttrNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCDobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCDobjSC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCIobjPP-PV.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCPobjPP-en.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCPobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCPredAP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCPredAPIobjNP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/complex-verbs-synf-cat/SubjSCPredAPIobjPP.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/dep_txala/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/embeddings
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-ar
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-cl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-cl/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-cl/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old/constr_gram.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old/punct.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/es-old/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/locucions_extended.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/function.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazLOC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazLOC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazMISC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazMISC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazORG-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazORG-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazPER-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/gazPER-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/twGENT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/twLOC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/twMISC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/twORG.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/data/twPER.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-f34-poor1-5abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-f34-poor1-5abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-f34-rich-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-f34-rich-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nec/nec-f34.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-f201-poor1-3abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-f201-poor1-3abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-f201.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-f86-rich-5abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-f86-rich-5abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/ner/ner-f86.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nerc/nerc-f02.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/nerc/nerc/nerc.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/phonetics-corr.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/phonetics.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semgraph
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semgraph/arguments.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semgraph/semgraph-entities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semgraph/semgraph-SPR-treeler.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semgraph/semgraph-SPR-txala.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/semgraph/semgraph-SRL.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/summarizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/dep/parameters.024.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/pred.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/roles.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/srl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/srl/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/srl/parameters.034.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/treeler/srl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/twitter
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/twitter/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/twitter/usermap.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/es/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/fr/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/chunker
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/chunker/grammar-chunk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/dep_txala
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/dep_txala/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/function.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gaz-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazLOC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazLOC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazMISC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazMISC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazORG-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazORG-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazPER-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/gazPER-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/twGENT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/twLOC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/twMISC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/twORG.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/data/twPER.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-f33-rich-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-f33-rich-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-f33.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-f34-poor1-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-f34-poor1-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nec/nec-f34.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-f80-poor1-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-f80-poor1-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-f80-rich-5abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-f80-rich-5abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/ner/ner-f80.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nerc/nerc-f02.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/nerc/nerc/nerc.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/gl/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/semgraph
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/semgraph/semgraph-entities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/semgraph/semgraph-SRL.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/dep/parameters.006.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/hr/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/constr_gram.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/nec/nec.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/it/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/compounds.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/gaz.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/nb/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/chunker
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/chunker/grammar-chunk.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/constr_gram.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/function.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazLOC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazLOC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazMISC-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazMISC-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazORG-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazORG-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazPER-c.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/gazPER-p.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/twGENT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/twLOC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/twMISC.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/twORG.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/data/twPER.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-f34-poor1-5abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-f34-poor1-5abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-f34-rich-3abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-f34-rich-3abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nec/nec-f34.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-ab-poor1.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-ab-rich.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-f01-poor1-3abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-f01-poor1-3abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-f01.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-f85-rich-1abs.abm
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-f85-rich-1abs.lex
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/ner/ner-f85.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nerc
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nerc/nerc-f02.rgf
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/nerc/nerc/nerc.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/README
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/dep/parameters.050.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/pt/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/afixos.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/alternatives-ort.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/locucions.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/quantities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/ru/ukb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/constr_gram-B.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/constr_gram-BT.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/constr_gram-T.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/np.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/probabilitats.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/semdb.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/semgraph
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/semgraph/semgraph-entities.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/semgraph/semgraph-SPR-treeler.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/senses.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/senses30.src
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/splitter.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/tagger.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/tagset-sl.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/tagset.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/tokenizer.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/dep
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/dep/config.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/dep/parameters.001.gz
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/dependences.dat
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps/cpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps/dependencies.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps/fpos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps/lemmas.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps/morphos.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/treeler/maps/words.map
-- Installing: C:/FreeLing/FreeLing-4.2/freeling/share/freeling/sl/ukb.dat
-- Creating as dictionary...
CMake Error at cmake_install.cmake:53 (message):
Error 'Exit code 0xc0000135

' while executing dictionary indexation program. Make sure compilation
ended without errors, and that boost libraries can be found in the path.

NMAKE : fatal error U1077: 'echo' : return code '0x1'
Stop.

build_dict is correctly created

[ 97%] Linking CXX executable build-dict.exe
[ 97%] Built target build-dict

The problem seems to be that it produces an error when running.
Run file build-dict.exe (it should be in src/utitlities under your build directory)

  cd src/utitlities
  build-dict.exe

You should get

   Usage:  ./build-dict header-file entries-dir [add-dir [remove-dir]]

If you get the same error than before

  Exit code 0xc0000135

that is something related to windows 10 and/or your compiler. I googled that error and it seems to be related to .NET environment mising or in the wrong version (I am not sure what .NET has to do with a C++ compiler, but that is how microsoft works...).
  So, maybe making sure your .NET version is appropriate for your MSVC version could solve it...

 

Thanks for your help!!

I already found 2 workarounds for me:

1. install Freeling 4.1 instead of 4.2 on windows

2. i installed wsl for windows and installed the linux version of Freeling. Worked well for me, because i need Freeling for this git repo:

https://github.com/setzer22/alignment_model_text

I just encountered a new error https://github.com/setzer22/alignment_model_text/issues/1

Anyway, thank you for your help!

Hey, ok sorry that i#m not able to solve this on my own. I tried to run the java example Programm Analyzer.java as menttioned in the manual. But i have several problems:

my Folder /usr/local/share/freeling/APIs/java

contains the following files:

-Jfreeling.jar
-libJfreeling.so
-Sample.java instead of Analyzer.java -> any ideas?

Anyway, when i try to run the Sample.java program i get the following errors:

/usr/local/share/freeling/APIs/java$ javac Sample.java
Sample.java:7: error: package edu.upc.Jfreeling does not exist
import edu.upc.Jfreeling.*;
^
Sample.java:158: error: cannot find symbol
private static void printSenses( Word w ) {
^
symbol: class Word
location: class Sample
Sample.java:171: error: cannot find symbol
private static void printResults( ListSentence ls, String format ) {
^
symbol: class ListSentence
location: class Sample
Sample.java:216: error: cannot find symbol
private static void printParseTree( int depth, ParseTree tr ) {
^
symbol: class ParseTree
location: class Sample
Sample.java:265: error: cannot find symbol
private static void printDepTree( int depth, DepTree tr ) {
^
symbol: class DepTree
location: class Sample
Sample.java:36: error: cannot find symbol
Util.initLocale( "default" );
^
symbol: variable Util
location: class Sample
Sample.java:40: error: cannot find symbol
MacoOptions op = new MacoOptions( LANG );
^
symbol: class MacoOptions
location: class Sample
Sample.java:40: error: cannot find symbol
MacoOptions op = new MacoOptions( LANG );
^
symbol: class MacoOptions
location: class Sample
Sample.java:62: error: cannot find symbol
LangIdent lgid = new LangIdent(DATA + "/common/lang_ident/ident-few.dat");
^
symbol: class LangIdent
location: class Sample
Sample.java:62: error: cannot find symbol
LangIdent lgid = new LangIdent(DATA + "/common/lang_ident/ident-few.dat");
^
symbol: class LangIdent
location: class Sample
Sample.java:64: error: cannot find symbol
Tokenizer tk = new Tokenizer( DATA + LANG + "/tokenizer.dat" );
^
symbol: class Tokenizer
location: class Sample
Sample.java:64: error: cannot find symbol
Tokenizer tk = new Tokenizer( DATA + LANG + "/tokenizer.dat" );
^
symbol: class Tokenizer
location: class Sample
Sample.java:65: error: cannot find symbol
Splitter sp = new Splitter( DATA + LANG + "/splitter.dat" );
^
symbol: class Splitter
location: class Sample
Sample.java:65: error: cannot find symbol
Splitter sp = new Splitter( DATA + LANG + "/splitter.dat" );
^
symbol: class Splitter
location: class Sample
Sample.java:66: error: cannot find symbol
SWIGTYPE_p_splitter_status sid = sp.openSession();
^
symbol: class SWIGTYPE_p_splitter_status
location: class Sample
Sample.java:68: error: cannot find symbol
Maco mf = new Maco( op );
^
symbol: class Maco
location: class Sample
Sample.java:68: error: cannot find symbol
Maco mf = new Maco( op );
^
symbol: class Maco
location: class Sample
Sample.java:74: error: cannot find symbol
HmmTagger tg = new HmmTagger( DATA + LANG + "/tagger.dat", true, 2 );
^
symbol: class HmmTagger
location: class Sample
Sample.java:74: error: cannot find symbol
HmmTagger tg = new HmmTagger( DATA + LANG + "/tagger.dat", true, 2 );
^
symbol: class HmmTagger
location: class Sample
Sample.java:75: error: cannot find symbol
ChartParser parser = new ChartParser( DATA + LANG + "/chunker/grammar-chunk.dat" );
^
symbol: class ChartParser
location: class Sample
Sample.java:75: error: cannot find symbol
ChartParser parser = new ChartParser( DATA + LANG + "/chunker/grammar-chunk.dat" );
^
symbol: class ChartParser
location: class Sample
Sample.java:84: error: cannot find symbol
DepLstm dep = new DepLstm( DATA + LANG + "/dep_lstm/params-en.dat" );
^
symbol: class DepLstm
location: class Sample
Sample.java:84: error: cannot find symbol
DepLstm dep = new DepLstm( DATA + LANG + "/dep_lstm/params-en.dat" );
^
symbol: class DepLstm
location: class Sample
Sample.java:86: error: cannot find symbol
Nec neclass = new Nec( DATA + LANG + "/nerc/nec/nec-ab-poor1.dat" );
^
symbol: class Nec
location: class Sample
Sample.java:86: error: cannot find symbol
Nec neclass = new Nec( DATA + LANG + "/nerc/nec/nec-ab-poor1.dat" );
^
symbol: class Nec
location: class Sample
Sample.java:88: error: cannot find symbol
Senses sen = new Senses(DATA + LANG + "/senses.dat" ); // sense dictionary
^
symbol: class Senses
location: class Sample
Sample.java:88: error: cannot find symbol
Senses sen = new Senses(DATA + LANG + "/senses.dat" ); // sense dictionary
^
symbol: class Senses
location: class Sample
Sample.java:89: error: cannot find symbol
Ukb dis = new Ukb( DATA + LANG + "/ukb.dat" ); // sense disambiguator
^
symbol: class Ukb
location: class Sample
Sample.java:89: error: cannot find symbol
Ukb dis = new Ukb( DATA + LANG + "/ukb.dat" ); // sense disambiguator
^
symbol: class Ukb
location: class Sample
Sample.java:107: error: cannot find symbol
ListWord l = tk.tokenize( line );
^
symbol: class ListWord
location: class Sample
Sample.java:110: error: cannot find symbol
ListSentence ls = sp.split( sid, l, false );
^
symbol: class ListSentence
location: class Sample
Sample.java:138: error: cannot find symbol
ListSentence ls = sp.split( sid, tk.tokenize(""), true );
^
symbol: class ListSentence
location: class Sample
Sample.java:176: error: cannot find symbol
ListSentenceIterator sIt = new ListSentenceIterator(ls);
^
symbol: class ListSentenceIterator
location: class Sample
Sample.java:176: error: cannot find symbol
ListSentenceIterator sIt = new ListSentenceIterator(ls);
^
symbol: class ListSentenceIterator
location: class Sample
Sample.java:178: error: cannot find symbol
Sentence s = sIt.next();
^
symbol: class Sentence
location: class Sample
Sample.java:179: error: cannot find symbol
ParseTree tree = s.getParseTree();
^
symbol: class ParseTree
location: class Sample
Sample.java:186: error: cannot find symbol
ListSentenceIterator sIt = new ListSentenceIterator(ls);
^
symbol: class ListSentenceIterator
location: class Sample
Sample.java:186: error: cannot find symbol
ListSentenceIterator sIt = new ListSentenceIterator(ls);
^
symbol: class ListSentenceIterator
location: class Sample
Sample.java:188: error: cannot find symbol
Sentence s = sIt.next();
^
symbol: class Sentence
location: class Sample
Sample.java:189: error: cannot find symbol
DepTree tree = s.getDepTree();
^
symbol: class DepTree
location: class Sample
Sample.java:198: error: cannot find symbol
ListSentenceIterator sIt = new ListSentenceIterator(ls);
^
symbol: class ListSentenceIterator
location: class Sample
Sample.java:198: error: cannot find symbol
ListSentenceIterator sIt = new ListSentenceIterator(ls);
^
symbol: class ListSentenceIterator
location: class Sample
Sample.java:200: error: cannot find symbol
Sentence s = sIt.next();
^
symbol: class Sentence
location: class Sample
Sample.java:201: error: cannot find symbol
ListWordIterator wIt = new ListWordIterator(s);
^
symbol: class ListWordIterator
location: class Sample
Sample.java:201: error: cannot find symbol
ListWordIterator wIt = new ListWordIterator(s);
^
symbol: class ListWordIterator
location: class Sample
Sample.java:203: error: cannot find symbol
Word w = wIt.next();
^
symbol: class Word
location: class Sample
Sample.java:217: error: cannot find symbol
Word w;
^
symbol: class Word
location: class Sample
Sample.java:247: error: cannot find symbol
ParseTree child = tr.nthChildRef( i );
^
symbol: class ParseTree
location: class Sample
Sample.java:266: error: cannot find symbol
DepTree child = null;
^
symbol: class DepTree
location: class Sample
Sample.java:267: error: cannot find symbol
DepTree fchild = null;
^
symbol: class DepTree
location: class Sample
Sample.java:280: error: cannot find symbol
Word w = tr.begin().getWord();
^
symbol: class Word
location: class Sample
51 errors
/usr/local/share/freeling/APIs/java$ java Sample < myfile.txt
Error: Could not find or load main class Sample
Even when i run javac -classpath /usr/local/share/freeling/APIs/java Sample.java i get the error from above

The Main Programm analyze worked fine, so its just a thing with java…
Any ideas how to solve this?

Yes, Analyzer.java was renamed to Sample.java at some moment.

When java complains about not finding a class or package  it usually is because that class or package is not found in the CLASSPATH.  Add proper -cp to the javac command.

Sample.java is just a normal Java program.
Make sure you built Sample.class
Check your CLASSPATH.