aboutsummaryrefslogtreecommitdiff
path: root/std/dynamic_library.zig
AgeCommit message (Collapse)Author
2019-09-25mv std/ lib/Andrew Kelley
that's all this commit does. further commits will fix cli flags and such. see #2221
2019-05-30update load dynamic library test for std lib changesAndrew Kelley
2019-05-29LinuxDynLib: remove MAP_LOCKED flagNBonaparte
2019-05-28updated dynamic libraries to new stdemekoi
2019-05-28remove unneed allocator from DynLibemekoi
2019-05-26tests passing on linuxAndrew Kelley
2019-05-26clean up references to osAndrew Kelley
2019-05-26starting to fix the regressionsAndrew Kelley
2019-05-26do Jay's suggestion with posix/os API naming & layoutAndrew Kelley
2019-05-26more progress. moving windows API layer to its own fileAndrew Kelley
2019-05-12zig fmt on the standard libraryAndrew Kelley
2019-05-05ReviewLemonBoy
2019-04-24OtherLemonBoy
2019-03-02rename std lib files to new conventionAndrew Kelley
2019-02-08std.debug.assert: remove special case for test buildsAndrew Kelley
Previously, std.debug.assert would `@panic` in test builds, if the assertion failed. Now, it's always `unreachable`. This makes release mode test builds more accurately test the actual code that will be run. However this requires tests to call `std.testing.expect` rather than `std.debug.assert` to make sure output is correct. Here is the explanation of when to use either one, copied from the assert doc comments: Inside a test block, it is best to use the `std.testing` module rather than assert, because assert may not detect a test failure in ReleaseFast and ReleaseSafe mode. Outside of a test block, assert is the correct function to use. closes #1304
2018-12-20Removed allocator from Linux version DynLib. Added dynamic_library.zig to ↵tgschultz
std test list.
2018-11-13New Zig formal grammar (#1685)Jimmi Holst Christensen
Reverted #1628 and changed the grammar+parser of the language to not allow certain expr where types are expected
2018-10-26remove @minValue,@maxValue; add std.math.minInt,maxIntAndrew Kelley
closes #1466 closes #1476
2018-10-15Solve the return type ambiguity (#1628)Jimmi Holst Christensen
Changed container and initializer syntax * <container> { ... } -> <container> . { ... } * <exrp> { ... } -> <expr> . { ...}
2018-09-30merged windows dll apisemekoi
2018-09-30added dynamic library loading for windowsemekoi
2018-06-18update std.DynLib to use @intCastAndrew Kelley
2018-06-16std.DynLib: open the fd with CLOEXECAndrew Kelley
2018-06-16add basic std lib code for loading dynamic librariesAndrew Kelley
this is going to only work for very basic libraries; I plan to slowly add more features over time to support more complicated libraries