123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- // gcc -lutil build.c -o hacer && ./hacer
- // link with -lutil
- //char* build_dir;
- //char* source_dir = "__SED_TOKEN_SOURCE_PATH"; // "src"
- //char* exe_path = "__SED_TOKEN_EXE_PATH__SED_TOKEN_EXE_NAME";
- //char* base_build_dir = "__SED_TOKEN_BUILD_PATH";
- #include "_build.inc.c"
- char* sources[] = {
- "__SED_TOKEN_CODE_NAME",
- NULL,
- };
- // these are run through pkg-config
- char* lib_headers_needed[] = {
- // freetype and fontconfig are dynamically loaded only when needed
- // "freetype2", "fontconfig",
-
- // "gl", "glu", "glew",
- // "libpcre2-8",
- // "libpng",
- // "x11", "xfixes",
- NULL
- };
- // these are run through pkg-config
- char* libs_needed[] = {
- // "gl", "glu", "glew",
- // "libpcre2-8",
- // "libpng",
- // "x11", "xfixes",
- NULL,
- };
- char* ld_add[] = {
- "-lm",
- // "-ldl", "-lutil",
- NULL,
- };
- char* debug_cflags[] = {
- "-ggdb",
- "-DDEBUG",
- "-O0",
- NULL
- };
- char* profiling_cflags[] = {
- "-pg",
- NULL
- };
- char* release_cflags[] = {
- "-DRELEASE",
- "-O3",
- // "-Wno-array-bounds", // temporary, until some shit in sti gets fixed. only happens with -O3
- NULL
- };
- // -ffast-math but without reciprocal approximations
- char* common_cflags[] = {
- "-std=gnu11",
- "-ffunction-sections", "-fdata-sections",
- "-DLINUX",
- "-march=native",
- "-mtune=native",
- "-fno-math-errno",
- "-fexcess-precision=fast",
- "-fno-signed-zeros",
- "-fno-trapping-math",
- "-fassociative-math",
- "-ffinite-math-only",
- "-fno-rounding-math",
- "-fno-signaling-nans",
- // "-include signal.h",
- "-pthread",
- "-Wall",
- "-Werror",
- "-Wextra",
- "-Wno-unused-result",
- "-Wno-unused-variable",
- "-Wno-unused-but-set-variable",
- "-Wno-unused-function",
- "-Wno-unused-label",
- "-Wno-unused-parameter",
- "-Wno-pointer-sign",
- "-Wno-missing-braces",
- "-Wno-maybe-uninitialized",
- "-Wno-implicit-fallthrough",
- "-Wno-sign-compare",
- "-Wno-char-subscripts",
- "-Wno-int-conversion",
- "-Wno-int-to-pointer-cast",
- "-Wno-unknown-pragmas",
- "-Wno-sequence-point",
- "-Wno-switch",
- "-Wno-parentheses",
- "-Wno-comment",
- "-Wno-strict-aliasing",
- "-Wno-endif-labels",
- "-Werror=implicit-function-declaration",
- "-Werror=uninitialized",
- "-Werror=return-type",
- NULL,
- };
- void global_init() {
- string_cache_init(2048);
- realname_cache_init();
- //strlist_init(&compile_cache);
- hash_init(&mkdir_cache, 128);
- g_nprocs = get_nprocs();
- }
- int main(int argc, char* argv[]) {
- char* cmd;
- global_init();
-
- // defaults
-
- objfile* obj = calloc(1, sizeof(*obj));
-
- obj->mode_debug = 2;
-
- obj->exe_path = "__SED_TOKEN_EXE_PATH__SED_TOKEN_EXE_NAME";
- obj->source_dir = "__SED_TOKEN_SOURCE_PATH";
- obj->base_build_dir = "__SED_TOKEN_BUILD_PATH";
-
- obj->sources = sources;
-
- obj->debug_cflags = debug_cflags;
- obj->release_cflags = release_cflags;
- obj->profiling_cflags = profiling_cflags;
- obj->common_cflags = common_cflags;
-
- obj->libs_needed = libs_needed;
- obj->lib_headers_needed = lib_headers_needed;
- obj->ld_add = ld_add;
- parse_cli_opts(argc, argv, obj);
-
- start_obj(obj);
-
- //---------------------------
- //
- // [ custom init code here]
- //
- //---------------------------
-
- //printf("%s\n\n\n\n",g_gcc_opts_flat);
- // rglob src;
- //recursive_glob("src", "*.[ch]", 0, &src);
-
- strlist objs;
- strlist_init(&objs);
-
- float source_count = list_len(obj->sources);
-
- for(int i = 0; obj->sources[i]; i++) {
- // printf("%i: checking %s\n", i, sources[i]);
- char* t = path_join(obj->source_dir, obj->sources[i]);
- check_source(t, &objs, obj);
- free(t);
-
- printf("\rChecking dependencies... %s", printpct((i * 100) / source_count));
- }
- printf("\rChecking dependencies... \e[32mDONE\e[0m\n");
- fflush(stdout);
-
-
-
- if(compile_cache_execute(obj)) {
- printf("\e[1;31mBuild failed.\e[0m\n");
- return 1;
- }
-
- char* objects_flat = join_str_list(objs.entries, " ");
-
-
- cmd = sprintfdup("ar rcs %s/tmp.a %s", obj->build_dir, objects_flat);
- if(obj->verbose) puts(cmd);
-
- printf("Creating archive... "); fflush(stdout);
- if(system(cmd)) {
- printf(" \e[1;31mFAIL\e[0m\n");
- return 1;
- }
- else {
- printf(" \e[32mDONE\e[0m\n");
- }
-
-
- cmd = sprintfdup("gcc -Wl,--gc-sections %s %s/tmp.a -o %s %s %s",
- obj->mode_profiling ? "-pg" : "", obj->build_dir, obj->exe_path, obj->gcc_libs, obj->gcc_opts_flat
- );
- if(obj->verbose) puts(cmd);
-
- printf("Linking executable... "); fflush(stdout);
- if(system(cmd)) {
- printf(" \e[1;31mFAIL\e[0m\n");
- return 1;
- }
- else {
- printf(" \e[32mDONE\e[0m\n");
- }
-
- if(!obj->verbose) {
- // erase the build output if it succeeded
- printf("\e[F\e[K");
- printf("\e[F\e[K");
- printf("\e[F\e[K");
- printf("\e[F\e[K");
- }
-
- printf("\e[32mBuild successful:\e[0m %s\n\n", obj->exe_path);
-
- return 0;
- }
|