aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-15Implement asm labelsMichael Forney
2019-05-15decl: Don't emit function if inline is specified without static or externMichael Forney
This partially addresses #42. Now, no duplicate definitions will be emitted, but we also don't emit a definition when a later declaration is specified with extern.
2019-05-15Add __signed alternate keywordMichael Forney
2019-05-14Add NixOS continuous buildMichael Forney
2019-05-14Fix duplicate commaMichael Forney
2019-05-14configure: Handle empty but set DEFAULT_DYNAMIC_LINKER as no flag necessaryMichael Forney
This should address issues with configure on NixOS (#27).
2019-05-14configure: Clear some variables before we conditionally set themMichael Forney
2019-05-14Add __asm as an alternate keyword for __asm__Michael Forney
2019-05-14driver: Allow empty start/end filesMichael Forney
Since empty arrays are not allowed, use a single element array containing NULL pointer to specify this.
2019-05-14Add notes about building st to doc/software.mdMichael Forney
2019-05-14Add initial OpenBSD continuous buildMichael Forney
2019-05-14Use correct terminology in error messageMichael Forney
2019-05-14decl: Factor out some code common to function and object declarationsMichael Forney
2019-05-13Add initial support for OpenBSD in configureMichael Forney
2019-05-13Use enum type for expect argumentMichael Forney
2019-05-13Most known problems with arm64 have been resolvedMichael Forney
2019-05-13driver: Add verbose modeMichael Forney
2019-05-13Add qbe submodule to make it easy to buildMichael Forney
2019-05-12eval: Keep track of kind of constant expression we are evaluatingMichael Forney
When we are evaluating an arithmetic constant expression, we don't want to indroduce static data definitions for string or compound literals. Fixes #59.
2019-05-12Improve error message and simplify slightlyMichael Forney
2019-05-12Fix progname fallbackMichael Forney
2019-05-11Include lacc in related compilersMichael Forney
2019-05-10Mention sbase issues with glibcMichael Forney
2019-05-10Stack allocation fix was applied to upstream QBEMichael Forney
2019-05-10qbe: Fix QBE types for structs containing bit-fieldsMichael Forney
2019-05-09Add Debian aarch64 continuous buildMichael Forney
2019-05-09Add alternate __volatile__ keywordMichael Forney
2019-05-09Fix ordering of endfilesMichael Forney
-lc should come before crtn.o.
2019-05-08Fix spacingMichael Forney
2019-05-08Add aarch64 continuous buildMichael Forney
2019-05-08configure: Add tool prefix when building a cross-compilerMichael Forney
2019-05-08Update expected test output for fe4297ba1dMichael Forney
2019-05-08README: Mention that aarch64 mostly worksMichael Forney
2019-05-08configure: Make dynamic linker configurableMichael Forney
2019-05-08Bump size of va_list to 32 to support both x86_64 and aarch64Michael Forney
2019-05-08Recommend my QBE branch for nowMichael Forney
2019-05-08scan: Handle EOF in comments, character constants, and string literalsMichael Forney
2019-05-07Add -s to LDFLAGS instead of running strip manually during bootstrapMichael Forney
Otherwise, stage3 is always considered out of date.
2019-04-29driver.o needs config.hMichael Forney
2019-04-29Add __asm__ keywordMichael Forney
2019-04-29Add __typeof__ to tokstrMichael Forney
2019-04-28config.def.h was removedMichael Forney
2019-04-28Just maintain header dependencies in MakefileMichael Forney
Now that we are using a common cc.h, these are unlikely to change much.
2019-04-27Unnamed bit-fields don't contribute to size or alignment of unions, or size ↵Michael Forney
of structs
2019-04-27Sign-extend result of bit-field assignmentsMichael Forney
Fixes #51. Thanks to Andrew Chambers for the bug report and test case.
2019-04-27Fix some function declarator corner casesMichael Forney
2019-04-27init: Allow string literal initializers to be in bracesMichael Forney
2019-04-26Replace config.def.h with a configure scriptMichael Forney
2019-04-26Remove compilecmd from config.hMichael Forney
We replace it with one derived from the driver path anyway.
2019-04-25qbe: Error out when va_arg is called with non-scalar typeMichael Forney