mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-18 21:40:29 +00:00
10 lines
260 B
C
10 lines
260 B
C
#include <ghostty/vt.h>
|
|
#include <stdio.h>
|
|
int main(void) {
|
|
bool simd = false;
|
|
GhosttyResult r = ghostty_build_info(GHOSTTY_BUILD_INFO_SIMD, &simd);
|
|
if (r != GHOSTTY_SUCCESS) return 1;
|
|
printf("SIMD: %s\n", simd ? "yes" : "no");
|
|
return 0;
|
|
}
|