Expand some cflag definitions in build.sh and add Minix
This commit is contained in:
		
							parent
							
								
									71098dd01b
								
							
						
					
					
						commit
						1f3a4798e1
					
				|  | @ -8,6 +8,7 @@ os="$(uname | tr A-Z- a-z_)" | ||||||
| case "$os" in | case "$os" in | ||||||
| darwin) | darwin) | ||||||
|     default_cc="clang" |     default_cc="clang" | ||||||
|  |     default_cflags="-Wall -Wextra -Wno-strict-aliasing -O2 -falign-functions -std=gnu99" | ||||||
|     ;; |     ;; | ||||||
| dragonfly) | dragonfly) | ||||||
|     default_cc="gcc" |     default_cc="gcc" | ||||||
|  | @ -17,16 +18,22 @@ freebsd) | ||||||
|     ;; |     ;; | ||||||
| haiku) | haiku) | ||||||
|     default_cc="gcc" |     default_cc="gcc" | ||||||
|  |     default_cflags="-Wall" | ||||||
|     ;; |     ;; | ||||||
| linux) | linux) | ||||||
|     default_cc="gcc" |     default_cc="gcc" | ||||||
|     CFLAGS="$CFLAGS -D _GNU_SOURCE" |     default_cflags="-std=gnu99 -Wall -Wextra -Wno-strict-aliasing -D _GNU_SOURCE" | ||||||
|  |     ;; | ||||||
|  | minix) | ||||||
|  |     default_cc="clang" | ||||||
|  |     default_cflags="-std=gnu99 -Wall -Wextra -Wno-strict-aliasing" | ||||||
|     ;; |     ;; | ||||||
| netbsd) | netbsd) | ||||||
|     default_cc="gcc" |     default_cc="gcc" | ||||||
|     ;; |     ;; | ||||||
| openbsd) | openbsd) | ||||||
|     default_cc="clang" |     default_cc="clang" | ||||||
|  |     default_cflags="-Wall" | ||||||
|     ;; |     ;; | ||||||
| sunos) | sunos) | ||||||
|     default_cc="gcc" |     default_cc="gcc" | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue