mirror of
https://github.com/lifting-bits/mcsema
synced 2026-06-08 15:31:09 +00:00
0c8e47657d
Updating integration tests. Slowly addressing #94 . * Added a simple string pool example and /bin/ls * Tests all the way up to recompilation of translated bitcode * Added travis caching to avoid rebuilds of LLVM. Builds now take ~half the time. * bootstrap now installs gcc-multilib to do 32-bit integration tests
7 lines
108 B
C
7 lines
108 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
printf("Hello, World!\n");
|
|
return 0;
|
|
}
|