Skip to content

Instantly share code, notes, and snippets.

@bsmt
Created October 3, 2014 09:44
Show Gist options
  • Save bsmt/b63d8c5836bf59f63745 to your computer and use it in GitHub Desktop.
Save bsmt/b63d8c5836bf59f63745 to your computer and use it in GitHub Desktop.
Probably the easiest but worst way to detect lldb.
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
char *underscore = getenv("_");
if (!strcmp(underscore, "/usr/bin/lldb"))
{
printf("lldb detected.\n");
}
else
{
printf("all good.\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment