Commit 580cdf42669cd8196b50fead0067c097392fbd4e
1 parent
3f5d88ec
Exists in
master
and in
91 other branches
Priority to /opt local dir for tools compilation (related to #8131)
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
php/src/Makefile
1 | -INC = -I/usr/include -I/usr/local/include -I${COTS_BASE_DIR}/include -I${COTS_BASE_DIR}/include/DDClientLibC | |
2 | -LIB = -L/usr/lib64 -L/usr/local/lib64 -L${COTS_BASE_DIR}/lib | |
1 | +INC = -I${COTS_BASE_DIR}/include -I${COTS_BASE_DIR}/include/DDClientLibC -I/usr/include -I/usr/local/include | |
2 | +LIB = -L${COTS_BASE_DIR}/lib -L/usr/lib64 -L/usr/local/lib64 | |
3 | 3 | CFLAGS = -ggdb -DLINUX -m64 -march=core2 -fPIC -Dlinux -D_REENTRANT -malign-double |
4 | 4 | CC = gcc |
5 | 5 | ... | ... |