mirror of
https://gitee.com/openharmony/third_party_rust_regex
synced 2025-04-06 04:01:54 +00:00

There are a few sub-crates in this repository, so sharing a target directory makes sense.
10 lines
349 B
Bash
Executable File
10 lines
349 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
# N.B. Add `--release` flag to `cargo build` to make the example run faster.
|
|
cargo build --manifest-path ../Cargo.toml
|
|
gcc -O3 -DDEBUG -o iter iter.c -ansi -Wall -I../include -L../../target/debug -lrure
|
|
# If you're using librure.a, then you'll need to link other stuff:
|
|
# -lutil -ldl -lpthread -lgcc_s -lc -lm -lrt -lutil -lrure
|