Convert some lines from ISO-8859-1 to UTF-8.

perl -i -pe 'use Text::Iconv;
$c1 = Text::Iconv->new("utf-8", "utf-8");
$c2 = Text::Iconv->new("iso-8859-1", "utf-8");
if (!$c1->convert($_)) { $_ = $c2->convert($_); }' \
`find * -type f`
master
Edmund Grimley Evans 2015-03-08 22:07:50 +00:00
parent 5de8b5638f
commit aa812e8745
4 changed files with 10 additions and 10 deletions

View File

@ -41,7 +41,7 @@ Platforms:
- define __ARM_EABI__, __ARMEL__ and __ARM_PCS_VFP (Thomas Preud'homme) - define __ARM_EABI__, __ARMEL__ and __ARM_PCS_VFP (Thomas Preud'homme)
- provide a runtime library for ARM (Thomas Preud'homme) - provide a runtime library for ARM (Thomas Preud'homme)
- vastly improved support for ARM hard float calling convention - vastly improved support for ARM hard float calling convention
(Thomas Preud'homme, Daniel Glöckner) (Thomas Preud'homme, Daniel Glöckner)
- tcc can uses libtcc1 on ARM (Thomas Preud'homme) - tcc can uses libtcc1 on ARM (Thomas Preud'homme)
- use __fixdfdi for all float to integer conversion (grischka) - use __fixdfdi for all float to integer conversion (grischka)
- simplify startup code for unix platforms (grischka) - simplify startup code for unix platforms (grischka)
@ -119,7 +119,7 @@ Bug fixes:
- fix memory leak due to symbol attributes (mingodad) - fix memory leak due to symbol attributes (mingodad)
- partially fix bound checking of argv and arge (Thomas Preud'homme) - partially fix bound checking of argv and arge (Thomas Preud'homme)
- fix possible dereference when getting name of symbol (grischka) - fix possible dereference when getting name of symbol (grischka)
- fix va_list type definition on x86-64 (Daniel Glöckner) - fix va_list type definition on x86-64 (Daniel Glöckner)
- reduce number of scan-build false positive (mingodad) - reduce number of scan-build false positive (mingodad)
version 0.9.26: version 0.9.26:
@ -134,7 +134,7 @@ User interface:
Platforms: Platforms:
- Many improvements for x86-64 target (Shinichiro Hamaji, Michael Matz, grischka) - Many improvements for x86-64 target (Shinichiro Hamaji, Michael Matz, grischka)
- x86-64 assembler (Frederic Feret) - x86-64 assembler (Frederic Feret)
- Many improvements for ARM target (Daniel Glöckner, Thomas Preud'homme) - Many improvements for ARM target (Daniel Glöckner, Thomas Preud'homme)
- Support WinCE PE ARM (Timo VJ Lahde) - Support WinCE PE ARM (Timo VJ Lahde)
- Support ARM hardfloat calling convention (Thomas Preud'homme) - Support ARM hardfloat calling convention (Thomas Preud'homme)
- Support SELinux (Security-Enhanced Linux) (Henry Kroll III) - Support SELinux (Security-Enhanced Linux) (Henry Kroll III)
@ -153,7 +153,7 @@ Features:
version 0.9.25: version 0.9.25:
- first support for x86-64 target (Shinichiro Hamaji) - first support for x86-64 target (Shinichiro Hamaji)
- support µClibc - support µClibc
- split tcc.c into tcc.h libtcc.c tccpp.c tccgen.c tcc.c - split tcc.c into tcc.h libtcc.c tccpp.c tccgen.c tcc.c
- improved preprocess output with linenumbers and spaces preserved - improved preprocess output with linenumbers and spaces preserved
- tcc_relocate now copies code into user buffer - tcc_relocate now copies code into user buffer

View File

@ -27,15 +27,15 @@
Author (name) I agree (YES/NO) Files/Features (optional) Author (name) I agree (YES/NO) Files/Features (optional)
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
Daniel Glöckner NO arm-gen.c Daniel Glöckner NO arm-gen.c
Daniel Glöckner YES not arm-gen.c Daniel Glöckner YES not arm-gen.c
Edmund Grimley Evans YES arm64 Edmund Grimley Evans YES arm64
Fabrice Bellard YES original author Fabrice Bellard YES original author
Frédéric Féret YES x86 64/16 bit asm Frédéric Féret YES x86 64/16 bit asm
grischka YES tccpe.c grischka YES tccpe.c
Shinichiro Hamaji YES x86_64-gen.c Shinichiro Hamaji YES x86_64-gen.c
Thomas Preud'homme YES arm-gen.c Thomas Preud'homme YES arm-gen.c
Timo VJ Lähde (Timppa) ? tiny_libmaker.c Timo VJ Lähde (Timppa) ? tiny_libmaker.c
TK ? tcccoff.c c67-gen.c TK ? tcccoff.c c67-gen.c

View File

@ -1,7 +1,7 @@
/* /*
* ARMv4 code generator for TCC * ARMv4 code generator for TCC
* *
* Copyright (c) 2003 Daniel Glöckner * Copyright (c) 2003 Daniel Glöckner
* Copyright (c) 2012 Thomas Preud'homme * Copyright (c) 2012 Thomas Preud'homme
* *
* Based on i386-gen.c by Fabrice Bellard * Based on i386-gen.c by Fabrice Bellard

View File

@ -2,7 +2,7 @@
* i386 specific functions for TCC assembler * i386 specific functions for TCC assembler
* *
* Copyright (c) 2001, 2002 Fabrice Bellard * Copyright (c) 2001, 2002 Fabrice Bellard
* Copyright (c) 2009 Frédéric Feret (x86_64 support) * Copyright (c) 2009 Frédéric Feret (x86_64 support)
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public