Andrew Kelley
8fa6ca6daa
Merge pull request #8879 from squeek502/dot-and-dotdot-test
...
Add . and .. tests for std.fs functions
2021-05-23 23:26:05 -04:00
Michael Dusan
b3e4832240
housekeeping: remove pub from ccPrintFileName()
...
- this was inadvertently made public while iterating on #8730
2021-05-23 19:45:05 -04:00
Ryan Liptak
78019452f7
Add updateFile to . and .. fs tests
2021-05-23 16:35:31 -07:00
Andrew Kelley
b8f85a805b
Revert "stage2: add support for zig cc assembler -mcpu option"
...
This reverts commit afb9f695b1bdbf81185e7d55d5783bcbab880989.
I don't think this was ever actually verified to fix the thing it
purported to, and it started causing warnings for unused command line
parameters.
2021-05-23 16:32:22 -07:00
Ryan Liptak
1bc0df7250
Add . and .. tests for std.fs functions
...
These tests check that . and .. are able to be handled by the std.fs functions. Before #7664 , these tests would have failed on Windows.
Closes #4659
2021-05-23 16:22:27 -07:00
Andrew Kelley
ae01c65a58
stage2: fix reference to musl arch name
...
Also rename musl.archMuslName to musl.archName.
Fixes a merge conflict from #8730 and #8837
2021-05-23 13:32:52 -07:00
Michael Dusan
0f26120377
overhaul elf csu (c-runtime startup) logic
...
- more support for linux, android, freebsd, netbsd, openbsd, dragonfly
- centralize musl utils; musl logic is no longer intertwined with csu
- fix musl compilation to build crti/crtn for full archs list
- fix openbsd to support `zig build-lib -dynamic`
- initial dragonfly linking success (with a warning)
ancillary:
- fix emutls (openbsd) tests to use `try`
2021-05-23 15:38:57 -04:00
Daniele Cocca
44e480aa2c
translate_c: remove unused WriteFileStep import
2021-05-23 14:35:19 -04:00
Evan Haas
d321a4b765
translate-c: Translate FnDecl's that appear within functions
2021-05-23 15:42:36 +03:00
joachimschmidt557
e8236551ab
stage2: Move BlockData out of ir.Inst.Block
2021-05-22 21:15:25 -04:00
Andrew Kelley
1c636e2564
Merge pull request #8844 from ifreund/inline
...
Support inline keyword as well as callconv(.Inline)
2021-05-22 20:56:30 -04:00
jacob gw
9baf891772
stage2: astgen error for return or try in defer block
2021-05-22 20:54:14 -04:00
Sébastien Marie
ceacb7d247
openbsd: complete kqueue(2) constant definitions
2021-05-22 20:52:44 -04:00
Isaac Freund
b2126d3345
stage2: only pass -lm -lc -ldl for android libc
...
The other libc components are not available on android.
2021-05-22 20:52:14 -04:00
Sobeston
742d588b3a
std.os: munmap takes a const pointer
2021-05-22 20:51:53 -04:00
Matthew Borkowski
d7bf4f8070
fix Boyer-Moore-Horspool algorithm in indexOfPos and lastIndexOf when element type is larger than a byte
2021-05-22 20:51:17 -04:00
Jakub Konka
8c87a981f1
cc,wasi: force isysroot to /
2021-05-22 20:50:06 -04:00
Andrew Kelley
b750e074c6
stage2: rework astgen command into zig ast-check
...
This addresses the use case of quickly reporting AstGen compile errors
for a file, for use with an IDE for example.
* Rename from `zig asgen` to `zig ast-check`
* It is now a command always available; not only in debug builds.
* Give it usage text and proper CLI parsing.
* Support reading from stdin when no positional arg is provided.
* `-t` flag makes it print textual ZIR. Without this flag, it only
provides compile errors.
* Support `--color` parameter to override the tty detection
closes #8871
2021-05-22 17:23:16 -07:00
Andrew Kelley
51701fb2da
stage2: omit printing source lines in compile errors
...
when configured to not use tty awareness
2021-05-22 17:17:32 -07:00
Andrew Kelley
63aabbbba7
Merge pull request #8852 from Snektron/spirv
...
SPIR-V: More codegen
2021-05-22 18:20:20 -04:00
Andrew Kelley
7cd9b30e0a
Merge pull request #7664 from marler8997/fixWindowsPaths
...
implement nt path conversion for windows
2021-05-22 17:58:59 -04:00
Andrew Kelley
79dee75b1c
stage2: rename ir.zig to air.zig
...
We've settled on the nomenclature for the artifacts the compiler
pipeline produces:
1. Tokens
2. AST (Abstract Syntax Tree)
3. ZIR (Zig Intermediate Representation)
4. AIR (Analyzed Intermediate Representation)
5. Machine Code
Renaming `ir` identifiers to `air` will come with the inevitable
air-memory-layout branch that I plan to start after the 0.8.0 release.
2021-05-22 14:29:16 -07:00
Jakub Konka
9d311e9960
Merge pull request #8857 from ziglang/cc-wasm-ar
...
wasm: produce static lib by default and rename produced object files to simply .o from .o.wasm
2021-05-22 16:13:47 +02:00
Jakub Konka
2b0d322ea0
zld: permit system static libs
...
This commits permits passing in static archives using the system
lib flag `-la`. With this commit, `zig ld` will now look firstly for
a dynamic library (which always takes precedence), and will fall back
on `liba.a` if the dylib is not found. The static archive is searched
for in the system lib search dirs like the dylibs.
2021-05-22 16:12:45 +02:00
Robin Voetter
cba97e4773
SPIR-V: Make functions which always return a null result return void instead
2021-05-22 16:11:56 +02:00
Robin Voetter
228f71fa0c
SPIR-V: Generate locals at the start of a function
2021-05-22 16:11:56 +02:00
Robin Voetter
6634abfd26
SPIR-V: Debug line info/source info
2021-05-22 16:11:56 +02:00
Robin Voetter
e3be1a1e88
SPIR-V: DeclGen constructor/destructor
2021-05-22 16:11:56 +02:00
Robin Voetter
46184ab85e
SPIR-V: branching
2021-05-22 16:11:56 +02:00
Robin Voetter
5edc5f9730
SPIR-V: Pass source location to genType and genConstant for better error reporting
2021-05-22 16:11:56 +02:00
Robin Voetter
63d0576f1c
SPIR-V: Preliminary alloc/store/load generation
2021-05-22 16:11:56 +02:00
Robin Voetter
6a121d9ccd
SPIR-V: Split out genCmp from genBinOp
2021-05-22 16:11:56 +02:00
Robin Voetter
b8444d2c51
SPIR-V: Preliminary integer constant encoding
2021-05-22 16:11:56 +02:00
Robin Voetter
c190b2ff83
SPIR-V: ResultId and Word aliases to improve code clarity
2021-05-22 16:11:56 +02:00
Robin Voetter
9ddd7f4a60
SPIR-V: Put types in SPIRVModule, some general restructuring
2021-05-22 16:11:56 +02:00
Robin Voetter
bcda3c5b82
SPIR-V: Use Value.toFloat instead of switching on value tag when generating float constants
2021-05-22 16:11:56 +02:00
Matthew Borkowski
f4101c1153
fix accidental quadratic dependence on haystack length in replace and replacementSize ( #8859 )
2021-05-22 10:55:28 +02:00
Jakub Konka
bd325d1bd9
wasm: fix object extension to standard .o from .o.wasm
...
This should offer more compatibility with external tooling when
cross-compiling to wasm with zig.
2021-05-21 22:29:36 +02:00
Jakub Konka
fbd96907c9
wasm: build static archive unless -dynamic specified
...
This matches the behaviour for other targets in that
```
zig build-lib math.zig -target wasm32-freestanding
```
produces now `libmath.a` while
```
zig build-lib math.zig -dynamic -target wasm32-freestanding
```
is required to create a loadable Wasm module.
2021-05-21 20:24:13 +02:00
Jonathan Marler
b0116afd8a
handle relative paths with too many ".."
2021-05-21 01:29:40 -06:00
Jakub Konka
4b69bd61e4
Merge pull request #8837 from ziglang/cc-wasm32-wasi
...
cc,wasi: ship WASI libc and autobuild it when needed
2021-05-21 09:04:16 +02:00
Andrew Kelley
0267abfe9b
Merge pull request #8847 from Luukdegram/wasm-struct-switch
...
stage2: wasm - Structs and switch support
2021-05-20 18:55:49 -04:00
mason1920
884547f177
Const correct GUID parameter of getInfo and setInfo
2021-05-20 18:53:59 -04:00
Andrew Kelley
495e996169
Merge pull request #8776 from notviri/windows-wm-constants
...
fix & add some Win32 window message constants
2021-05-20 18:51:45 -04:00
Matthew Borkowski
510f858143
fix calculation of max_io_bits in PackedIntIo
2021-05-20 18:47:16 -04:00
Andrew Kelley
3845c264a6
stage2: fix compile error rendering for hard tabs
...
render them as 1 space instead. This fixes the column caret.
2021-05-20 15:20:27 -07:00
Jonathan Marler
59de5d0350
add the openDir cwd parent test
2021-05-20 14:00:41 -06:00
Jonathan Marler
a72ad61cd4
have collapseRepeats return slice intead of just len
2021-05-20 14:00:41 -06:00
Jonathan Marler
666584067a
implement nt path conversion for windows
2021-05-20 14:00:40 -06:00
Isaac Freund
563ea60a86
translate-c: use inline keyword instead of callconv(.Inline)
2021-05-20 21:59:46 +02:00