From: Brendan Hansen Date: Wed, 8 Dec 2021 04:08:48 +0000 (-0600) Subject: finalized fixing linux build scripts X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=b4fe411aa506cc88085738c5126f5ddee3556370;p=onyx.git finalized fixing linux build scripts --- diff --git a/modules/glfw3/build.sh b/modules/glfw3/build.sh index 2b09837a..63a924f3 100755 --- a/modules/glfw3/build.sh +++ b/modules/glfw3/build.sh @@ -1,4 +1,4 @@ #!/bin/sh # To be run from the project root -gcc -O2 -shared -fPIC ./modules/glfw3/onyx_glfw3.c -I include -I lib/linux_x86_64/include -lglfw -o modules/glfw3/onyx_glfw3.so \ No newline at end of file +gcc -O2 -shared -fPIC ./modules/glfw3/onyx_glfw3.c -I include -I lib/common/include -lglfw -o modules/glfw3/onyx_glfw3.so \ No newline at end of file diff --git a/modules/glfw3/onyx_glfw3.so b/modules/glfw3/onyx_glfw3.so index 198eca1f..8b87e8c1 100755 Binary files a/modules/glfw3/onyx_glfw3.so and b/modules/glfw3/onyx_glfw3.so differ diff --git a/modules/opengles/build.sh b/modules/opengles/build.sh index 84206dd7..91be60c0 100755 --- a/modules/opengles/build.sh +++ b/modules/opengles/build.sh @@ -1,3 +1,3 @@ #!/bin/sh -gcc -shared -fPIC modules/opengles/onyx_opengles.c -I include -I lib/linux_x86_64/include -o ./modules/opengles/onyx_opengles.so -lGL \ No newline at end of file +gcc -shared -fPIC modules/opengles/onyx_opengles.c -I include -I lib/common/include -o ./modules/opengles/onyx_opengles.so -lGL \ No newline at end of file diff --git a/modules/opengles/onyx_opengles.so b/modules/opengles/onyx_opengles.so index 34c89d6c..b16665b8 100755 Binary files a/modules/opengles/onyx_opengles.so and b/modules/opengles/onyx_opengles.so differ