Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracking Issue: Priorities of Real World Zig Users #17144

Open
1 of 2 tasks
andrewrk opened this issue Sep 13, 2023 · 18 comments
Open
1 of 2 tasks

Tracking Issue: Priorities of Real World Zig Users #17144

andrewrk opened this issue Sep 13, 2023 · 18 comments
Labels
use case Describes a real use case that is difficult or impossible, but does not propose a solution.
Milestone

Comments

@andrewrk
Copy link
Member

andrewrk commented Sep 13, 2023

This issue is a reminder to go look at Third Party Tracking Issues (what is important to other people?) and browse through third party tracking issues to learn what things are affecting real world users of Zig. That link is on the Zig wiki and is freely editable. Please feel free to add your projects to the list there and share your troubles.


Additionally, I will list some actionable issues that are already in the Zig issue tracker:

@andrewrk andrewrk added the use case Describes a real use case that is difficult or impossible, but does not propose a solution. label Sep 13, 2023
@andrewrk andrewrk added this to the 0.12.0 milestone Sep 13, 2023
@andrewrk andrewrk pinned this issue Sep 13, 2023
@jcollie
Copy link

jcollie commented Sep 14, 2023

There needs to be more examples in the documentation, especially in the standard library reference. Sure, there's lots of Zig code out there to look at, but it's typically in larger Zig projects and those can be hard to digest, especially for someone new to the language.

@He-Pin
Copy link

He-Pin commented Sep 14, 2023

Can we use it with Clion?

@xdBronch
Copy link
Contributor

Can we use it with Clion?

you can with zigbrains but note that its still just using zls behind the scenes, theres not yet a fully custom plugin built for jetbrains.

@xdBronch
Copy link
Contributor

There needs to be more examples in the documentation, especially in the standard library reference

there is quite a large number of stdlib examples in the form of tests but theyre hard to find and arent presented very well. i think this will be largely improved once doctests are utilized more, you can see what they look like a lot in parts of std.json at the bottom of the page.

@Jarred-Sumner
Copy link
Contributor

Added one for Bun - oven-sh/bun#5611

@mikdusan mikdusan unpinned this issue Sep 20, 2023
@andrewrk andrewrk pinned this issue Sep 22, 2023
@godalming123
Copy link

godalming123 commented Sep 25, 2023

  1. Please improve compilation speed
  2. Add a guide in the docs for converting c code into zig code I wanted to convert a medium sized c project using meson to zig and found that:
    • I did not know how to convert c #ifdef statements into zig, I also needed to know how to define these in a zig build file (previously if a dependency was met the meson.build would define HAVE_XYZ which would enable an extra feature that requires the dependency in the code if this was the case)
    • The guide should include how to take your zig build file that you've created by hand and run a command to see what options you should pass to translate-c to get everything to work
  3. Hot code reloading, this is a really cool feature, but only becomes valuable if number 1 is implemented. It would also have to work with c libraries that are being used

@xdBronch
Copy link
Contributor

xdBronch commented Sep 25, 2023

(1) is well on its way, the x86 backend is nearly ready for use and it alone can give a ~5x compilation speedup compared to the llvm backend. there is also work being done to add incremental compilation which i imagine will be an even bigger improvement along with some other things.
(2) is likely something that will just have to be done by the community at some point, not all ideas translate 1-1 and the core team is busy working on the compiler, not documentation.
(3) is also a WIP, there have even been a couple proof-of-concepts of it

@expikr
Copy link
Contributor

expikr commented Oct 12, 2023

https://github.com/gabdube/native-windows-gui/

A project like this for Zig would be great, the thinnest possible wrapper over winapi syscalls merely to make it idiomatic for Zig.

@jcollie
Copy link

jcollie commented Oct 12, 2023

https://github.com/gabdube/native-windows-gui/

A project like this for Zig would be great, the thinnest possible wrapper over winapi syscalls merely to make it idiomatic for Zig.

Check out zigwin32:

https://github.com/marlersoft/zigwin32
https://www.youtube.com/watch?v=HsnWZxrf5VE

@expikr
Copy link
Contributor

expikr commented Oct 12, 2023

Check out zigwin32:

https://github.com/marlersoft/zigwin32 https://www.youtube.com/watch?v=HsnWZxrf5VE

That's autogenerated though, not quite "adapting it to be idiomatic zig", and much larger in scope than making just the GUI subset zigernomic to use.

Whereas only focusing on the native Windows controls consists of just the following elements and their respective styles/messages/notifications:

