summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/int_util.c
Commit message (Collapse)AuthorAgeFilesLines
* Move original compiler-rt functions (libgcc replacement) to lib/builtins ↵Alexey Samsonov2014-02-141-61/+0
| | | | | | directory llvm-svn: 201393
* Add clang_darwin_embedded platform for embedded projectsTim Northover2013-11-151-2/+1
| | | | | | | | | | | | | | This should build a separate set of embedded runtime libraries, supporting the option product: {PIC, static} x { Hard-float, soft-float } The emphasis is on ARM platforms (Cortex-M4F, Cortex-M3, Cortex-M0) but X86 variants are also built where possible. rdar://problem/10817205 llvm-svn: 194873
* Give compiler-rt a chance to compile with mingw-w64.Anton Korobeynikov2013-07-161-0/+6
| | | | | | Patch by C. Bergström! llvm-svn: 186463
* On Apple platforms, wire up compilerrt_abort() to log file and function infoNick Kledzik2012-02-031-0/+13
| | | | llvm-svn: 149723
* lib/int_util: My refactoring to allow shared utility code had a fatal flaw whenDaniel Dunbar2011-11-291-0/+11
| | | | | | | | | multiple .a files would end up with duplicate strong definitions. This could cause link failures in certain scenarios when both definitions got loaded. - The best solution I see for this (aside from not factoring out the utility code) is to mark the definitions weak. Better solutions appreciated! llvm-svn: 145427
* lib: Add support for library wide utility functions, and make compilerrt_abort()Daniel Dunbar2011-11-161-0/+32
a real boy. - The utility module needs to be included into every produced library, because we don't have enough dependency tracking to know exactly which other modules might require the utilities. llvm-svn: 144751
OpenPOWER on IntegriCloud