Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akneni committed Jan 15, 2025
1 parent bb285a4 commit 866a6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build_sys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub fn link_sys_lib(path: &Path) -> Vec<String> {
("<GL/gl.h>", "-lGL"), // OpenGL library
("<GL/glut.h>", "-lglut"), // GLUT library for OpenGL
("<X11/Xlib.h>", "-lX11"), // X11 library for X Window System
("<immintrin.h>", "-mavx"), // AVX instructions
("<immintrin.h>", "-march=native"), // AVX instructions
("<liburing.h>", "-luring"), // liburing library for asynchronous I/O
("<arm_neon.h>", "-mfpu=neon"), // NEON support for ARM
];
Expand Down

0 comments on commit 866a6f4

Please sign in to comment.