mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-07 17:29:36 +00:00
fix createallprojects
This commit is contained in:
Vendored
+4
@@ -7,7 +7,11 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
#ifdef LINUX
|
||||
#include <linux/sysctl.h>
|
||||
#else
|
||||
#include <sys/sysctl.h>
|
||||
#endif
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
#include <tier0/platform.h>
|
||||
|
||||
Vendored
+4
-4
@@ -30,11 +30,11 @@ endif
|
||||
|
||||
ifeq ($(OS),Linux)
|
||||
ifeq ($(wildcard /valve/bin/gcc),)
|
||||
CC:=gcc
|
||||
CXX:=g++
|
||||
CC:=gcc -m32
|
||||
CXX:=g++ -m32
|
||||
else
|
||||
CC:=/valve/bin/gcc-4.7
|
||||
CXX:=/valve/bin/g++-4.7
|
||||
CC:=/valve/bin/gcc-4.7 -m32
|
||||
CXX:=/valve/bin/g++-4.7 -m32
|
||||
endif
|
||||
EXE_POSTFIX:=_linux
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user