-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (52 loc) · 2.32 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
run:
$(info [INFO]: Ejecutando ejemplo)
RUST_LOG=info cargo run tests/data/ > salida.json
RUST_LOG=info cargo run tests/casoA/ > salida_a.json
runskip:
cargo run -- --skip-extra tests/data/ > salida.json.skip
cargo run -- --skip-extra tests/casoA/ > salida_a.json.skip
compare: run runskip
(meld salida.json salida.json.skip&) && (meld -n salida_a.json salida_a.json.skip&)
linux:
$(info [INFO]: Versión de producción para linux)
cargo build --release
win32:
$(info [INFO]: Versión de producción para i686-pc-windows-gnu)
cargo build --release --target=i686-pc-windows-gnu
release: linux win32
$(info [INFO]: Compilando versión de producción)
mkdir -p dist
cp target/i686-pc-windows-gnu/release/hulc2envolventecte.exe dist/
cp target/release/hulc2envolventecte dist/
strip dist/hulc2envolventecte.exe
strip dist/hulc2envolventecte
bloat:
$(info [INFO]: Calculando consumo de espacio en archivo ejecutable)
cargo bloat --release -n 10
cargo bloat --release --crates -n 10
# cargo bloat --release --crates --split-std -n 10
bench:
cargo bench
perf:
# Ver https://profiler.firefox.com/docs/#/./guide-perf-profiling
$(info [INFO]: Obteniendo datos de perfilado en el archivo perf.data)
# -g -> call graph recording, -F number -> frecuencia de registro
$(info [INFO]: Puede parar la toma de datos cuando quiera con Ctrl+C)
perf record -g -F 999 target/release/hulc2envolventecte tests/data > /dev/null
$(info [INFO]: Convirtiendo datos de perfilado a Firefox Profiler y guardando en /tmp/test.perf)
perf script -F +pid > /tmp/test.perf
$(info [INFO]: Puede abrir los datos en http://profiler.firefox.com)
# Visualización alterantiva
# perf report -f --sort comm,dso
count:
$(info [INFO]: Calculando tamaño del código)
cargo count -a src/
outdated:
$(info [INFO]: Dependencias obsoletas)
cargo outdated -R
fixcross:
$(info [INFO]: Reparando compilación cruzada desde linux a i686-pc-windows-gnu)
sudo aptitude install -y mingw-w64 mingw-w64-tools
cp /usr/i686-w64-mingw32/lib/crt2.o ~/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/i686-pc-windows-gnu/lib/
cp /usr/i686-w64-mingw32/lib/dllcrt2.o ~/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/i686-pc-windows-gnu/lib/
cp /usr/i686-w64-mingw32/lib/libmsvcrt.a ~/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/i686-pc-windows-gnu/lib/