Revision b0612796b1fde0532c06744f23f8ee59eee156c2 authored by Ben Boeckel on 28 September 2023, 16:01:53 UTC, committed by Ben Boeckel on 01 October 2023, 10:52:44 UTC
This provides a utility macro which prints out:

- location of the call;
- the expression being evaluated; and
- the value of the expression.

Evaluates to the value of the expression.

Inspired by Rust's `dbg!` macro.

See: https://doc.rust-lang.org/stable/std/macro.dbg.html
1 parent 92adbb5
Raw File
configure
#!/bin/sh
cmake_source_dir=`cd "\`dirname \"$0\"\`";pwd`
exec "${cmake_source_dir}/bootstrap" "$@"
back to top