Skip to content

Commit

Permalink
fix: changed include path order
Browse files Browse the repository at this point in the history
  • Loading branch information
Notselwyn committed Sep 11, 2024
1 parent af609ba commit 13106b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CC = musl-gcc
# - ./include/linux-lts-6.1.72: linux v6.1.72
#CFLAGS = -I./include -I./include/linux-lts-6.1.72 -Wall -Wno-deprecated-declarations
#CFLAGS = -Wall -Wno-deprecated-declarations
CFLAGS = -I/usr/include -I./include/linux-lts-6.1.72 -Wall -Wno-deprecated-declarations
CFLAGS = -I./include/linux-lts-6.1.72 -I/usr/include -Wall -Wno-deprecated-declarations

# use custom object archives compiled with musl-gcc for compatibility. normal ones
# are used with gcc and have _chk funcs which musl doesn't support
Expand Down

0 comments on commit 13106b9

Please sign in to comment.