[WIP] Clang/macOS fixes (#8412)
* build fix for clang Signed-off-by: raver119@gmail.com <raver119@gmail.com> * [WIP] clang for jcpp (#53) * clang as compiler for jcpp Signed-off-by: raver119@gmail.com <raver119@gmail.com> * we don't need macos profile Signed-off-by: raver119 <raver119@gmail.com>master
parent
da4bf0209b
commit
29990b1214
|
@ -482,7 +482,7 @@ namespace nd4j {
|
|||
|
||||
void Context::setBArguments(const std::vector<bool> &bArgs) {
|
||||
for (auto b:bArgs)
|
||||
_bArgs.emplace_back(b);
|
||||
_bArgs.push_back(b);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -284,50 +284,6 @@
|
|||
<javacpp.platform.extension>-avx512</javacpp.platform.extension>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>macosx-gcc8</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>/usr/local/bin/g++-8</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<properties>
|
||||
<javacpp.platform.compiler>/usr/local/bin/g++-8</javacpp.platform.compiler>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>macosx-gcc7</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>/usr/local/bin/g++-7</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<properties>
|
||||
<javacpp.platform.compiler>/usr/local/bin/g++-7</javacpp.platform.compiler>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>macosx-gcc6</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>/usr/local/bin/g++-6</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<properties>
|
||||
<javacpp.platform.compiler>/usr/local/bin/g++-6</javacpp.platform.compiler>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>macosx-gcc5</id>
|
||||
<activation>
|
||||
<file>
|
||||
<exists>/usr/local/bin/g++-5</exists>
|
||||
</file>
|
||||
</activation>
|
||||
<properties>
|
||||
<javacpp.platform.compiler>/usr/local/bin/g++-5</javacpp.platform.compiler>
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>mingw</id>
|
||||
<activation>
|
||||
|
|
Loading…
Reference in New Issue