Browse Source

Remove `-march=native` from stb/src/Makefile

gingerBill 4 years ago
parent
commit
2e21312059
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/stb/src/Makefile

+ 1 - 1
vendor/stb/src/Makefile

@@ -1,6 +1,6 @@
 all:
 all:
 	mkdir -p ../lib
 	mkdir -p ../lib
-	gcc -c -O2 -march=native -Os -fPIC stb_image.c stb_image_write.c stb_image_resize.c stb_truetype.c stb_rect_pack.c stb_vorbis.c
+	gcc -c -O2 -Os -fPIC stb_image.c stb_image_write.c stb_image_resize.c stb_truetype.c stb_rect_pack.c stb_vorbis.c
 	ar rcs ../lib/stb_image.a        stb_image.o
 	ar rcs ../lib/stb_image.a        stb_image.o
 	ar rcs ../lib/stb_image_write.a  stb_image_write.o
 	ar rcs ../lib/stb_image_write.a  stb_image_write.o
 	ar rcs ../lib/stb_image_resize.a stb_image_resize.o
 	ar rcs ../lib/stb_image_resize.a stb_image_resize.o