Displaying 9 results from an estimated 9 matches for "int_lib".
2015 Dec 01
2
Compilation errors
...t-headers
[ 68%] Building C object
projects/compiler-rt/lib/builtins/CMakeFiles/clang_rt.builtins-x86_64.dir/x86_64/floatdidf.c.o
In file included from
/home/tthtlc/llvm/llvm/projects/compiler-rt/lib/builtins/x86_64/floatdidf.c:9:0:
/home/tthtlc/llvm/llvm/projects/compiler-rt/lib/builtins/x86_64/../int_lib.h:131:8:
error: C++ style comments are not allowed in ISO C90 [-Werror]
#endif // defined(_MSC_VER) && !defined(__clang__)
^
/home/tthtlc/llvm/llvm/projects/compiler-rt/lib/builtins/x86_64/../int_lib.h:131:8:
error: (this will be reported only once per input file) [-Werror]
cc1: al...
2013 Jul 22
4
[LLVMdev] Build Clang and LLVM on Win 8
...rrors stating that it is not
possible to find the stdbool.h file + a few others.
Example:
error C1083: Impossibile aprire il file inclusione 'stdbool.h': No such
file or directory (<my
path>\llvm\projects\compiler-rt\lib\floatuntisf.c) <my
path>\llvm\projects\compiler-rt\lib\int_lib.h 37 1 clang_rt.x86_64
error C2061: errore di sintassi: identificatore '__attribute__' (<my
path>\llvm\projects\compiler-rt\lib\int_util.c) <my
path>\llvm\projects\compiler-rt\lib\int_util.h 27 1 clang_rt.x86_64
error C2059: errore di sintassi: ';' (<my
path>\ll...
2013 Jul 23
0
[LLVMdev] Build Clang and LLVM on Win 8
...> possible to find the stdbool.h file + a few others.
> Example:
> error C1083: Impossibile aprire il file inclusione 'stdbool.h': No such
> file or directory (<my
> path>\llvm\projects\compiler-rt\lib\floatuntisf.c) <my
> path>\llvm\projects\compiler-rt\lib\int_lib.h 37 1 clang_rt.x86_64
> error C2061: errore di sintassi: identificatore '__attribute__' (<my
> path>\llvm\projects\compiler-rt\lib\int_util.c) <my
> path>\llvm\projects\compiler-rt\lib\int_util.h 27 1
> clang_rt.x86_64
> error C2059: errore di s...
2011 Jan 07
1
[LLVMdev] [PATCH] compiler-rt patch for clean build on Solaris 10 / x86
....so
[ 1%] Built target BlocksRuntime
Scanning dependencies of target CompilerRT-Generic
[ 2%] Building C object lib/CMakeFiles/CompilerRT-Generic.dir/absvdi2.c.o
In file included from /home/jocke/llvm/clean/compiler-rt/lib/absvdi2.c:15:
In file included from /home/jocke/llvm/clean/compiler-rt/lib/int_lib.h:23:
In file included from /home/jocke/llvm/clean/compiler-rt/lib/endianness.h:25:
/usr/include/sys/byteorder.h:60:9: error: unknown type name 'uint16_t'
typedef uint16_t in_port_t;
^
/usr/include/sys/byteorder.h:65:9: error: unknown type name 'uint32_t'
typedef uint32_t in...
2013 Jul 22
0
[LLVMdev] Build Clang and LLVM on Win 8
Reid Kleckner <rnk at google.com> writes:
> My initial impression was that still probably nobody uses python 3, so it's
> not worth adding support that will break. But if users actually have
> python 3, maybe it's worth it.
I think that on this case the problem was not people who actually have
python 3, but people who see Python as a requirement for building LLVM
and go
2015 Dec 01
2
Compilation errors
...gt;> projects/compiler-rt/lib/builtins/CMakeFiles/clang_rt.builtins-x86_64.dir/x86_64/floatdidf.c.o
>> In file included from
>> /home/tthtlc/llvm/llvm/projects/compiler-rt/lib/builtins/x86_64/floatdidf.c:9:0:
>> /home/tthtlc/llvm/llvm/projects/compiler-rt/lib/builtins/x86_64/../int_lib.h:131:8:
>> error: C++ style comments are not allowed in ISO C90 [-Werror]
>> #endif // defined(_MSC_VER) && !defined(__clang__)
>> ^
>> /home/tthtlc/llvm/llvm/projects/compiler-rt/lib/builtins/x86_64/../int_lib.h:131:8:
>> error: (this will be reporte...
2013 Jul 23
0
[LLVMdev] Build Clang and LLVM on Win 8
...; possible to find the stdbool.h file + a few others.
> Example:
> error C1083: Impossibile aprire il file inclusione 'stdbool.h': No
> such file or directory (<my
> path>\llvm\projects\compiler-rt\lib\floatuntisf.c) <my
> path>\llvm\projects\compiler-rt\lib\int_lib.h 37 1 clang_rt.x86_64
> error C2061: errore di sintassi: identificatore '__attribute__' (<my
> path>\llvm\projects\compiler-rt\lib\int_util.c) <my
> path>\llvm\projects\compiler-rt\lib\int_util.h 27 1 clang_rt.x86_64
> error C2059: errore di sintassi:...
2013 Jul 22
3
[LLVMdev] Build Clang and LLVM on Win 8
On Sun, Jul 21, 2013 at 5:51 PM, Óscar Fuentes <ofv at wanadoo.es> wrote:
> Giorgio Franceschetti <g.franceschetti at vidya.it> writes:
>
> > When I run cmake I got The following error:
> > *<project folder>\build>CMake -G "CodeBlocks - MinGW Makefiles" ..\llvm*
> > /-- Could NOT find LibXml2 (missing: LIBXML2_LIBRARIES
> >
2013 Jun 25
0
[LLVMdev] [PATCH] Windows implementation of enable_execute_stack
...e_execute_stack.c
>> > ===================================================================
>> > --- lib/enable_execute_stack.c (revision 182667)
>> > +++ lib/enable_execute_stack.c (working copy)
>> > @@ -10,7 +10,11 @@
>> >
>> > #include "int_lib.h"
>> >
>> > +#ifndef _WIN32
>> > #include <sys/mman.h>
>> > +#else
>> > +#include <windows.h>
>> > +#endif
>> >
>> > /* #include "config.h"
>> > * FIXME: CMake - include when cmake syste...