File: README.md

package info (click to toggle)
simdutf 8.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,524 kB
  • sloc: cpp: 64,498; ansic: 15,347; python: 3,592; sh: 366; makefile: 12
file content (19 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19


While in the singleheader directory under a linux or macOS system with an install toolchain, try:

```
c++ -o amalgamation_demo amalgamation_demo.cpp -std=c++17 && ./amalgamation_demo
```


### C Demo

You may also build a C executable.

```
c++ -c simdutf.cpp 
cc -c ./amalgamation_demo.c
c++ amalgamation_demo.o simdutf.o -o cdemo
./cdemo
```