Skip to content

Commit 2d0e8a7

Browse files
committed
Use C++11 and default C++ library
1 parent a5ceff6 commit 2d0e8a7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

modules/GHSWorkspaceCreator.pm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,11 @@ sub pre_workspace {
109109
"primaryTarget=$tgt$crlf",
110110
"customization=\${__OS_DIR}\\target\\integrity.bod$crlf",
111111
"[Project]$crlf",
112+
"\t#Trick ACE to proceed with C++11; we're not actually using C++14!$crlf"
112113
"\t-DACE_HAS_CPP14$crlf",
113114
"\t-gcc$crlf",
114-
"\t--c++14$crlf",
115-
"\t--libcxx$crlf",
115+
"\t--c++11$crlf",
116+
#"\t--libcxx$crlf",
116117
"\t:sourceDir=.$crlf",
117118
"\t:optionsFile=\${__OS_DIR}\\target\\\${__BSP_NAME}.opt$crlf",
118119
"\t-I\${ACE_ROOT}$crlf",

0 commit comments

Comments
 (0)