mirror of
https://github.com/nasa/trick.git
synced 2025-06-21 08:29:39 +00:00
/usr/lib64/llvm/clang/3.4.2 not found
Modified the makefile for ICG to be able to use clang from yum, fink, and manual installs. Removed the requirement for copying the clang friendly header files into Trick. However Trick will be expecting the clang header files to be in it's search path. refs #40
This commit is contained in:
@ -430,7 +430,7 @@ std::ostream & operator << (std::ostream & os , FieldDescription & fdes ) {
|
||||
os << " bitfield_word_offset = " << fdes.bitfield_word_offset << std::endl ;
|
||||
os << " num_dims = " << fdes.num_dims << std::endl ;
|
||||
os << " array_sizes =" ;
|
||||
for( unsigned int ii ; ii < 8 ; ii++ ) {
|
||||
for( unsigned int ii = 0 ; ii < 8 ; ii++ ) {
|
||||
os << " " << fdes.array_sizes[ii] ;
|
||||
}
|
||||
os << std::endl ;
|
||||
|
Reference in New Issue
Block a user