File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 "name" : " Debug with Meson" ,
66 "type" : " cppdbg" ,
77 "request" : " launch" ,
8- "program" : " ${workspaceFolder}/build/Galaxy_Visualization_Linux_v0.5.2 " ,
8+ "program" : " ${workspaceFolder}/build/Galaxy_Visualization_Linux_v0.5.3 " ,
99 "args" : [],
1010 "stopAtEntry" : false ,
1111 "cwd" : " ${workspaceFolder}" ,
Original file line number Diff line number Diff line change @@ -137,8 +137,6 @@ Or using build.sh:
137137| Embedded (` --embed ` or ` -Dembed_assets=true ` ) | All assets compressed into binary | ~ 6 MB |
138138| Static raylib (` --static ` or ` -Draylib_static=true ` ) | raylib linked statically, system libs dynamic | Varies |
139139
140- Notes:
141- - Windows cross-builds avoid ` -march=native ` to maximize compatibility (e.g., Wine).
142140
143141The embedded binary includes:
144142- Fonts, shaders, and 3D models
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ for arg in "$@"; do
4747done
4848
4949CC=clang
50- CFLAGS=" -std=c99 -O3 -march=native - Wall -Wextra -Werror -Wpedantic"
50+ CFLAGS=" -std=c99 -O3 -Wall -Wextra -Werror -Wpedantic"
5151LDLIBS=" -lm"
5252
5353APP_VERSION=$( sed -nE " s/.*version[[:space:]]*:[[:space:]]*'([^']+)'.*/\1/p" meson.build | head -n 1)
Original file line number Diff line number Diff line change 11project (' galaxy_visualization_raylib' , ' c' ,
2- version : ' 0.5.2 ' ,
2+ version : ' 0.5.3 ' ,
33 default_options : [
44 ' c_std=c99' ,
55
@@ -34,10 +34,6 @@ embed_assets = get_option('embed_assets')
3434extra_c_args = [' -DAPP_VERSION="' + meson .project_version() + ' "' ]
3535platform_c_args = []
3636
37- if host_machine .system() != ' windows'
38- platform_c_args += [' -march=native' ]
39- endif
40-
4137extra_c_args += [' -Werror' ]
4238
4339if host_machine .system() == ' windows'
You can’t perform that action at this time.
0 commit comments