const WC_ANIMATE = "SysAnimate32";
const WC_BUTTON = "Button";
const WC_COMBOBOX = "ComboBox";
const WC_COMBOBOXEX = "ComboBoxEx32";
const WC_DATETIMEPICK = "SysDateTimePick32";
const WC_EDIT = "Edit";
const WC_HEADER = "SysHeader32";
const WC_HOTKEY = "msctls_hotkey32";
const WC_IPADDRESS = "SysIPAddress32";       // obscure
const WC_LINK = "SysLink";
const WC_LISTBOX = "ListBox";
const WC_LISTVIEW = "SysListView32";
const WC_MONTHCAL = "SysMonthCal32";
const WC_NATIVEFONTCTL = "NativeFontCtl";
const WC_PAGESCROLLER = "SysPager";          // obscure
const WC_PROGRESS = "msctls_progress32";
const WC_REBAR = "ReBarWindow32";            // obscure
const WC_SCROLLBAR = "ScrollBar";
const WC_STATIC = "Static";
const WC_STATUSBAR = "msctls_statusbar32";
const WC_TABCONTROL = "SysTabControl32";
const WC_TOOLBAR = "ToolbarWindow32";
const WC_TOOLTIPS = "tooltips_class32";
const WC_TRACKBAR = "msctls_trackbar32";
const WC_TREEVIEW = "SysTreeView32";
const WC_UPDOWN = "msctls_updown32";

@mikdusan mikdusan unpinned this issue Nov 12, 2023
@mikdusan mikdusan pinned this issue Nov 12, 2023
@nullptr-deref
Copy link

I agree with @jcollie and also wish there was much more detailed standard library documentation.
Also, the overall build process isn't that transparent and there're loads of functionality lacking any detailed description.

@sergeypdev
Copy link

Hey, sorry if this is the wrong place to ask about this, feel free to ignore if it's out of place.

It would be nice to have a feature in Zig PM to use a subfolder of a tarball/git repo as the dependency root.

Main use case: depend on a subproject inside of a monorepo. For example: https://github.com/zig-gamedev/zig-gamedev

Right now to depend on a project from a monorepo like this, the maintainer has to figure out how to publish each package separately. That can be done using github releases and some automation, but if were to be solved on the Zig side it would ease adoption of third party code that's not necessarily well structured to be consumed by the package manager.

@HTGAzureX1212
Copy link

theres not yet a fully custom plugin built for jetbrains

@xdBronch Me and another developer are currently working on a full-blown IntelliJ-based IDE for Zig: https://github.com/ZigIDE/ZigZen.
While we do have some completion, documentation, project creation and syntax highlighting implemented, it is still at a development stage.

@JensvandeWiel
Copy link

theres not yet a fully custom plugin built for jetbrains

@xdBronch Me and another developer are currently working on a full-blown IntelliJ-based IDE for Zig: https://github.com/ZigIDE/ZigZen. While we do have some completion, documentation, project creation and syntax highlighting implemented, it is still at a development stage.

This is cool though i must say zigbrains has come far since then and is quite useable

@justin330
Copy link

To add to @jcollie has suggested, docs should include the command line equivalent of steps in the build file.
Creating modules for example:

	const module = b.createModule(.{
		.source_file = .{ .path = "src/core.zig"},
		.dependencies = &.{},
	});
	...
	exe.addModule("core", module);

Is equivalent to:

	zig run --deps "core" --mod core::"src/core.zig" ...

@ben-laird
Copy link

I have two main improvements I'd like to see when working with Zig:

  1. More precise standard library panics. Something like error: Unexpected when building can be very confusing, especially for a low-level language still in development that uses a cache for compilation: is the problem in the language, in my code, or in the cache? What even is the problem?
  2. More emphasis on C/C++ interop. I've primarily used Zig as a C/C++ compiler for my undergrad C++ course, and I had to look up many guides to do so.

Zig as a language has been very beginner-friendly; Zig has given me arguably the smoothest introduction to low-level development out of all the languages I've tried. That said, I agree with others in this issue who would like a cookbook of sorts for common patterns or didactic examples in Zig. Very happy v0.12 is released, and very excited for the compiler work in v0.13!

@rektide
Copy link

rektide commented Apr 22, 2024

WASI Preview 2 support and Component Model support would be huge for me, allowing me to introduce Zig into existing projects & environments. Being able to interoperate with other webassembly works would in general open a lot of doors.

Going to cite #19581 as a recent issue that helped clarify that Zig right now targets WASI Preview 1, and which briefly discusses Preview 2. Also work on updating wasi-libc!

@jedisct1
Copy link
Contributor

WASI Preview 2 support and Component Model support would be huge for me, allowing me to introduce Zig into existing projects & environments. Being able to interoperate with other webassembly works would in general open a lot of doors.

Going to cite #19581 as a recent issue that helped clarify that Zig right now targets WASI Preview 1, and which briefly discusses Preview 2. Also work on updating wasi-libc!

Zig can already interoperate with other languages targeting WebAssembly. Libraries created by Zig can be linked by anything using LLVM. For example rust-aes-wasm is a Rust library for WebAssembly, but actual implementations are written in Zig.
The wasm-merge tool included in binaryen also works very well to merge multiple wasm modules into one, regardless of the language they have been written in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
use case Describes a real use case that is difficult or impossible, but does not propose a solution.
Projects
None yet
Development

No branches or pull requests

16 participants