mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 08:46:49 +08:00
8 lines
213 B
Bash
8 lines
213 B
Bash
#!/bin/bash
|
|
|
|
$CXX $CFLAGS $CXXFLAGS \
|
|
-I $SRC/fast_float/include \
|
|
-c $SRC/fast_float/fuzz/from_chars.cc -o from_chars.o
|
|
|
|
$CXX $CFLAGS $CXXFLAGS $LIB_FUZZING_ENGINE from_chars.o \
|
|
-o $OUT/from_chars |