1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561 |
- #if defined(GB_SYSTEM_FREEBSD) || defined(GB_SYSTEM_OPENBSD)
- #include <sys/types.h>
- #include <sys/sysctl.h>
- #endif
- // #if defined(GB_SYSTEM_WINDOWS)
- // #define DEFAULT_TO_THREADED_CHECKER
- // #endif
- enum TargetOsKind : u16 {
- TargetOs_Invalid,
- TargetOs_windows,
- TargetOs_darwin,
- TargetOs_linux,
- TargetOs_essence,
- TargetOs_freebsd,
- TargetOs_openbsd,
-
- TargetOs_wasi,
- TargetOs_js,
- TargetOs_freestanding,
- TargetOs_COUNT,
- };
- enum TargetArchKind : u16 {
- TargetArch_Invalid,
- TargetArch_amd64,
- TargetArch_i386,
- TargetArch_arm32,
- TargetArch_arm64,
- TargetArch_wasm32,
- TargetArch_wasm64,
- TargetArch_COUNT,
- };
- enum TargetEndianKind : u8 {
- TargetEndian_Invalid,
- TargetEndian_Little,
- TargetEndian_Big,
- TargetEndian_COUNT,
- };
- enum TargetABIKind : u16 {
- TargetABI_Default,
- TargetABI_Win64,
- TargetABI_SysV,
- TargetABI_COUNT,
- };
- String target_os_names[TargetOs_COUNT] = {
- str_lit(""),
- str_lit("windows"),
- str_lit("darwin"),
- str_lit("linux"),
- str_lit("essence"),
- str_lit("freebsd"),
- str_lit("openbsd"),
-
- str_lit("wasi"),
- str_lit("js"),
- str_lit("freestanding"),
- };
- String target_arch_names[TargetArch_COUNT] = {
- str_lit(""),
- str_lit("amd64"),
- str_lit("i386"),
- str_lit("arm32"),
- str_lit("arm64"),
- str_lit("wasm32"),
- str_lit("wasm64"),
- };
- String target_endian_names[TargetEndian_COUNT] = {
- str_lit(""),
- str_lit("little"),
- str_lit("big"),
- };
- String target_abi_names[TargetABI_COUNT] = {
- str_lit(""),
- str_lit("win64"),
- str_lit("sysv"),
- };
- TargetEndianKind target_endians[TargetArch_COUNT] = {
- TargetEndian_Invalid,
- TargetEndian_Little,
- TargetEndian_Little,
- TargetEndian_Little,
- TargetEndian_Little,
- TargetEndian_Little,
- };
- #ifndef ODIN_VERSION_RAW
- #define ODIN_VERSION_RAW "dev-unknown-unknown"
- #endif
- String const ODIN_VERSION = str_lit(ODIN_VERSION_RAW);
- struct TargetMetrics {
- TargetOsKind os;
- TargetArchKind arch;
- isize word_size;
- isize max_align;
- isize max_simd_align;
- String target_triplet;
- String target_data_layout;
- TargetABIKind abi;
- };
- enum QueryDataSetKind {
- QueryDataSet_Invalid,
- QueryDataSet_GlobalDefinitions,
- QueryDataSet_GoToDefinitions,
- };
- struct QueryDataSetSettings {
- QueryDataSetKind kind;
- bool ok;
- bool compact;
- };
- enum BuildModeKind {
- BuildMode_Executable,
- BuildMode_DynamicLibrary,
- BuildMode_Object,
- BuildMode_Assembly,
- BuildMode_LLVM_IR,
- BuildMode_COUNT,
- };
- enum CommandKind : u32 {
- Command_run = 1<<0,
- Command_build = 1<<1,
- Command_check = 1<<3,
- Command_query = 1<<4,
- Command_doc = 1<<5,
- Command_version = 1<<6,
- Command_test = 1<<7,
-
- Command_strip_semicolon = 1<<8,
- Command_bug_report = 1<<9,
- Command__does_check = Command_run|Command_build|Command_check|Command_query|Command_doc|Command_test|Command_strip_semicolon,
- Command__does_build = Command_run|Command_build|Command_test,
- Command_all = ~(u32)0,
- };
- char const *odin_command_strings[32] = {
- "run",
- "build",
- "check",
- "query",
- "doc",
- "version",
- "test",
- "strip-semicolon",
- };
- enum CmdDocFlag : u32 {
- CmdDocFlag_Short = 1<<0,
- CmdDocFlag_AllPackages = 1<<1,
- CmdDocFlag_DocFormat = 1<<2,
- };
- enum TimingsExportFormat : i32 {
- TimingsExportUnspecified = 0,
- TimingsExportJson = 1,
- TimingsExportCSV = 2,
- };
- enum ErrorPosStyle {
- ErrorPosStyle_Default, // path(line:column) msg
- ErrorPosStyle_Unix, // path:line:column: msg
- ErrorPosStyle_COUNT
- };
- enum RelocMode : u8 {
- RelocMode_Default,
- RelocMode_Static,
- RelocMode_PIC,
- RelocMode_DynamicNoPIC,
- };
- enum BuildPath : u8 {
- BuildPath_Main_Package, // Input Path to the package directory (or file) we're building.
- BuildPath_RC, // Input Path for .rc file, can be set with `-resource:`.
- BuildPath_RES, // Output Path for .res file, generated from previous.
- BuildPath_Win_SDK_Bin_Path, // windows_sdk_bin_path
- BuildPath_Win_SDK_UM_Lib, // windows_sdk_um_library_path
- BuildPath_Win_SDK_UCRT_Lib, // windows_sdk_ucrt_library_path
- BuildPath_VS_EXE, // vs_exe_path
- BuildPath_VS_LIB, // vs_library_path
- BuildPath_Output, // Output Path for .exe, .dll, .so, etc. Can be overridden with `-out:`.
- BuildPath_PDB, // Output Path for .pdb file, can be overridden with `-pdb-name:`.
- BuildPathCOUNT,
- };
- // This stores the information for the specify architecture of this build
- struct BuildContext {
- // Constants
- String ODIN_OS; // target operating system
- String ODIN_ARCH; // target architecture
- String ODIN_VENDOR; // compiler vendor
- String ODIN_VERSION; // compiler version
- String ODIN_ROOT; // Odin ROOT
- String ODIN_BUILD_PROJECT_NAME; // Odin main/initial package's directory name
- bool ODIN_DEBUG; // Odin in debug mode
- bool ODIN_DISABLE_ASSERT; // Whether the default 'assert' et al is disabled in code or not
- bool ODIN_DEFAULT_TO_NIL_ALLOCATOR; // Whether the default allocator is a "nil" allocator or not (i.e. it does nothing)
- bool ODIN_FOREIGN_ERROR_PROCEDURES;
- bool ODIN_VALGRIND_SUPPORT;
- ErrorPosStyle ODIN_ERROR_POS_STYLE;
- TargetEndianKind endian_kind;
- // In bytes
- i64 word_size; // Size of a pointer, must be >= 4
- i64 max_align; // max alignment, must be >= 1 (and typically >= word_size)
- i64 max_simd_align; // max alignment, must be >= 1 (and typically >= word_size)
- CommandKind command_kind;
- String command;
- TargetMetrics metrics;
- bool show_help;
- Array<Path> build_paths; // Contains `Path` objects to output filename, pdb, resource and intermediate files.
- // BuildPath enum contains the indices of paths we know *before* the work starts.
- String out_filepath;
- String resource_filepath;
- String pdb_filepath;
- bool has_resource;
- String link_flags;
- String extra_linker_flags;
- String extra_assembler_flags;
- String microarch;
- BuildModeKind build_mode;
- bool generate_docs;
- i32 optimization_level;
- bool show_timings;
- TimingsExportFormat export_timings_format;
- String export_timings_file;
- bool show_unused;
- bool show_unused_with_location;
- bool show_more_timings;
- bool show_system_calls;
- bool keep_temp_files;
- bool ignore_unknown_attributes;
- bool no_bounds_check;
- bool no_dynamic_literals;
- bool no_output_files;
- bool no_crt;
- bool no_entry_point;
- bool use_lld;
- bool vet;
- bool vet_extra;
- bool cross_compiling;
- bool different_os;
- bool keep_object_files;
- bool disallow_do;
- bool strict_style;
- bool strict_style_init_only;
- bool ignore_warnings;
- bool warnings_as_errors;
- bool show_error_line;
- bool ignore_lazy;
- bool use_subsystem_windows;
- bool ignore_microsoft_magic;
- bool linker_map_file;
- bool use_separate_modules;
- bool threaded_checker;
- bool show_debug_messages;
-
- bool copy_file_contents;
- bool disallow_rtti;
- RelocMode reloc_mode;
- bool disable_red_zone;
- u32 cmd_doc_flags;
- Array<String> extra_packages;
- QueryDataSetSettings query_data_set_settings;
- StringSet test_names;
- gbAffinity affinity;
- isize thread_count;
- PtrMap<char const *, ExactValue> defined_values;
- BlockingMutex target_features_mutex;
- StringSet target_features_set;
- String target_features_string;
- String minimum_os_version_string;
- };
- gb_global BuildContext build_context = {0};
- bool global_warnings_as_errors(void) {
- return build_context.warnings_as_errors;
- }
- bool global_ignore_warnings(void) {
- return build_context.ignore_warnings;
- }
- gb_global TargetMetrics target_windows_i386 = {
- TargetOs_windows,
- TargetArch_i386,
- 4, 4, 8,
- str_lit("i386-pc-windows-msvc"),
- };
- gb_global TargetMetrics target_windows_amd64 = {
- TargetOs_windows,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-pc-windows-msvc"),
- str_lit("e-m:w-i64:64-f80:128-n8:16:32:64-S128"),
- };
- gb_global TargetMetrics target_linux_i386 = {
- TargetOs_linux,
- TargetArch_i386,
- 4, 4, 8,
- str_lit("i386-pc-linux-gnu"),
- };
- gb_global TargetMetrics target_linux_amd64 = {
- TargetOs_linux,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-pc-linux-gnu"),
- str_lit("e-m:w-i64:64-f80:128-n8:16:32:64-S128"),
- };
- gb_global TargetMetrics target_linux_arm64 = {
- TargetOs_linux,
- TargetArch_arm64,
- 8, 8, 16,
- str_lit("aarch64-linux-elf"),
- str_lit("e-m:o-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64"),
- };
- gb_global TargetMetrics target_linux_arm32 = {
- TargetOs_linux,
- TargetArch_arm32,
- 4, 4, 8,
- str_lit("arm-linux-gnu"),
- str_lit("e-m:o-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64"),
- };
- gb_global TargetMetrics target_darwin_amd64 = {
- TargetOs_darwin,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-apple-darwin"),
- str_lit("e-m:o-i64:64-f80:128-n8:16:32:64-S128"),
- };
- gb_global TargetMetrics target_darwin_arm64 = {
- TargetOs_darwin,
- TargetArch_arm64,
- 8, 8, 16,
- str_lit("arm64-apple-macosx11.0.0"),
- str_lit("e-m:o-i64:64-i128:128-n32:64-S128"), // TODO(bill): Is this correct?
- };
- gb_global TargetMetrics target_freebsd_i386 = {
- TargetOs_freebsd,
- TargetArch_i386,
- 4, 4, 8,
- str_lit("i386-unknown-freebsd-elf"),
- };
- gb_global TargetMetrics target_freebsd_amd64 = {
- TargetOs_freebsd,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-unknown-freebsd-elf"),
- str_lit("e-m:w-i64:64-f80:128-n8:16:32:64-S128"),
- };
- gb_global TargetMetrics target_openbsd_amd64 = {
- TargetOs_openbsd,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-unknown-openbsd-elf"),
- str_lit("e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"),
- };
- gb_global TargetMetrics target_essence_amd64 = {
- TargetOs_essence,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-pc-none-elf"),
- };
- gb_global TargetMetrics target_freestanding_wasm32 = {
- TargetOs_freestanding,
- TargetArch_wasm32,
- 4, 8, 16,
- str_lit("wasm32-freestanding-js"),
- str_lit("e-m:e-p:32:32-i64:64-n32:64-S128"),
- };
- gb_global TargetMetrics target_js_wasm32 = {
- TargetOs_js,
- TargetArch_wasm32,
- 4, 8, 16,
- str_lit("wasm32-js-js"),
- str_lit("e-m:e-p:32:32-i64:64-n32:64-S128"),
- };
- gb_global TargetMetrics target_wasi_wasm32 = {
- TargetOs_wasi,
- TargetArch_wasm32,
- 4, 8, 16,
- str_lit("wasm32-wasi-js"),
- str_lit("e-m:e-p:32:32-i64:64-n32:64-S128"),
- };
- gb_global TargetMetrics target_js_wasm64 = {
- TargetOs_js,
- TargetArch_wasm64,
- 8, 8, 16,
- str_lit("wasm64-js-js"),
- str_lit(""),
- };
- gb_global TargetMetrics target_freestanding_amd64_sysv = {
- TargetOs_freestanding,
- TargetArch_amd64,
- 8, 8, 16,
- str_lit("x86_64-pc-none-gnu"),
- str_lit("e-m:w-i64:64-f80:128-n8:16:32:64-S128"),
- TargetABI_SysV,
- };
- struct NamedTargetMetrics {
- String name;
- TargetMetrics *metrics;
- };
- gb_global NamedTargetMetrics named_targets[] = {
- { str_lit("darwin_amd64"), &target_darwin_amd64 },
- { str_lit("darwin_arm64"), &target_darwin_arm64 },
- { str_lit("essence_amd64"), &target_essence_amd64 },
- { str_lit("linux_i386"), &target_linux_i386 },
- { str_lit("linux_amd64"), &target_linux_amd64 },
- { str_lit("linux_arm64"), &target_linux_arm64 },
- { str_lit("linux_arm32"), &target_linux_arm32 },
- { str_lit("windows_i386"), &target_windows_i386 },
- { str_lit("windows_amd64"), &target_windows_amd64 },
- { str_lit("freebsd_i386"), &target_freebsd_i386 },
- { str_lit("freebsd_amd64"), &target_freebsd_amd64 },
- { str_lit("openbsd_amd64"), &target_openbsd_amd64 },
- { str_lit("freestanding_wasm32"), &target_freestanding_wasm32 },
- { str_lit("wasi_wasm32"), &target_wasi_wasm32 },
- { str_lit("js_wasm32"), &target_js_wasm32 },
- // { str_lit("js_wasm64"), &target_js_wasm64 },
- { str_lit("freestanding_amd64_sysv"), &target_freestanding_amd64_sysv },
- };
- NamedTargetMetrics *selected_target_metrics;
- TargetOsKind get_target_os_from_string(String str) {
- for (isize i = 0; i < TargetOs_COUNT; i++) {
- if (str_eq_ignore_case(target_os_names[i], str)) {
- return cast(TargetOsKind)i;
- }
- }
- return TargetOs_Invalid;
- }
- TargetArchKind get_target_arch_from_string(String str) {
- for (isize i = 0; i < TargetArch_COUNT; i++) {
- if (str_eq_ignore_case(target_arch_names[i], str)) {
- return cast(TargetArchKind)i;
- }
- }
- return TargetArch_Invalid;
- }
- bool is_excluded_target_filename(String name) {
- String original_name = name;
- name = remove_extension_from_path(name);
- if (string_starts_with(name, str_lit("."))) {
- // Ignore .*.odin files
- return true;
- }
- if (build_context.command_kind != Command_test) {
- String test_suffix = str_lit("_test");
- if (string_ends_with(name, test_suffix) && name != test_suffix) {
- // Ignore *_test.odin files
- return true;
- }
- }
- String str1 = {};
- String str2 = {};
- isize n = 0;
- str1 = name;
- n = str1.len;
- for (isize i = str1.len-1; i >= 0 && str1[i] != '_'; i--) {
- n -= 1;
- }
- str1 = substring(str1, n, str1.len);
- str2 = substring(name, 0, gb_max(n-1, 0));
- n = str2.len;
- for (isize i = str2.len-1; i >= 0 && str2[i] != '_'; i--) {
- n -= 1;
- }
- str2 = substring(str2, n, str2.len);
- if (str1 == name) {
- return false;
- }
- TargetOsKind os1 = get_target_os_from_string(str1);
- TargetArchKind arch1 = get_target_arch_from_string(str1);
- TargetOsKind os2 = get_target_os_from_string(str2);
- TargetArchKind arch2 = get_target_arch_from_string(str2);
- if (os1 != TargetOs_Invalid && arch2 != TargetArch_Invalid) {
- return os1 != build_context.metrics.os || arch2 != build_context.metrics.arch;
- } else if (arch1 != TargetArch_Invalid && os2 != TargetOs_Invalid) {
- return arch1 != build_context.metrics.arch || os2 != build_context.metrics.os;
- } else if (os1 != TargetOs_Invalid) {
- return os1 != build_context.metrics.os;
- } else if (arch1 != TargetArch_Invalid) {
- return arch1 != build_context.metrics.arch;
- }
- return false;
- }
- struct LibraryCollections {
- String name;
- String path;
- };
- gb_global Array<LibraryCollections> library_collections = {0};
- void add_library_collection(String name, String path) {
- // TODO(bill): Check the path is valid and a directory
- LibraryCollections lc = {name, string_trim_whitespace(path)};
- array_add(&library_collections, lc);
- }
- bool find_library_collection_path(String name, String *path) {
- for_array(i, library_collections) {
- if (library_collections[i].name == name) {
- if (path) *path = library_collections[i].path;
- return true;
- }
- }
- return false;
- }
- bool is_arch_wasm(void) {
- switch (build_context.metrics.arch) {
- case TargetArch_wasm32:
- case TargetArch_wasm64:
- return true;
- }
- return false;
- }
- bool is_arch_x86(void) {
- switch (build_context.metrics.arch) {
- case TargetArch_i386:
- case TargetArch_amd64:
- return true;
- }
- return false;
- }
- bool allow_check_foreign_filepath(void) {
- switch (build_context.metrics.arch) {
- case TargetArch_wasm32:
- case TargetArch_wasm64:
- return false;
- }
- return true;
- }
- // TODO(bill): OS dependent versions for the BuildContext
- // join_path
- // is_dir
- // is_file
- // is_abs_path
- // has_subdir
- String const WIN32_SEPARATOR_STRING = {cast(u8 *)"\\", 1};
- String const NIX_SEPARATOR_STRING = {cast(u8 *)"/", 1};
- String const WASM_MODULE_NAME_SEPARATOR = str_lit("..");
- String internal_odin_root_dir(void);
- String odin_root_dir(void) {
- if (global_module_path_set) {
- return global_module_path;
- }
- gbAllocator a = permanent_allocator();
- char const *found = gb_get_env("ODIN_ROOT", a);
- if (found) {
- String path = path_to_full_path(a, make_string_c(found));
- if (path[path.len-1] != '/' && path[path.len-1] != '\\') {
- #if defined(GB_SYSTEM_WINDOWS)
- path = concatenate_strings(a, path, WIN32_SEPARATOR_STRING);
- #else
- path = concatenate_strings(a, path, NIX_SEPARATOR_STRING);
- #endif
- }
- global_module_path = path;
- global_module_path_set = true;
- return global_module_path;
- }
- return internal_odin_root_dir();
- }
- #if defined(GB_SYSTEM_WINDOWS)
- String internal_odin_root_dir(void) {
- String path = global_module_path;
- isize len, i;
- wchar_t *text;
- if (global_module_path_set) {
- return global_module_path;
- }
- auto path_buf = array_make<wchar_t>(heap_allocator(), 300);
- len = 0;
- for (;;) {
- len = GetModuleFileNameW(nullptr, &path_buf[0], cast(int)path_buf.count);
- if (len == 0) {
- return make_string(nullptr, 0);
- }
- if (len < path_buf.count) {
- break;
- }
- array_resize(&path_buf, 2*path_buf.count + 300);
- }
- len += 1; // NOTE(bill): It needs an extra 1 for some reason
- mutex_lock(&string_buffer_mutex);
- defer (mutex_unlock(&string_buffer_mutex));
- text = gb_alloc_array(permanent_allocator(), wchar_t, len+1);
- GetModuleFileNameW(nullptr, text, cast(int)len);
- path = string16_to_string(heap_allocator(), make_string16(text, len));
- for (i = path.len-1; i >= 0; i--) {
- u8 c = path[i];
- if (c == '/' || c == '\\') {
- break;
- }
- path.len--;
- }
- global_module_path = path;
- global_module_path_set = true;
- array_free(&path_buf);
- return path;
- }
- #elif defined(GB_SYSTEM_OSX)
- #include <mach-o/dyld.h>
- String path_to_fullpath(gbAllocator a, String s);
- String internal_odin_root_dir(void) {
- String path = global_module_path;
- isize len, i;
- u8 *text;
- if (global_module_path_set) {
- return global_module_path;
- }
- auto path_buf = array_make<char>(heap_allocator(), 300);
- len = 0;
- for (;;) {
- u32 sz = path_buf.count;
- int res = _NSGetExecutablePath(&path_buf[0], &sz);
- if(res == 0) {
- len = sz;
- break;
- } else {
- array_resize(&path_buf, sz + 1);
- }
- }
- mutex_lock(&string_buffer_mutex);
- defer (mutex_unlock(&string_buffer_mutex));
- text = gb_alloc_array(permanent_allocator(), u8, len + 1);
- gb_memmove(text, &path_buf[0], len);
- path = path_to_fullpath(heap_allocator(), make_string(text, len));
- for (i = path.len-1; i >= 0; i--) {
- u8 c = path[i];
- if (c == '/' || c == '\\') {
- break;
- }
- path.len--;
- }
- global_module_path = path;
- global_module_path_set = true;
- // array_free(&path_buf);
- return path;
- }
- #else
- // NOTE: Linux / Unix is unfinished and not tested very well.
- #include <sys/stat.h>
- String path_to_fullpath(gbAllocator a, String s);
- String internal_odin_root_dir(void) {
- String path = global_module_path;
- isize len, i;
- u8 *text;
- if (global_module_path_set) {
- return global_module_path;
- }
- auto path_buf = array_make<char>(heap_allocator(), 300);
- defer (array_free(&path_buf));
- len = 0;
- for (;;) {
- // This is not a 100% reliable system, but for the purposes
- // of this compiler, it should be _good enough_.
- // That said, there's no solid 100% method on Linux to get the program's
- // path without checking this link. Sorry.
- #if defined(GB_SYSTEM_FREEBSD)
- int mib[4];
- mib[0] = CTL_KERN;
- mib[1] = KERN_PROC;
- mib[2] = KERN_PROC_PATHNAME;
- mib[3] = -1;
- len = path_buf.count;
- sysctl(mib, 4, &path_buf[0], (size_t *) &len, NULL, 0);
- #elif defined(GB_SYSTEM_NETBSD)
- len = readlink("/proc/curproc/exe", &path_buf[0], path_buf.count);
- #elif defined(GB_SYSTEM_DRAGONFLYBSD)
- len = readlink("/proc/curproc/file", &path_buf[0], path_buf.count);
- #elif defined(GB_SYSTEM_LINUX)
- len = readlink("/proc/self/exe", &path_buf[0], path_buf.count);
- #elif defined(GB_SYSTEM_OPENBSD)
- int error;
- int mib[] = {
- CTL_KERN,
- KERN_PROC_ARGS,
- getpid(),
- KERN_PROC_ARGV,
- };
- // get argv size
- error = sysctl(mib, 4, NULL, (size_t *) &len, NULL, 0);
- if (error == -1) {
- // sysctl error
- return make_string(nullptr, 0);
- }
- // get argv
- char **argv = (char **)gb_malloc(len);
- error = sysctl(mib, 4, argv, (size_t *) &len, NULL, 0);
- if (error == -1) {
- // sysctl error
- gb_mfree(argv);
- return make_string(nullptr, 0);
- }
- // NOTE(Jeroen):
- // On OpenBSD, if `odin` is on the path, `argv[0]` will contain just `odin`,
- // even though that isn't then the relative path.
- // When run from Odin's directory, it returns `./odin`.
- // Check argv[0] for lack of / to see if it's a reference to PATH.
- // If so, walk PATH to find the executable.
- len = gb_strlen(argv[0]);
- bool slash_found = false;
- bool odin_found = false;
- for (int i = 0; i < len; i += 1) {
- if (argv[0][i] == '/') {
- slash_found = true;
- break;
- }
- }
- if (slash_found) {
- // copy argv[0] to path_buf
- if(len < path_buf.count) {
- gb_memmove(&path_buf[0], argv[0], len);
- odin_found = true;
- }
- } else {
- gbAllocator a = heap_allocator();
- char const *path_env = gb_get_env("PATH", a);
- defer (gb_free(a, cast(void *)path_env));
- if (path_env) {
- int path_len = gb_strlen(path_env);
- int path_start = 0;
- int path_end = 0;
- for (; path_start < path_len; ) {
- for (; path_end <= path_len; path_end++) {
- if (path_env[path_end] == ':' || path_end == path_len) {
- break;
- }
- }
- String path_needle = (const String)make_string((const u8 *)(path_env + path_start), path_end - path_start);
- String argv0 = (const String)make_string((const u8 *)argv[0], len);
- String odin_candidate = concatenate3_strings(a, path_needle, STR_LIT("/"), argv0);
- defer (gb_free(a, odin_candidate.text));
- if (gb_file_exists((const char *)odin_candidate.text)) {
- len = odin_candidate.len;
- if(len < path_buf.count) {
- gb_memmove(&path_buf[0], odin_candidate.text, len);
- }
- odin_found = true;
- break;
- }
- path_start = path_end + 1;
- path_end = path_start;
- if (path_start > path_len) {
- break;
- }
- }
- }
- if (!odin_found) {
- gb_printf_err("Odin could not locate itself in PATH, and ODIN_ROOT wasn't set either.\n");
- }
- }
- gb_mfree(argv);
- #endif
- if(len == 0 || len == -1) {
- return make_string(nullptr, 0);
- }
- if (len < path_buf.count) {
- break;
- }
- array_resize(&path_buf, 2*path_buf.count + 300);
- }
- mutex_lock(&string_buffer_mutex);
- defer (mutex_unlock(&string_buffer_mutex));
- text = gb_alloc_array(permanent_allocator(), u8, len + 1);
- gb_memmove(text, &path_buf[0], len);
- path = path_to_fullpath(heap_allocator(), make_string(text, len));
- for (i = path.len-1; i >= 0; i--) {
- u8 c = path[i];
- if (c == '/' || c == '\\') {
- break;
- }
- path.len--;
- }
- global_module_path = path;
- global_module_path_set = true;
- return path;
- }
- #endif
- gb_global BlockingMutex fullpath_mutex;
- #if defined(GB_SYSTEM_WINDOWS)
- String path_to_fullpath(gbAllocator a, String s) {
- String result = {};
- mutex_lock(&fullpath_mutex);
- defer (mutex_unlock(&fullpath_mutex));
- String16 string16 = string_to_string16(heap_allocator(), s);
- defer (gb_free(heap_allocator(), string16.text));
- DWORD len = GetFullPathNameW(&string16[0], 0, nullptr, nullptr);
- if (len != 0) {
- wchar_t *text = gb_alloc_array(permanent_allocator(), wchar_t, len+1);
- GetFullPathNameW(&string16[0], len, text, nullptr);
- text[len] = 0;
- result = string16_to_string(a, make_string16(text, len));
- result = string_trim_whitespace(result);
- // Replace Windows style separators
- for (isize i = 0; i < result.len; i++) {
- if (result.text[i] == '\\') {
- result.text[i] = '/';
- }
- }
- }
- return result;
- }
- #elif defined(GB_SYSTEM_OSX) || defined(GB_SYSTEM_UNIX)
- String path_to_fullpath(gbAllocator a, String s) {
- char *p;
- mutex_lock(&fullpath_mutex);
- p = realpath(cast(char *)s.text, 0);
- mutex_unlock(&fullpath_mutex);
- if(p == nullptr) return String{};
- return make_string_c(p);
- }
- #else
- #error Implement system
- #endif
- String get_fullpath_relative(gbAllocator a, String base_dir, String path) {
- u8 *str = gb_alloc_array(heap_allocator(), u8, base_dir.len+1+path.len+1);
- defer (gb_free(heap_allocator(), str));
- isize i = 0;
- gb_memmove(str+i, base_dir.text, base_dir.len); i += base_dir.len;
- gb_memmove(str+i, "/", 1); i += 1;
- gb_memmove(str+i, path.text, path.len); i += path.len;
- str[i] = 0;
- // IMPORTANT NOTE(bill): Remove trailing path separators
- // this is required to make sure there is a conventional
- // notation for the path
- for (/**/; i > 0; i--) {
- u8 c = str[i-1];
- if (c != '/' && c != '\\') {
- break;
- }
- }
- String res = make_string(str, i);
- res = string_trim_whitespace(res);
- return path_to_fullpath(a, res);
- }
- String get_fullpath_core(gbAllocator a, String path) {
- String module_dir = odin_root_dir();
- String core = str_lit("core/");
- isize str_len = module_dir.len + core.len + path.len;
- u8 *str = gb_alloc_array(heap_allocator(), u8, str_len+1);
- defer (gb_free(heap_allocator(), str));
- isize i = 0;
- gb_memmove(str+i, module_dir.text, module_dir.len); i += module_dir.len;
- gb_memmove(str+i, core.text, core.len); i += core.len;
- gb_memmove(str+i, path.text, path.len); i += path.len;
- str[i] = 0;
- String res = make_string(str, i);
- res = string_trim_whitespace(res);
- return path_to_fullpath(a, res);
- }
- bool show_error_line(void) {
- return build_context.show_error_line;
- }
- bool has_asm_extension(String const &path) {
- String ext = path_extension(path);
- if (ext == ".asm") {
- return true;
- } else if (ext == ".s") {
- return true;
- } else if (ext == ".S") {
- return true;
- }
- return false;
- }
- // temporary
- char *token_pos_to_string(TokenPos const &pos) {
- gbString s = gb_string_make_reserve(temporary_allocator(), 128);
- String file = get_file_path_string(pos.file_id);
- switch (build_context.ODIN_ERROR_POS_STYLE) {
- default: /*fallthrough*/
- case ErrorPosStyle_Default:
- s = gb_string_append_fmt(s, "%.*s(%d:%d)", LIT(file), pos.line, pos.column);
- break;
- case ErrorPosStyle_Unix:
- s = gb_string_append_fmt(s, "%.*s:%d:%d:", LIT(file), pos.line, pos.column);
- break;
- }
- return s;
- }
- void init_build_context(TargetMetrics *cross_target) {
- BuildContext *bc = &build_context;
- gb_affinity_init(&bc->affinity);
- if (bc->thread_count == 0) {
- bc->thread_count = gb_max(bc->affinity.thread_count, 1);
- }
- bc->ODIN_VENDOR = str_lit("odin");
- bc->ODIN_VERSION = ODIN_VERSION;
- bc->ODIN_ROOT = odin_root_dir();
- {
- char const *found = gb_get_env("ODIN_ERROR_POS_STYLE", permanent_allocator());
- if (found) {
- ErrorPosStyle kind = ErrorPosStyle_Default;
- String style = make_string_c(found);
- style = string_trim_whitespace(style);
- if (style == "" || style == "default" || style == "odin") {
- kind = ErrorPosStyle_Default;
- } else if (style == "unix" || style == "gcc" || style == "clang" || style == "llvm") {
- kind = ErrorPosStyle_Unix;
- } else {
- gb_printf_err("Invalid ODIN_ERROR_POS_STYLE: got %.*s\n", LIT(style));
- gb_printf_err("Valid formats:\n");
- gb_printf_err("\t\"default\" or \"odin\"\n");
- gb_printf_err("\t\tpath(line:column) message\n");
- gb_printf_err("\t\"unix\"\n");
- gb_printf_err("\t\tpath:line:column: message\n");
- gb_exit(1);
- }
- build_context.ODIN_ERROR_POS_STYLE = kind;
- }
- }
- bc->copy_file_contents = true;
- TargetMetrics *metrics = nullptr;
- #if defined(GB_ARCH_64_BIT)
- #if defined(GB_SYSTEM_WINDOWS)
- metrics = &target_windows_amd64;
- #elif defined(GB_SYSTEM_OSX)
- #if defined(GB_CPU_ARM)
- metrics = &target_darwin_arm64;
- #else
- metrics = &target_darwin_amd64;
- #endif
- #elif defined(GB_SYSTEM_FREEBSD)
- metrics = &target_freebsd_amd64;
- #elif defined(GB_SYSTEM_OPENBSD)
- metrics = &target_openbsd_amd64;
- #elif defined(GB_CPU_ARM)
- metrics = &target_linux_arm64;
- #else
- metrics = &target_linux_amd64;
- #endif
- #else
- #if defined(GB_SYSTEM_WINDOWS)
- metrics = &target_windows_i386;
- #elif defined(GB_SYSTEM_OSX)
- #error "Build Error: Unsupported architecture"
- #elif defined(GB_SYSTEM_FREEBSD)
- metrics = &target_freebsd_i386;
- #else
- metrics = &target_linux_i386;
- #endif
- #endif
- if (cross_target != nullptr && metrics != cross_target) {
- bc->different_os = cross_target->os != metrics->os;
- bc->cross_compiling = true;
- metrics = cross_target;
- }
- GB_ASSERT(metrics->os != TargetOs_Invalid);
- GB_ASSERT(metrics->arch != TargetArch_Invalid);
- GB_ASSERT(metrics->word_size > 1);
- GB_ASSERT(metrics->max_align > 1);
- GB_ASSERT(metrics->max_simd_align > 1);
- bc->metrics = *metrics;
- bc->ODIN_OS = target_os_names[metrics->os];
- bc->ODIN_ARCH = target_arch_names[metrics->arch];
- bc->endian_kind = target_endians[metrics->arch];
- bc->word_size = metrics->word_size;
- bc->max_align = metrics->max_align;
- bc->max_simd_align = metrics->max_simd_align;
- bc->link_flags = str_lit(" ");
- #if defined(DEFAULT_TO_THREADED_CHECKER)
- bc->threaded_checker = true;
- #endif
- if (bc->disable_red_zone) {
- if (is_arch_wasm() && bc->metrics.os == TargetOs_freestanding) {
- gb_printf_err("-disable-red-zone is not support for this target");
- gb_exit(1);
- }
- }
- if (bc->metrics.os == TargetOs_freestanding) {
- bc->no_entry_point = true;
- } else {
- if (bc->disallow_rtti) {
- gb_printf_err("-disallow-rtti is only allowed on freestanding targets\n");
- gb_exit(1);
- }
- }
- // NOTE(zangent): The linker flags to set the build architecture are different
- // across OSs. It doesn't make sense to allocate extra data on the heap
- // here, so I just #defined the linker flags to keep things concise.
- if (bc->metrics.arch == TargetArch_amd64) {
- switch (bc->metrics.os) {
- case TargetOs_windows:
- bc->link_flags = str_lit("/machine:x64 ");
- break;
- case TargetOs_darwin:
- break;
- case TargetOs_linux:
- bc->link_flags = str_lit("-arch x86-64 ");
- break;
- case TargetOs_freebsd:
- bc->link_flags = str_lit("-arch x86-64 ");
- break;
- case TargetOs_openbsd:
- bc->link_flags = str_lit("-arch x86-64 ");
- break;
- }
- } else if (bc->metrics.arch == TargetArch_i386) {
- switch (bc->metrics.os) {
- case TargetOs_windows:
- bc->link_flags = str_lit("/machine:x86 ");
- break;
- case TargetOs_darwin:
- gb_printf_err("Unsupported architecture\n");
- gb_exit(1);
- break;
- case TargetOs_linux:
- bc->link_flags = str_lit("-arch x86 ");
- break;
- case TargetOs_freebsd:
- bc->link_flags = str_lit("-arch x86 ");
- break;
- }
- } else if (bc->metrics.arch == TargetArch_arm32) {
- switch (bc->metrics.os) {
- case TargetOs_linux:
- bc->link_flags = str_lit("-arch arm ");
- break;
- default:
- gb_printf_err("Compiler Error: Unsupported architecture\n");
- gb_exit(1);
- }
- } else if (bc->metrics.arch == TargetArch_arm64) {
- switch (bc->metrics.os) {
- case TargetOs_darwin:
- bc->link_flags = str_lit("-arch arm64 ");
- break;
- case TargetOs_linux:
- bc->link_flags = str_lit("-arch aarch64 ");
- break;
- }
- } else if (is_arch_wasm()) {
- gbString link_flags = gb_string_make(heap_allocator(), " ");
- // link_flags = gb_string_appendc(link_flags, "--export-all ");
- // link_flags = gb_string_appendc(link_flags, "--export-table ");
- link_flags = gb_string_appendc(link_flags, "--allow-undefined ");
- if (bc->metrics.arch == TargetArch_wasm64) {
- link_flags = gb_string_appendc(link_flags, "-mwasm64 ");
- }
- if (bc->no_entry_point) {
- link_flags = gb_string_appendc(link_flags, "--no-entry ");
- }
-
- bc->link_flags = make_string_c(link_flags);
-
- // Disallow on wasm
- bc->use_separate_modules = false;
- } else {
- gb_printf_err("Compiler Error: Unsupported architecture\n");
- gb_exit(1);
- }
- bc->optimization_level = gb_clamp(bc->optimization_level, 0, 3);
- bc->ODIN_VALGRIND_SUPPORT = is_arch_x86() && build_context.metrics.os != TargetOs_windows;
- #undef LINK_FLAG_X64
- #undef LINK_FLAG_386
- }
- #if defined(GB_SYSTEM_WINDOWS)
- // NOTE(IC): In order to find Visual C++ paths without relying on environment variables.
- // NOTE(Jeroen): No longer needed in `main.cpp -> linker_stage`. We now resolve those paths in `init_build_paths`.
- #include "microsoft_craziness.h"
- #endif
- Array<String> split_by_comma(String const &list) {
- isize n = 1;
- for (isize i = 0; i < list.len; i++) {
- if (list.text[i] == ',') {
- n++;
- }
- }
- auto res = array_make<String>(heap_allocator(), n);
- String s = list;
- for (isize i = 0; i < n; i++) {
- isize m = string_index_byte(s, ',');
- if (m < 0) {
- res[i] = s;
- break;
- }
- res[i] = substring(s, 0, m);
- s = substring(s, m+1, s.len);
- }
- return res;
- }
- bool check_target_feature_is_valid(TokenPos pos, String const &feature) {
- // TODO(bill): check_target_feature_is_valid
- return true;
- }
- bool check_target_feature_is_enabled(TokenPos pos, String const &target_feature_list) {
- BuildContext *bc = &build_context;
- mutex_lock(&bc->target_features_mutex);
- defer (mutex_unlock(&bc->target_features_mutex));
- auto items = split_by_comma(target_feature_list);
- array_free(&items);
- for_array(i, items) {
- String const &item = items.data[i];
- if (!check_target_feature_is_valid(pos, item)) {
- error(pos, "Target feature '%.*s' is not valid", LIT(item));
- return false;
- }
- if (!string_set_exists(&bc->target_features_set, item)) {
- error(pos, "Target feature '%.*s' is not enabled", LIT(item));
- return false;
- }
- }
- return true;
- }
- void enable_target_feature(TokenPos pos, String const &target_feature_list) {
- BuildContext *bc = &build_context;
- mutex_lock(&bc->target_features_mutex);
- defer (mutex_unlock(&bc->target_features_mutex));
- auto items = split_by_comma(target_feature_list);
- for_array(i, items) {
- String const &item = items.data[i];
- if (!check_target_feature_is_valid(pos, item)) {
- error(pos, "Target feature '%.*s' is not valid", LIT(item));
- continue;
- }
- string_set_add(&bc->target_features_set, item);
- }
- array_free(&items);
- }
- char const *target_features_set_to_cstring(gbAllocator allocator, bool with_quotes) {
- isize len = 0;
- for_array(i, build_context.target_features_set.entries) {
- if (i != 0) {
- len += 1;
- }
- String feature = build_context.target_features_set.entries[i].value;
- len += feature.len;
- if (with_quotes) len += 2;
- }
- char *features = gb_alloc_array(allocator, char, len+1);
- len = 0;
- for_array(i, build_context.target_features_set.entries) {
- if (i != 0) {
- features[len++] = ',';
- }
- if (with_quotes) features[len++] = '"';
- String feature = build_context.target_features_set.entries[i].value;
- gb_memmove(features + len, feature.text, feature.len);
- len += feature.len;
- if (with_quotes) features[len++] = '"';
- }
- features[len++] = 0;
- return features;
- }
- // NOTE(Jeroen): Set/create the output and other paths and report an error as appropriate.
- // We've previously called `parse_build_flags`, so `out_filepath` should be set.
- bool init_build_paths(String init_filename) {
- gbAllocator ha = heap_allocator();
- BuildContext *bc = &build_context;
- // NOTE(Jeroen): We're pre-allocating BuildPathCOUNT slots so that certain paths are always at the same enumerated index.
- array_init(&bc->build_paths, permanent_allocator(), BuildPathCOUNT);
- string_set_init(&bc->target_features_set, heap_allocator(), 1024);
- mutex_init(&bc->target_features_mutex);
- // [BuildPathMainPackage] Turn given init path into a `Path`, which includes normalizing it into a full path.
- bc->build_paths[BuildPath_Main_Package] = path_from_string(ha, init_filename);
- {
- String build_project_name = last_path_element(bc->build_paths[BuildPath_Main_Package].basename);
- GB_ASSERT(build_project_name.len > 0);
- bc->ODIN_BUILD_PROJECT_NAME = build_project_name;
- }
- bool produces_output_file = false;
- if (bc->command_kind == Command_doc && bc->cmd_doc_flags & CmdDocFlag_DocFormat) {
- produces_output_file = true;
- } else if (bc->command_kind & Command__does_build) {
- produces_output_file = true;
- }
- if (!produces_output_file) {
- // Command doesn't produce output files. We're done.
- return true;
- }
- #if defined(GB_SYSTEM_WINDOWS)
- if (bc->metrics.os == TargetOs_windows) {
- if (bc->resource_filepath.len > 0) {
- bc->build_paths[BuildPath_RC] = path_from_string(ha, bc->resource_filepath);
- bc->build_paths[BuildPath_RES] = path_from_string(ha, bc->resource_filepath);
- bc->build_paths[BuildPath_RC].ext = copy_string(ha, STR_LIT("rc"));
- bc->build_paths[BuildPath_RES].ext = copy_string(ha, STR_LIT("res"));
- }
- if (bc->pdb_filepath.len > 0) {
- bc->build_paths[BuildPath_PDB] = path_from_string(ha, bc->pdb_filepath);
- }
- if ((bc->command_kind & Command__does_build) && (!bc->ignore_microsoft_magic)) {
- // NOTE(ic): It would be nice to extend this so that we could specify the Visual Studio version that we want instead of defaulting to the latest.
- Find_Result find_result = find_visual_studio_and_windows_sdk();
- defer (mc_free_all());
- if (find_result.windows_sdk_version == 0) {
- gb_printf_err("Windows SDK not found.\n");
- return false;
- }
- if (!build_context.use_lld && find_result.vs_exe_path.len == 0) {
- gb_printf_err("link.exe not found.\n");
- return false;
- }
- if (find_result.vs_library_path.len == 0) {
- gb_printf_err("VS library path not found.\n");
- return false;
- }
- if (find_result.windows_sdk_um_library_path.len > 0) {
- GB_ASSERT(find_result.windows_sdk_ucrt_library_path.len > 0);
- if (find_result.windows_sdk_bin_path.len > 0) {
- bc->build_paths[BuildPath_Win_SDK_Bin_Path] = path_from_string(ha, find_result.windows_sdk_bin_path);
- }
- if (find_result.windows_sdk_um_library_path.len > 0) {
- bc->build_paths[BuildPath_Win_SDK_UM_Lib] = path_from_string(ha, find_result.windows_sdk_um_library_path);
- }
- if (find_result.windows_sdk_ucrt_library_path.len > 0) {
- bc->build_paths[BuildPath_Win_SDK_UCRT_Lib] = path_from_string(ha, find_result.windows_sdk_ucrt_library_path);
- }
- if (find_result.vs_exe_path.len > 0) {
- bc->build_paths[BuildPath_VS_EXE] = path_from_string(ha, find_result.vs_exe_path);
- }
- if (find_result.vs_library_path.len > 0) {
- bc->build_paths[BuildPath_VS_LIB] = path_from_string(ha, find_result.vs_library_path);
- }
- }
- }
- }
- #endif
- // All the build targets and OSes.
- String output_extension;
- if (bc->command_kind == Command_doc && bc->cmd_doc_flags & CmdDocFlag_DocFormat) {
- output_extension = STR_LIT("odin-doc");
- } else if (is_arch_wasm()) {
- output_extension = STR_LIT("wasm");
- } else if (build_context.build_mode == BuildMode_Executable) {
- // By default use a .bin executable extension.
- output_extension = STR_LIT("bin");
- if (build_context.metrics.os == TargetOs_windows) {
- output_extension = STR_LIT("exe");
- } else if (build_context.cross_compiling && selected_target_metrics->metrics == &target_essence_amd64) {
- output_extension = make_string(nullptr, 0);
- }
- } else if (build_context.build_mode == BuildMode_DynamicLibrary) {
- // By default use a .so shared library extension.
- output_extension = STR_LIT("so");
- if (build_context.metrics.os == TargetOs_windows) {
- output_extension = STR_LIT("dll");
- } else if (build_context.metrics.os == TargetOs_darwin) {
- output_extension = STR_LIT("dylib");
- }
- } else if (build_context.build_mode == BuildMode_Object) {
- // By default use a .o object extension.
- output_extension = STR_LIT("o");
- if (build_context.metrics.os == TargetOs_windows) {
- output_extension = STR_LIT("obj");
- }
- } else if (build_context.build_mode == BuildMode_Assembly) {
- // By default use a .S asm extension.
- output_extension = STR_LIT("S");
- } else if (build_context.build_mode == BuildMode_LLVM_IR) {
- output_extension = STR_LIT("ll");
- } else {
- GB_PANIC("Unhandled build mode/target combination.\n");
- }
- if (bc->out_filepath.len > 0) {
- bc->build_paths[BuildPath_Output] = path_from_string(ha, bc->out_filepath);
- if (build_context.metrics.os == TargetOs_windows) {
- String output_file = path_to_string(ha, bc->build_paths[BuildPath_Output]);
- defer (gb_free(ha, output_file.text));
- if (path_is_directory(bc->build_paths[BuildPath_Output])) {
- gb_printf_err("Output path %.*s is a directory.\n", LIT(output_file));
- return false;
- } else if (bc->build_paths[BuildPath_Output].ext.len == 0) {
- gb_printf_err("Output path %.*s must have an appropriate extension.\n", LIT(output_file));
- return false;
- }
- }
- } else {
- Path output_path;
- if (str_eq(init_filename, str_lit("."))) {
- // We must name the output file after the current directory.
- debugf("Output name will be created from current base name %.*s.\n", LIT(bc->build_paths[BuildPath_Main_Package].basename));
- String last_element = last_path_element(bc->build_paths[BuildPath_Main_Package].basename);
- if (last_element.len == 0) {
- gb_printf_err("The output name is created from the last path element. `%.*s` has none. Use `-out:output_name.ext` to set it.\n", LIT(bc->build_paths[BuildPath_Main_Package].basename));
- return false;
- }
- output_path.basename = copy_string(ha, bc->build_paths[BuildPath_Main_Package].basename);
- output_path.name = copy_string(ha, last_element);
- } else {
- // Init filename was not 'current path'.
- // Contruct the output name from the path elements as usual.
- String output_name = init_filename;
- // If it ends with a trailing (back)slash, strip it before continuing.
- while (output_name.len > 0 && (output_name[output_name.len-1] == '/' || output_name[output_name.len-1] == '\\')) {
- output_name.len -= 1;
- }
- output_name = remove_directory_from_path(output_name);
- output_name = remove_extension_from_path(output_name);
- output_name = copy_string(ha, string_trim_whitespace(output_name));
- output_path = path_from_string(ha, output_name);
- // Replace extension.
- if (output_path.ext.len > 0) {
- gb_free(ha, output_path.ext.text);
- }
- }
- output_path.ext = copy_string(ha, output_extension);
- bc->build_paths[BuildPath_Output] = output_path;
- }
- // Do we have an extension? We might not if the output filename was supplied.
- if (bc->build_paths[BuildPath_Output].ext.len == 0) {
- if (build_context.metrics.os == TargetOs_windows || build_context.build_mode != BuildMode_Executable) {
- bc->build_paths[BuildPath_Output].ext = copy_string(ha, output_extension);
- }
- }
- // Check if output path is a directory.
- if (path_is_directory(bc->build_paths[BuildPath_Output])) {
- String output_file = path_to_string(ha, bc->build_paths[BuildPath_Output]);
- defer (gb_free(ha, output_file.text));
- gb_printf_err("Output path %.*s is a directory.\n", LIT(output_file));
- return false;
- }
- if (bc->target_features_string.len != 0) {
- enable_target_feature({}, bc->target_features_string);
- }
- return true;
- }
|