Skip to content
Snippets Groups Projects
Commit 08b96170 authored by Adam Knapp's avatar Adam Knapp
Browse files

Adding makefile template for clang


Signed-off-by: default avatarAdam Knapp <adam.knapp@ericsson.com>
parent 5aa453d1
No related branches found
No related tags found
1 merge request!226Adding makefile template for clang
##############################################################################
# Copyright (c) 2000-2022 Ericsson Telecom AB
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
#
# Contributors:
# Baji, Laszlo
# Balasko, Jeno
# Pilisi, Gergely
#
##############################################################################
# Based on /etc/autotest/titan_builder_cfg.py
# DEBUG can not be changed here
FLEX := /usr/bin/flex
BISON := /usr/bin/bison
COMPILERFLAGS += -Wall -Wlogical-op -I/usr/lib/jvm/default-java/include -I/usr/include
ifeq ($(DEBUG), yes)
#COMPILERFLAGS += -fvar-tracking -O1
else
COMPILERFLAGS += -g
LDFLAGS += -fuse-ld=gold -ldl
endif
CC := clang
CXX := clang++
CXXFLAGS += -std=c++11
OPENSSL_DIR := default
JDKDIR := /usr/lib/jvm/default-java
XMLDIR := default
AR := ar
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment