| settings.mk (530c8301) | settings.mk (3187fb04) |
|---|---|
| 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 383 unchanged lines hidden (view full) --- 392 393ifeq "$(PROCTYPE)" "x86_64" 394UNOPKG_PLATFORM=MacOSX_x86_64 395endif 396 397JAVABIN=Commands 398 399GCC_ARCH_OPTION=-arch x86_64 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 383 unchanged lines hidden (view full) --- 392 393ifeq "$(PROCTYPE)" "x86_64" 394UNOPKG_PLATFORM=MacOSX_x86_64 395endif 396 397JAVABIN=Commands 398 399GCC_ARCH_OPTION=-arch x86_64 |
| 400CLANG_CXX_VERSIONING=-std=c++11 -stdlib=libc++ |
|
| 400 401OS=MACOSX 402PS=/ 403ICL=\$$ | 401 402OS=MACOSX 403PS=/ 404ICL=\$$ |
| 404CC=`xcrun -f clang` -arch x86_64 405CXX=`xcrun -f clang++` -arch x86_64 -std=c++11 -stdlib=libc++ 406LINK=`xcrun -f clang++` -arch x86_64 -std=c++11 -stdlib=libc++ 407LIB=`xcrun -f clang++` -arch x86_64 -std=c++11 -stdlib=libc++ | 405CC=`xcrun -f clang` $(GCC_ARCH_OPTION) 406CXX=`xcrun -f clang++` $(GCC_ARCH_OPTION) $(CLANG_CXX_VERSIONING) 407LINK=`xcrun -f clang++` $(GCC_ARCH_OPTION) $(CLANG_CXX_VERSIONING) 408LIB=`xcrun -f clang++` $(GCC_ARCH_OPTION) $(CLANG_CXX_VERSIONING) |
| 408INSTALLTOOL=`xcrun -f install_name_tool` 409 410ECHO=@echo 411MKDIR=mkdir -p 412CAT=cat 413OBJ_EXT=o 414SHAREDLIB_EXT=dylib 415SHAREDLIB_PRE=lib --- 203 unchanged lines hidden --- | 409INSTALLTOOL=`xcrun -f install_name_tool` 410 411ECHO=@echo 412MKDIR=mkdir -p 413CAT=cat 414OBJ_EXT=o 415SHAREDLIB_EXT=dylib 416SHAREDLIB_PRE=lib --- 203 unchanged lines hidden --- |