Changeset a5e5030 in mainline


Ignore:
Timestamp:
2009-03-22T22:13:33Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
05641a9e
Parents:
8263c68
Message:

unicode preparation work

Location:
kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile

    r8263c68 ra5e5030  
    4848
    4949GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \
     50        -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32 -finput-charset=UTF-8 \
    5051        -fno-builtin -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -Werror \
    5152        -nostdlib -nostdinc -pipe
  • kernel/test/print/print4.c

    r8263c68 ra5e5030  
    7171                printf("Greek:   %s\n", "Ὦ ξεῖν’, ἀγγέλλειν Λακεδαιμονίοις ὅτι τῇδε");
    7272                printf("Hebrew:  %s\n", "משוואת ברנולי היא משוואה בהידרודינמיקה");
     73               
     74                printf("\nUTF-32 strings using printf(\"%%ls\"):\n");
     75                printf("English: %ls\n", L"Quick brown fox jumps over the lazy dog");
     76                printf("Czech:   %ls\n", L"Příliš žluťoučký kůň úpěl dábelské ódy");
     77                printf("Greek:   %ls\n", L"Ὦ ξεῖν’, ἀγγέλλειν Λακεδαιμονίοις ὅτι τῇδε");
     78                printf("Hebrew:  %ls\n", L"משוואת ברנולי היא משוואה בהידרודינמיקה");
    7379        }
    7480       
Note: See TracChangeset for help on using the changeset viewer.