mirror of
https://github.com/BertoldVdb/ZoneDetect.git
synced 2026-04-27 14:57:40 +00:00
Allow specifying external CC
This commit is contained in:
parent
93161ccc52
commit
f119f4279d
1 changed files with 3 additions and 3 deletions
|
|
@ -24,9 +24,9 @@
|
|||
#SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
CCARCH=
|
||||
CC=$(CCARCH)gcc
|
||||
STRIP=$(CCARCH)strip
|
||||
CCARCH?=
|
||||
CC?=$(CCARCH)gcc
|
||||
STRIP?=$(CCARCH)strip
|
||||
|
||||
CFLAGS=-fPIC -O3 -std=gnu99 -pedantic -Wall -Wextra -Wconversion -Werror -c -fmessage-length=0 -ffunction-sections -fdata-sections
|
||||
LDFLAGS=-shared
|
||||
|
|
|
|||
Loading…
Reference in a new issue