Skip to content

Commit

Permalink
Add linux-gcc to project name.
Browse files Browse the repository at this point in the history
  • Loading branch information
bkaradzic committed Oct 26, 2024
1 parent 6e87e04 commit d3d934c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/toolchain.lua
Original file line number Diff line number Diff line change
Expand Up @@ -290,13 +290,13 @@ function toolchain(_buildDir, _libDir)
location (path.join(_buildDir, "projects", _ACTION .. "-tvos-simulator"))

elseif "linux-gcc" == _OPTIONS["gcc"] then
location (path.join(_buildDir, "projects", _ACTION .. "-linux"))
location (path.join(_buildDir, "projects", _ACTION .. "-linux-gcc"))

elseif "linux-gcc-afl" == _OPTIONS["gcc"] then
premake.gcc.cc = "afl-gcc"
premake.gcc.cxx = "afl-g++"
premake.gcc.ar = "ar"
location (path.join(_buildDir, "projects", _ACTION .. "-linux"))
location (path.join(_buildDir, "projects", _ACTION .. "-linux-gcc"))

elseif "linux-clang" == _OPTIONS["gcc"] then
premake.gcc.cc = "clang"
Expand Down

0 comments on commit d3d934c

Please sign in to comment.