You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a lot of error for #include "version" like
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/cstddef:41:
./version:1:1: error: expected unqualified-id
1.1.0
it should occur that is not distinguish VERSION and version in fjcontrib during make
I fixed temporary to change the file of VERSION to VERSION.txt like
# FastJet Contrib
pushd fjcontrib
find . -type f -name 'VERSION' -exec mv {} {}.txt \;
sed -i '' 's/VERSION/VERSION.txt/g' configure
sed -i '' 's/VERSION/VERSION.txt/g' ./scripts/internal/generate-html-contents.pl
sed -i '' 's/VERSION/VERSION.txt/g' ./scripts/internal/release-fjcontrib.sh
sed -i '' 's/VERSION/VERSION.txt/g' ./scripts/internal/package.sh
sed -i '' 's/VERSION/VERSION.txt/g' ./scripts/release-contrib.sh
./configure --fastjet-config=$INSTALLROOT/bin/fastjet-config \
CXXFLAGS="$CXXFLAGS" \
CFLAGS="$CFLAGS" \
CPATH="$CPATH" \
C_INCLUDE_PATH="$C_INCLUDE_PATH"
make ${JOBS:+-j$JOBS}
make install
make fragile-shared ${JOBS:+-j$JOBS}
make fragile-shared-install
popd
If it is not temporary problem, it should be fixed.
The text was updated successfully, but these errors were encountered:
I get a lot of error for #include "version" like
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/cstddef:41:
./version:1:1: error: expected unqualified-id
1.1.0
it should occur that is not distinguish VERSION and version in fjcontrib during make
I fixed temporary to change the file of VERSION to VERSION.txt like
If it is not temporary problem, it should be fixed.
The text was updated successfully, but these errors were encountered: