-
-
Notifications
You must be signed in to change notification settings - Fork 87
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
Reduce binary sizes #733
Comments
i was tried use "goki build -v -t windows/amd64" or "go build ." |
The binaries are definitely too big, and we will work on reducing binary sizes soon. |
In the meantime, simply compressing the binaries (eg: |
Though you do have to uncompress them on the target system, it can help when deploying them. |
okay,thx you. |
I have cut binary sizes in half in the current version of gi in development by reducing dependencies and cleaning up code. You will not see these changes until I do a release cycle, which will not happen for a few days due to other ongoing changes. I will keep this issue open because there are still many more changes I want to make to further reduce binary sizes. |
OKay,but i found the gide's code need update with this change. |
I fixed the error in gide. |
After this period of submission, the Android program starts with a black screen or no controls, and the test is files or task manager repository |
I am aware of this issue and am working to resolve it as soon as possible. |
I fixed the Android app issue in the latest version of gi ( |
Also, I figured out a way to get rid of gimain, so you can remove the |
cool for you, i will try all. |
The test found that the two-finger operation DPI scaling did not return to normal |
I am aware of that and planning to fix it soon. |
I want to keep this open because there are still some binary size issues that I need to resolve. |
okay |
The basic Cogent Core hello example is around twice as big, which is because Cogent Core comes with many more features and widgets. As I stated above, we are continuing to work on reducing binary sizes, and we should end up relatively close to gio's size after we make more optimizations soon. |
I made further optimizations that reduce the binary size of the basic example by 1.5 MB, and I will continue to work on reducing binary sizes further. |
I found a detached cgo implementation with a small compilation speed and binary size, and I saw if there was anything to learn, |
![]() |
I don't think the cgo is the main issue, although we may try https://github.com/ebitengine/purego at some point to make cross-compilation easier. The main remaining binary size issues I am aware of and planning to fix are the enumgens, fonts, and icons, which together make up a sizable percentage of the remaining binary size. I will also work on further reducing dependencies if possible. |
ok
…---Original---
From: ***@***.***>
Date: Mon, Feb 26, 2024 00:40 AM
To: ***@***.***>;
Cc: ***@***.***>;"State ***@***.***>;
Subject: Re: [cogentcore/core] Reduce binary sizes (Issue #733)
I don't think the cgo is the main issue, although we may try https://github.com/ebitengine/purego at some point to make cross-compilation easier. The main remaining binary size issues I am aware of and planning to fix are the enumgens, fonts, and icons, which together make up a sizable percentage of the remaining binary size. I will also work on further reducing dependencies if possible.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you modified the open/close state.Message ID: ***@***.***>
|
Yep, upx is definitely an effective way to reduce binary sizes, although at some cost. I am considering potential further icon and spelling optimizations to reduce binary sizes more, and I am also planning to work on reducing the size of some of the core code. |
Also, if #974 is successful, that should drastically reduce web binary sizes. |
I restructured the way instance variables work in typegen such that widgets are now only compiled into the app if they are used, which generally reduces binary sizes by several hundred kilobytes (the demo was reduced by 663.8 kb) (see b1b3f62). Also, binary sizes are currently temporarily inflated due to large spelling files being embedded into apps, which we are going to fix soon with #711. |
We improved the storage of the spelling file in #1001, which reduced binary sizes by 14.0 MB for apps that use text editors! I am also working on icon changes that will reduce binary sizes by 1-2 MB for all apps. |
I finished the new icon changes in #1003, which reduce binary sizes by 1.6 MB to 2.1 MB depending on the app. |
With those changes complete, binary sizes have been reduced significantly. The main remaining ways to reduce binary sizes are supporting tinygo, removing/optimizing embedded fonts, and cleaning up complex widgets (text fields, text editors, lists, tables, trees, file trees, etc). |
How about moving Yaegi Core to an external repository, outside cogentcore/core? I'm not sure how Go handles dependency, but Yaegi is (relatively) large. |
Thank you for the suggestion, but dependencies that you do not import have no effect on binary size. If you do not import |
@kkoreilly is this still relevant issue? i see that we are already able to exclude "debug" symbols via corresponding build param introduced there 01cce52 or just use explicitly go build -ldflags="-s -w" ... also if someone wants to then it is possible to use tools like it is always possible to open a new issue in case of more specific trouble. |
@AnyCPU Thank you for the suggestion, I will close this. I filed #1473 for the main clear remaining issue. #974 should also help a lot, but that is a separate issue. #1457 may allow us to render text using the HTML canvas API, which would also substantially reduce binary sizes on web, in addition to major performance issues. Given that everything is tracked by separate issues, I will close this. |
How to optimize the files built on the Windows platform if they are too large?
![1703995032447.png](https://github.com/goki/gi/assets/19886504/e3daf64c-d545-4d9a-bd0a-0dcaa99fe768)
The text was updated successfully, but these errors were encountered: