config.log 355 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836
  1. This file contains any messages produced by compilers while
  2. running configure, to aid debugging if configure makes a mistake.
  3. It was created by StarPU configure 1.3.99, which was
  4. generated by GNU Autoconf 2.69. Invocation command line was
  5. $ ../configure --prefix=/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../install --with-fpga=/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install --disable-link-with-riffa --with-hwloc=/home/jusers/makni1/jumax/hwloc-2.0.3/install --disable-mlr --disable-fortran
  6. ## --------- ##
  7. ## Platform. ##
  8. ## --------- ##
  9. hostname = jumaxbuild1
  10. uname -m = x86_64
  11. uname -r = 3.10.0-1062.7.1.el7.x86_64
  12. uname -s = Linux
  13. uname -v = #1 SMP Mon Dec 2 17:33:29 UTC 2019
  14. /usr/bin/uname -p = x86_64
  15. /bin/uname -X = unknown
  16. /bin/arch = x86_64
  17. /usr/bin/arch -k = unknown
  18. /usr/convex/getsysinfo = unknown
  19. /usr/bin/hostinfo = unknown
  20. /bin/machine = unknown
  21. /usr/bin/oslevel = unknown
  22. /bin/universe = unknown
  23. PATH: /opt/rh/devtoolset-8/root/usr/bin
  24. PATH: /opt/apache-ant-1.10.6/bin
  25. PATH: /etc/alternatives/java_sdk_1.8.0/bin
  26. PATH: /opt/Software/maxeler/maxcompiler-2018.3.1/bin
  27. PATH: /opt/Software/xilinx/SDK/2017.4/tps/lnx64/cmake-3.3.2/bin
  28. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/armr5/lin/gcc-arm-none-eabi/bin
  29. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/aarch64/lin/aarch64-none/bin
  30. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/aarch64/lin/aarch64-linux/bin
  31. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/aarch32/lin/gcc-arm-none-eabi/bin
  32. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/aarch32/lin/gcc-arm-linux-gnueabi/bin
  33. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/microblaze/linux_toolchain/lib64_le/bin
  34. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/arm/lin/bin
  35. PATH: /opt/Software/xilinx/SDK/2017.4/gnu/microblaze/lib/bin
  36. PATH: /opt/Software/xilinx/SDK/2017.4/bin
  37. PATH: /opt/Software/xilinx/DocNav
  38. PATH: /opt/Software/xilinx/Vivado/2017.4/bin
  39. PATH: /home/jusers/makni1/jumax/starpu.git/install/bin
  40. PATH: /usr/local/bin
  41. PATH: /usr/bin
  42. PATH: /usr/local/sbin
  43. PATH: /usr/sbin
  44. ## ----------- ##
  45. ## Core tests. ##
  46. ## ----------- ##
  47. configure:3738: checking build system type
  48. configure:3752: result: x86_64-unknown-linux-gnu
  49. configure:3772: checking host system type
  50. configure:3785: result: x86_64-unknown-linux-gnu
  51. configure:3805: checking target system type
  52. configure:3818: result: x86_64-unknown-linux-gnu
  53. configure:3862: checking for a BSD-compatible install
  54. configure:3930: result: /usr/bin/install -c
  55. configure:3941: checking whether build environment is sane
  56. configure:3996: result: yes
  57. configure:4147: checking for a thread-safe mkdir -p
  58. configure:4186: result: /usr/bin/mkdir -p
  59. configure:4193: checking for gawk
  60. configure:4209: found /usr/bin/gawk
  61. configure:4220: result: gawk
  62. configure:4231: checking whether make sets $(MAKE)
  63. configure:4253: result: yes
  64. configure:4282: checking whether make supports nested variables
  65. configure:4299: result: yes
  66. configure:4395: checking whether make supports nested variables
  67. configure:4412: result: yes
  68. configure:4438: checking for style of include used by make
  69. configure:4466: result: GNU
  70. configure:4537: checking for gcc
  71. configure:4553: found /opt/rh/devtoolset-8/root/usr/bin/gcc
  72. configure:4564: result: gcc
  73. configure:4793: checking for C compiler version
  74. configure:4802: gcc --version >&5
  75. gcc (GCC) 8.3.1 20190311 (Red Hat 8.3.1-3)
  76. Copyright (C) 2018 Free Software Foundation, Inc.
  77. This is free software; see the source for copying conditions. There is NO
  78. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  79. configure:4813: $? = 0
  80. configure:4802: gcc -v >&5
  81. Using built-in specs.
  82. COLLECT_GCC=gcc
  83. COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
  84. Target: x86_64-redhat-linux
  85. Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-8/root/usr --mandir=/opt/rh/devtoolset-8/root/usr/share/man --infodir=/opt/rh/devtoolset-8/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-8.3.1-20190311/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  86. Thread model: posix
  87. gcc version 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC)
  88. configure:4813: $? = 0
  89. configure:4802: gcc -V >&5
  90. gcc: error: unrecognized command line option '-V'
  91. gcc: fatal error: no input files
  92. compilation terminated.
  93. configure:4813: $? = 1
  94. configure:4802: gcc -qversion >&5
  95. gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
  96. gcc: fatal error: no input files
  97. compilation terminated.
  98. configure:4813: $? = 1
  99. configure:4833: checking whether the C compiler works
  100. configure:4855: gcc conftest.c >&5
  101. configure:4859: $? = 0
  102. configure:4907: result: yes
  103. configure:4910: checking for C compiler default output file name
  104. configure:4912: result: a.out
  105. configure:4918: checking for suffix of executables
  106. configure:4925: gcc -o conftest conftest.c >&5
  107. configure:4929: $? = 0
  108. configure:4951: result:
  109. configure:4973: checking whether we are cross compiling
  110. configure:4981: gcc -o conftest conftest.c >&5
  111. configure:4985: $? = 0
  112. configure:4992: ./conftest
  113. configure:4996: $? = 0
  114. configure:5011: result: no
  115. configure:5016: checking for suffix of object files
  116. configure:5038: gcc -c conftest.c >&5
  117. configure:5042: $? = 0
  118. configure:5063: result: o
  119. configure:5067: checking whether we are using the GNU C compiler
  120. configure:5086: gcc -c conftest.c >&5
  121. configure:5086: $? = 0
  122. configure:5095: result: yes
  123. configure:5104: checking whether gcc accepts -g
  124. configure:5124: gcc -c -g conftest.c >&5
  125. configure:5124: $? = 0
  126. configure:5165: result: yes
  127. configure:5182: checking for gcc option to accept ISO C89
  128. configure:5245: gcc -c -g -O2 conftest.c >&5
  129. configure:5245: $? = 0
  130. configure:5258: result: none needed
  131. configure:5280: checking dependency style of gcc
  132. configure:5391: result: gcc3
  133. configure:5456: checking for ar
  134. configure:5472: found /opt/rh/devtoolset-8/root/usr/bin/ar
  135. configure:5483: result: ar
  136. configure:5509: checking the archiver (ar) interface
  137. configure:5519: gcc -c -g -O2 conftest.c >&5
  138. configure:5519: $? = 0
  139. configure:5521: ar cru libconftest.a conftest.o >&5
  140. configure:5524: $? = 0
  141. configure:5547: result: ar
  142. configure:5615: checking for gcc
  143. configure:5642: result: gcc
  144. configure:5871: checking for C compiler version
  145. configure:5880: gcc --version >&5
  146. gcc (GCC) 8.3.1 20190311 (Red Hat 8.3.1-3)
  147. Copyright (C) 2018 Free Software Foundation, Inc.
  148. This is free software; see the source for copying conditions. There is NO
  149. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  150. configure:5891: $? = 0
  151. configure:5880: gcc -v >&5
  152. Using built-in specs.
  153. COLLECT_GCC=gcc
  154. COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
  155. Target: x86_64-redhat-linux
  156. Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-8/root/usr --mandir=/opt/rh/devtoolset-8/root/usr/share/man --infodir=/opt/rh/devtoolset-8/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-8.3.1-20190311/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  157. Thread model: posix
  158. gcc version 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC)
  159. configure:5891: $? = 0
  160. configure:5880: gcc -V >&5
  161. gcc: error: unrecognized command line option '-V'
  162. gcc: fatal error: no input files
  163. compilation terminated.
  164. configure:5891: $? = 1
  165. configure:5880: gcc -qversion >&5
  166. gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
  167. gcc: fatal error: no input files
  168. compilation terminated.
  169. configure:5891: $? = 1
  170. configure:5895: checking whether we are using the GNU C compiler
  171. configure:5923: result: yes
  172. configure:5932: checking whether gcc accepts -g
  173. configure:5993: result: yes
  174. configure:6010: checking for gcc option to accept ISO C89
  175. configure:6086: result: none needed
  176. configure:6108: checking dependency style of gcc
  177. configure:6219: result: gcc3
  178. configure:6235: checking whether gcc and cc understand -c and -o together
  179. configure:6266: gcc -c conftest.c -o conftest2.o >&5
  180. configure:6270: $? = 0
  181. configure:6276: gcc -c conftest.c -o conftest2.o >&5
  182. configure:6280: $? = 0
  183. configure:6291: cc -c conftest.c >&5
  184. configure:6295: $? = 0
  185. configure:6303: cc -c conftest.c -o conftest2.o >&5
  186. configure:6307: $? = 0
  187. configure:6313: cc -c conftest.c -o conftest2.o >&5
  188. configure:6317: $? = 0
  189. configure:6335: result: yes
  190. configure:6418: checking for g++
  191. configure:6434: found /opt/rh/devtoolset-8/root/usr/bin/g++
  192. configure:6445: result: g++
  193. configure:6472: checking for C++ compiler version
  194. configure:6481: g++ --version >&5
  195. g++ (GCC) 8.3.1 20190311 (Red Hat 8.3.1-3)
  196. Copyright (C) 2018 Free Software Foundation, Inc.
  197. This is free software; see the source for copying conditions. There is NO
  198. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  199. configure:6492: $? = 0
  200. configure:6481: g++ -v >&5
  201. Using built-in specs.
  202. COLLECT_GCC=g++
  203. COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
  204. Target: x86_64-redhat-linux
  205. Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-8/root/usr --mandir=/opt/rh/devtoolset-8/root/usr/share/man --infodir=/opt/rh/devtoolset-8/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-8.3.1-20190311/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  206. Thread model: posix
  207. gcc version 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC)
  208. configure:6492: $? = 0
  209. configure:6481: g++ -V >&5
  210. g++: error: unrecognized command line option '-V'
  211. g++: fatal error: no input files
  212. compilation terminated.
  213. configure:6492: $? = 1
  214. configure:6481: g++ -qversion >&5
  215. g++: error: unrecognized command line option '-qversion'; did you mean '--version'?
  216. g++: fatal error: no input files
  217. compilation terminated.
  218. configure:6492: $? = 1
  219. configure:6496: checking whether we are using the GNU C++ compiler
  220. configure:6515: g++ -c conftest.cpp >&5
  221. configure:6515: $? = 0
  222. configure:6524: result: yes
  223. configure:6533: checking whether g++ accepts -g
  224. configure:6553: g++ -c -g conftest.cpp >&5
  225. configure:6553: $? = 0
  226. configure:6594: result: yes
  227. configure:6619: checking dependency style of g++
  228. configure:6730: result: gcc3
  229. configure:6750: checking how to run the C preprocessor
  230. configure:6781: gcc -E conftest.c
  231. configure:6781: $? = 0
  232. configure:6795: gcc -E conftest.c
  233. conftest.c:14:10: fatal error: ac_nonexistent.h: No such file or directory
  234. #include <ac_nonexistent.h>
  235. ^~~~~~~~~~~~~~~~~~
  236. compilation terminated.
  237. configure:6795: $? = 1
  238. configure: failed program was:
  239. | /* confdefs.h */
  240. | #define PACKAGE_NAME "StarPU"
  241. | #define PACKAGE_TARNAME "starpu"
  242. | #define PACKAGE_VERSION "1.3.99"
  243. | #define PACKAGE_STRING "StarPU 1.3.99"
  244. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  245. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  246. | #define STARPU_MAJOR_VERSION 1
  247. | #define STARPU_MINOR_VERSION 3
  248. | #define STARPU_RELEASE_VERSION 99
  249. | #define PACKAGE "starpu"
  250. | #define VERSION "1.3.99"
  251. | /* end confdefs.h. */
  252. | #include <ac_nonexistent.h>
  253. configure:6820: result: gcc -E
  254. configure:6840: gcc -E conftest.c
  255. configure:6840: $? = 0
  256. configure:6854: gcc -E conftest.c
  257. conftest.c:14:10: fatal error: ac_nonexistent.h: No such file or directory
  258. #include <ac_nonexistent.h>
  259. ^~~~~~~~~~~~~~~~~~
  260. compilation terminated.
  261. configure:6854: $? = 1
  262. configure: failed program was:
  263. | /* confdefs.h */
  264. | #define PACKAGE_NAME "StarPU"
  265. | #define PACKAGE_TARNAME "starpu"
  266. | #define PACKAGE_VERSION "1.3.99"
  267. | #define PACKAGE_STRING "StarPU 1.3.99"
  268. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  269. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  270. | #define STARPU_MAJOR_VERSION 1
  271. | #define STARPU_MINOR_VERSION 3
  272. | #define STARPU_RELEASE_VERSION 99
  273. | #define PACKAGE "starpu"
  274. | #define VERSION "1.3.99"
  275. | /* end confdefs.h. */
  276. | #include <ac_nonexistent.h>
  277. configure:6882: checking for a sed that does not truncate output
  278. configure:6946: result: /usr/bin/sed
  279. configure:6951: checking whether ln -s works
  280. configure:6955: result: yes
  281. configure:7015: checking for g77
  282. configure:7045: result: no
  283. configure:7015: checking for xlf
  284. configure:7045: result: no
  285. configure:7015: checking for f77
  286. configure:7045: result: no
  287. configure:7015: checking for frt
  288. configure:7045: result: no
  289. configure:7015: checking for pgf77
  290. configure:7045: result: no
  291. configure:7015: checking for cf77
  292. configure:7045: result: no
  293. configure:7015: checking for fort77
  294. configure:7045: result: no
  295. configure:7015: checking for fl32
  296. configure:7045: result: no
  297. configure:7015: checking for af77
  298. configure:7045: result: no
  299. configure:7015: checking for xlf90
  300. configure:7045: result: no
  301. configure:7015: checking for f90
  302. configure:7045: result: no
  303. configure:7015: checking for pgf90
  304. configure:7045: result: no
  305. configure:7015: checking for pghpf
  306. configure:7045: result: no
  307. configure:7015: checking for epcf90
  308. configure:7045: result: no
  309. configure:7015: checking for gfortran
  310. configure:7031: found /opt/rh/devtoolset-8/root/usr/bin/gfortran
  311. configure:7042: result: gfortran
  312. configure:7068: checking for Fortran 77 compiler version
  313. configure:7077: gfortran --version >&5
  314. GNU Fortran (GCC) 8.3.1 20190311 (Red Hat 8.3.1-3)
  315. Copyright (C) 2018 Free Software Foundation, Inc.
  316. This is free software; see the source for copying conditions. There is NO
  317. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  318. configure:7088: $? = 0
  319. configure:7077: gfortran -v >&5
  320. Using built-in specs.
  321. COLLECT_GCC=gfortran
  322. COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
  323. Target: x86_64-redhat-linux
  324. Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-8/root/usr --mandir=/opt/rh/devtoolset-8/root/usr/share/man --infodir=/opt/rh/devtoolset-8/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-8.3.1-20190311/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  325. Thread model: posix
  326. gcc version 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC)
  327. configure:7088: $? = 0
  328. configure:7077: gfortran -V >&5
  329. gfortran: error: unrecognized command line option '-V'
  330. gfortran: fatal error: no input files
  331. compilation terminated.
  332. configure:7088: $? = 1
  333. configure:7077: gfortran -qversion >&5
  334. gfortran: error: unrecognized command line option '-qversion'; did you mean '--version'?
  335. gfortran: fatal error: no input files
  336. compilation terminated.
  337. configure:7088: $? = 1
  338. configure:7097: checking whether we are using the GNU Fortran 77 compiler
  339. configure:7110: gfortran -c conftest.F >&5
  340. configure:7110: $? = 0
  341. configure:7119: result: yes
  342. configure:7125: checking whether gfortran accepts -g
  343. configure:7136: gfortran -c -g conftest.f >&5
  344. configure:7136: $? = 0
  345. configure:7144: result: yes
  346. configure:7226: checking for gfortran
  347. configure:7242: found /opt/rh/devtoolset-8/root/usr/bin/gfortran
  348. configure:7253: result: gfortran
  349. configure:7279: checking for Fortran compiler version
  350. configure:7288: gfortran --version >&5
  351. GNU Fortran (GCC) 8.3.1 20190311 (Red Hat 8.3.1-3)
  352. Copyright (C) 2018 Free Software Foundation, Inc.
  353. This is free software; see the source for copying conditions. There is NO
  354. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  355. configure:7299: $? = 0
  356. configure:7288: gfortran -v >&5
  357. Using built-in specs.
  358. COLLECT_GCC=gfortran
  359. COLLECT_LTO_WRAPPER=/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/lto-wrapper
  360. Target: x86_64-redhat-linux
  361. Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,lto --prefix=/opt/rh/devtoolset-8/root/usr --mandir=/opt/rh/devtoolset-8/root/usr/share/man --infodir=/opt/rh/devtoolset-8/root/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --with-linker-hash-style=gnu --with-default-libstdcxx-abi=gcc4-compatible --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-8.3.1-20190311/obj-x86_64-redhat-linux/isl-install --disable-libmpx --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
  362. Thread model: posix
  363. gcc version 8.3.1 20190311 (Red Hat 8.3.1-3) (GCC)
  364. configure:7299: $? = 0
  365. configure:7288: gfortran -V >&5
  366. gfortran: error: unrecognized command line option '-V'
  367. gfortran: fatal error: no input files
  368. compilation terminated.
  369. configure:7299: $? = 1
  370. configure:7288: gfortran -qversion >&5
  371. gfortran: error: unrecognized command line option '-qversion'; did you mean '--version'?
  372. gfortran: fatal error: no input files
  373. compilation terminated.
  374. configure:7299: $? = 1
  375. configure:7308: checking whether we are using the GNU Fortran compiler
  376. configure:7321: gfortran -c conftest.F >&5
  377. configure:7321: $? = 0
  378. configure:7330: result: yes
  379. configure:7336: checking whether gfortran accepts -g
  380. configure:7347: gfortran -c -g conftest.f >&5
  381. configure:7347: $? = 0
  382. configure:7355: result: yes
  383. configure:7384: checking for grep that handles long lines and -e
  384. configure:7442: result: /usr/bin/grep
  385. configure:7447: checking for egrep
  386. configure:7509: result: /usr/bin/grep -E
  387. configure:7520: checking for gstat
  388. configure:7536: found /usr/bin/gstat
  389. configure:7547: result: gstat
  390. configure:7562: checking for gdate
  391. configure:7592: result: no
  392. configure:7562: checking for date
  393. configure:7578: found /usr/bin/date
  394. configure:7589: result: date
  395. configure:7650: checking for pkg-config
  396. configure:7668: found /usr/bin/pkg-config
  397. configure:7680: result: /usr/bin/pkg-config
  398. configure:7705: checking pkg-config is at least version 0.9.0
  399. configure:7708: result: yes
  400. configure:7736: checking Automatic Data transfers for Fpga driver
  401. configure:7745: result: 1
  402. configure:7755: checking maximum number of Fpga devices
  403. configure:7764: result:
  404. configure:7801: checking whether Fpga should be used
  405. configure:7803: result: yes
  406. configure:7843: checking for ANSI C header files
  407. configure:7863: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  408. configure:7863: $? = 0
  409. configure:7936: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c >&5
  410. configure:7936: $? = 0
  411. configure:7936: ./conftest
  412. configure:7936: $? = 0
  413. configure:7947: result: yes
  414. configure:7960: checking for sys/types.h
  415. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  416. configure:7960: $? = 0
  417. configure:7960: result: yes
  418. configure:7960: checking for sys/stat.h
  419. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  420. configure:7960: $? = 0
  421. configure:7960: result: yes
  422. configure:7960: checking for stdlib.h
  423. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  424. configure:7960: $? = 0
  425. configure:7960: result: yes
  426. configure:7960: checking for string.h
  427. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  428. configure:7960: $? = 0
  429. configure:7960: result: yes
  430. configure:7960: checking for memory.h
  431. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  432. configure:7960: $? = 0
  433. configure:7960: result: yes
  434. configure:7960: checking for strings.h
  435. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  436. configure:7960: $? = 0
  437. configure:7960: result: yes
  438. configure:7960: checking for inttypes.h
  439. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  440. configure:7960: $? = 0
  441. configure:7960: result: yes
  442. configure:7960: checking for stdint.h
  443. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  444. configure:7960: $? = 0
  445. configure:7960: result: yes
  446. configure:7960: checking for unistd.h
  447. configure:7960: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  448. configure:7960: $? = 0
  449. configure:7960: result: yes
  450. configure:7972: checking fpga.h usability
  451. configure:7972: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  452. conftest.c:60:10: fatal error: fpga.h: No such file or directory
  453. #include <fpga.h>
  454. ^~~~~~~~
  455. compilation terminated.
  456. configure:7972: $? = 1
  457. configure: failed program was:
  458. | /* confdefs.h */
  459. | #define PACKAGE_NAME "StarPU"
  460. | #define PACKAGE_TARNAME "starpu"
  461. | #define PACKAGE_VERSION "1.3.99"
  462. | #define PACKAGE_STRING "StarPU 1.3.99"
  463. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  464. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  465. | #define STARPU_MAJOR_VERSION 1
  466. | #define STARPU_MINOR_VERSION 3
  467. | #define STARPU_RELEASE_VERSION 99
  468. | #define PACKAGE "starpu"
  469. | #define VERSION "1.3.99"
  470. | #define STARPU_AUTOFPGA 1
  471. | #define STARPU_MAXFPGADEVS 12
  472. | #define STARPU_USE_FPGA 1
  473. | #define STDC_HEADERS 1
  474. | #define HAVE_SYS_TYPES_H 1
  475. | #define HAVE_SYS_STAT_H 1
  476. | #define HAVE_STDLIB_H 1
  477. | #define HAVE_STRING_H 1
  478. | #define HAVE_MEMORY_H 1
  479. | #define HAVE_STRINGS_H 1
  480. | #define HAVE_INTTYPES_H 1
  481. | #define HAVE_STDINT_H 1
  482. | #define HAVE_UNISTD_H 1
  483. | /* end confdefs.h. */
  484. | #include <stdio.h>
  485. | #ifdef HAVE_SYS_TYPES_H
  486. | # include <sys/types.h>
  487. | #endif
  488. | #ifdef HAVE_SYS_STAT_H
  489. | # include <sys/stat.h>
  490. | #endif
  491. | #ifdef STDC_HEADERS
  492. | # include <stdlib.h>
  493. | # include <stddef.h>
  494. | #else
  495. | # ifdef HAVE_STDLIB_H
  496. | # include <stdlib.h>
  497. | # endif
  498. | #endif
  499. | #ifdef HAVE_STRING_H
  500. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  501. | # include <memory.h>
  502. | # endif
  503. | # include <string.h>
  504. | #endif
  505. | #ifdef HAVE_STRINGS_H
  506. | # include <strings.h>
  507. | #endif
  508. | #ifdef HAVE_INTTYPES_H
  509. | # include <inttypes.h>
  510. | #endif
  511. | #ifdef HAVE_STDINT_H
  512. | # include <stdint.h>
  513. | #endif
  514. | #ifdef HAVE_UNISTD_H
  515. | # include <unistd.h>
  516. | #endif
  517. | #include <fpga.h>
  518. configure:7972: result: no
  519. configure:7972: checking fpga.h presence
  520. configure:7972: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  521. conftest.c:27:10: fatal error: fpga.h: No such file or directory
  522. #include <fpga.h>
  523. ^~~~~~~~
  524. compilation terminated.
  525. configure:7972: $? = 1
  526. configure: failed program was:
  527. | /* confdefs.h */
  528. | #define PACKAGE_NAME "StarPU"
  529. | #define PACKAGE_TARNAME "starpu"
  530. | #define PACKAGE_VERSION "1.3.99"
  531. | #define PACKAGE_STRING "StarPU 1.3.99"
  532. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  533. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  534. | #define STARPU_MAJOR_VERSION 1
  535. | #define STARPU_MINOR_VERSION 3
  536. | #define STARPU_RELEASE_VERSION 99
  537. | #define PACKAGE "starpu"
  538. | #define VERSION "1.3.99"
  539. | #define STARPU_AUTOFPGA 1
  540. | #define STARPU_MAXFPGADEVS 12
  541. | #define STARPU_USE_FPGA 1
  542. | #define STDC_HEADERS 1
  543. | #define HAVE_SYS_TYPES_H 1
  544. | #define HAVE_SYS_STAT_H 1
  545. | #define HAVE_STDLIB_H 1
  546. | #define HAVE_STRING_H 1
  547. | #define HAVE_MEMORY_H 1
  548. | #define HAVE_STRINGS_H 1
  549. | #define HAVE_INTTYPES_H 1
  550. | #define HAVE_STDINT_H 1
  551. | #define HAVE_UNISTD_H 1
  552. | /* end confdefs.h. */
  553. | #include <fpga.h>
  554. configure:7972: result: no
  555. configure:7972: checking for fpga.h
  556. configure:7972: result: no
  557. configure:7980: checking for main in -lfpga
  558. configure:7999: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lfpga >&5
  559. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lfpga
  560. collect2: error: ld returned 1 exit status
  561. configure:7999: $? = 1
  562. configure: failed program was:
  563. | /* confdefs.h */
  564. | #define PACKAGE_NAME "StarPU"
  565. | #define PACKAGE_TARNAME "starpu"
  566. | #define PACKAGE_VERSION "1.3.99"
  567. | #define PACKAGE_STRING "StarPU 1.3.99"
  568. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  569. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  570. | #define STARPU_MAJOR_VERSION 1
  571. | #define STARPU_MINOR_VERSION 3
  572. | #define STARPU_RELEASE_VERSION 99
  573. | #define PACKAGE "starpu"
  574. | #define VERSION "1.3.99"
  575. | #define STARPU_AUTOFPGA 1
  576. | #define STARPU_MAXFPGADEVS 12
  577. | #define STARPU_USE_FPGA 1
  578. | #define STDC_HEADERS 1
  579. | #define HAVE_SYS_TYPES_H 1
  580. | #define HAVE_SYS_STAT_H 1
  581. | #define HAVE_STDLIB_H 1
  582. | #define HAVE_STRING_H 1
  583. | #define HAVE_MEMORY_H 1
  584. | #define HAVE_STRINGS_H 1
  585. | #define HAVE_INTTYPES_H 1
  586. | #define HAVE_STDINT_H 1
  587. | #define HAVE_UNISTD_H 1
  588. | /* end confdefs.h. */
  589. |
  590. |
  591. | int
  592. | main ()
  593. | {
  594. | return main ();
  595. | ;
  596. | return 0;
  597. | }
  598. configure:8008: result: no
  599. configure:8478: checking whether SimGrid is enabled
  600. configure:8480: result: no
  601. configure:8483: checking whether blocking drivers should be enabled
  602. configure:8492: result: no
  603. configure:8573: checking for mpicc
  604. configure:8605: result: no
  605. configure:8626: result: The mpicc compiler 'no' does not have the execute permission
  606. configure:8694: checking mpicc path
  607. configure:8696: result: no
  608. configure:8723: checking for mpicxx
  609. configure:8755: result: no
  610. configure:8769: checking for mpic++
  611. configure:8801: result: no
  612. configure:8817: result: The mpicxx compiler 'no' does not have the execute permission
  613. configure:8824: checking mpicxx/mpic++ path
  614. configure:8826: result: no
  615. configure:8894: checking whether the master-slave mode should be enabled
  616. configure:8896: result: no
  617. configure:8907: checking maximum number of MPI master-slave devices
  618. configure:8922: result: 0
  619. configure:9065: checking whether the StarPU MPI nmad library should be generated
  620. configure:9067: result: no
  621. configure:9084: checking whether g++ supports C++11 features by default
  622. configure:9378: g++ -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.cpp >&5
  623. configure:9378: $? = 0
  624. configure:9385: result: yes
  625. configure:9800: checking how to print strings
  626. configure:9827: result: printf
  627. configure:9848: checking for a sed that does not truncate output
  628. configure:9912: result: /usr/bin/sed
  629. configure:9930: checking for fgrep
  630. configure:9992: result: /usr/bin/grep -F
  631. configure:10027: checking for ld used by gcc
  632. configure:10094: result: /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld
  633. configure:10101: checking if the linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld) is GNU ld
  634. configure:10116: result: yes
  635. configure:10128: checking for BSD- or MS-compatible name lister (nm)
  636. configure:10177: result: /opt/rh/devtoolset-8/root/usr/bin/nm -B
  637. configure:10307: checking the name lister (/opt/rh/devtoolset-8/root/usr/bin/nm -B) interface
  638. configure:10314: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  639. configure:10317: /opt/rh/devtoolset-8/root/usr/bin/nm -B "conftest.o"
  640. configure:10320: output
  641. 0000000000000000 B some_variable
  642. configure:10327: result: BSD nm
  643. configure:10331: checking the maximum length of command line arguments
  644. configure:10461: result: 1572864
  645. configure:10478: checking whether the shell understands some XSI constructs
  646. configure:10488: result: yes
  647. configure:10492: checking whether the shell understands "+="
  648. configure:10498: result: yes
  649. configure:10533: checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format
  650. configure:10573: result: func_convert_file_noop
  651. configure:10580: checking how to convert x86_64-unknown-linux-gnu file names to toolchain format
  652. configure:10600: result: func_convert_file_noop
  653. configure:10607: checking for /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld option to reload object files
  654. configure:10614: result: -r
  655. configure:10688: checking for objdump
  656. configure:10704: found /opt/rh/devtoolset-8/root/usr/bin/objdump
  657. configure:10715: result: objdump
  658. configure:10744: checking how to recognize dependent libraries
  659. configure:10946: result: pass_all
  660. configure:11031: checking for dlltool
  661. configure:11061: result: no
  662. configure:11088: checking how to associate runtime and link libraries
  663. configure:11115: result: printf %s\n
  664. configure:11239: checking for archiver @FILE support
  665. configure:11256: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  666. configure:11256: $? = 0
  667. configure:11259: ar cru libconftest.a @conftest.lst >&5
  668. configure:11262: $? = 0
  669. configure:11267: ar cru libconftest.a @conftest.lst >&5
  670. ar: conftest.o: No such file or directory
  671. configure:11270: $? = 1
  672. configure:11282: result: @
  673. configure:11340: checking for strip
  674. configure:11356: found /opt/rh/devtoolset-8/root/usr/bin/strip
  675. configure:11367: result: strip
  676. configure:11439: checking for ranlib
  677. configure:11455: found /opt/rh/devtoolset-8/root/usr/bin/ranlib
  678. configure:11466: result: ranlib
  679. configure:11568: checking command to parse /opt/rh/devtoolset-8/root/usr/bin/nm -B output from gcc object
  680. configure:11688: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  681. configure:11691: $? = 0
  682. configure:11695: /opt/rh/devtoolset-8/root/usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
  683. configure:11698: $? = 0
  684. configure:11764: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c conftstm.o >&5
  685. configure:11767: $? = 0
  686. configure:11805: result: ok
  687. configure:11842: checking for sysroot
  688. configure:11872: result: no
  689. configure:11949: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  690. configure:11952: $? = 0
  691. configure:12128: checking for mt
  692. configure:12158: result: no
  693. configure:12178: checking if : is a manifest tool
  694. configure:12184: : '-?'
  695. configure:12192: result: no
  696. configure:12831: checking for dlfcn.h
  697. configure:12831: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  698. configure:12831: $? = 0
  699. configure:12831: result: yes
  700. configure:13347: checking for objdir
  701. configure:13362: result: .libs
  702. configure:13633: checking if gcc supports -fno-rtti -fno-exceptions
  703. configure:13651: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -fno-rtti -fno-exceptions conftest.c >&5
  704. cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
  705. configure:13655: $? = 0
  706. configure:13668: result: no
  707. configure:13995: checking for gcc option to produce PIC
  708. configure:14002: result: -fPIC -DPIC
  709. configure:14010: checking if gcc PIC flag -fPIC -DPIC works
  710. configure:14028: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -fPIC -DPIC -DPIC conftest.c >&5
  711. configure:14032: $? = 0
  712. configure:14045: result: yes
  713. configure:14074: checking if gcc static flag -static works
  714. configure:14102: result: no
  715. configure:14117: checking if gcc supports -c -o file.o
  716. configure:14138: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -o out/conftest2.o conftest.c >&5
  717. configure:14142: $? = 0
  718. configure:14164: result: yes
  719. configure:14172: checking if gcc supports -c -o file.o
  720. configure:14219: result: yes
  721. configure:14252: checking whether the gcc linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64) supports shared libraries
  722. configure:15405: result: yes
  723. configure:15442: checking whether -lc should be explicitly linked in
  724. configure:15450: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  725. configure:15453: $? = 0
  726. configure:15468: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1
  727. configure:15471: $? = 0
  728. configure:15485: result: no
  729. configure:15645: checking dynamic linker characteristics
  730. configure:16156: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -Wl,-rpath -Wl,/foo conftest.c >&5
  731. configure:16156: $? = 0
  732. configure:16382: result: GNU/Linux ld.so
  733. configure:16489: checking how to hardcode library paths into programs
  734. configure:16514: result: immediate
  735. configure:17054: checking whether stripping libraries is possible
  736. configure:17059: result: yes
  737. configure:17094: checking if libtool supports shared libraries
  738. configure:17096: result: yes
  739. configure:17099: checking whether to build shared libraries
  740. configure:17120: result: yes
  741. configure:17123: checking whether to build static libraries
  742. configure:17127: result: yes
  743. configure:17150: checking how to run the C++ preprocessor
  744. configure:17177: g++ -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.cpp
  745. configure:17177: $? = 0
  746. configure:17191: g++ -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.cpp
  747. conftest.cpp:33:10: fatal error: ac_nonexistent.h: No such file or directory
  748. #include <ac_nonexistent.h>
  749. ^~~~~~~~~~~~~~~~~~
  750. compilation terminated.
  751. configure:17191: $? = 1
  752. configure: failed program was:
  753. | /* confdefs.h */
  754. | #define PACKAGE_NAME "StarPU"
  755. | #define PACKAGE_TARNAME "starpu"
  756. | #define PACKAGE_VERSION "1.3.99"
  757. | #define PACKAGE_STRING "StarPU 1.3.99"
  758. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  759. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  760. | #define STARPU_MAJOR_VERSION 1
  761. | #define STARPU_MINOR_VERSION 3
  762. | #define STARPU_RELEASE_VERSION 99
  763. | #define PACKAGE "starpu"
  764. | #define VERSION "1.3.99"
  765. | #define STARPU_AUTOFPGA 1
  766. | #define STARPU_MAXFPGADEVS 12
  767. | #define STARPU_USE_FPGA 1
  768. | #define STDC_HEADERS 1
  769. | #define HAVE_SYS_TYPES_H 1
  770. | #define HAVE_SYS_STAT_H 1
  771. | #define HAVE_STDLIB_H 1
  772. | #define HAVE_STRING_H 1
  773. | #define HAVE_MEMORY_H 1
  774. | #define HAVE_STRINGS_H 1
  775. | #define HAVE_INTTYPES_H 1
  776. | #define HAVE_STDINT_H 1
  777. | #define HAVE_UNISTD_H 1
  778. | #define STARPU_NON_BLOCKING_DRIVERS 1
  779. | #define STARPU_MAXMPIDEVS 0
  780. | #define HAVE_CXX11 1
  781. | #define STARPU_HAVE_CXX11 1
  782. | #define HAVE_DLFCN_H 1
  783. | #define LT_OBJDIR ".libs/"
  784. | /* end confdefs.h. */
  785. | #include <ac_nonexistent.h>
  786. configure:17216: result: g++ -E
  787. configure:17236: g++ -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.cpp
  788. configure:17236: $? = 0
  789. configure:17250: g++ -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.cpp
  790. conftest.cpp:33:10: fatal error: ac_nonexistent.h: No such file or directory
  791. #include <ac_nonexistent.h>
  792. ^~~~~~~~~~~~~~~~~~
  793. compilation terminated.
  794. configure:17250: $? = 1
  795. configure: failed program was:
  796. | /* confdefs.h */
  797. | #define PACKAGE_NAME "StarPU"
  798. | #define PACKAGE_TARNAME "starpu"
  799. | #define PACKAGE_VERSION "1.3.99"
  800. | #define PACKAGE_STRING "StarPU 1.3.99"
  801. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  802. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  803. | #define STARPU_MAJOR_VERSION 1
  804. | #define STARPU_MINOR_VERSION 3
  805. | #define STARPU_RELEASE_VERSION 99
  806. | #define PACKAGE "starpu"
  807. | #define VERSION "1.3.99"
  808. | #define STARPU_AUTOFPGA 1
  809. | #define STARPU_MAXFPGADEVS 12
  810. | #define STARPU_USE_FPGA 1
  811. | #define STDC_HEADERS 1
  812. | #define HAVE_SYS_TYPES_H 1
  813. | #define HAVE_SYS_STAT_H 1
  814. | #define HAVE_STDLIB_H 1
  815. | #define HAVE_STRING_H 1
  816. | #define HAVE_MEMORY_H 1
  817. | #define HAVE_STRINGS_H 1
  818. | #define HAVE_INTTYPES_H 1
  819. | #define HAVE_STDINT_H 1
  820. | #define HAVE_UNISTD_H 1
  821. | #define STARPU_NON_BLOCKING_DRIVERS 1
  822. | #define STARPU_MAXMPIDEVS 0
  823. | #define HAVE_CXX11 1
  824. | #define STARPU_HAVE_CXX11 1
  825. | #define HAVE_DLFCN_H 1
  826. | #define LT_OBJDIR ".libs/"
  827. | /* end confdefs.h. */
  828. | #include <ac_nonexistent.h>
  829. configure:17419: checking for ld used by g++
  830. configure:17486: result: /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64
  831. configure:17493: checking if the linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64) is GNU ld
  832. configure:17508: result: yes
  833. configure:17563: checking whether the g++ linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64) supports shared libraries
  834. configure:18568: result: yes
  835. configure:18604: g++ -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.cpp >&5
  836. configure:18607: $? = 0
  837. configure:19127: checking for g++ option to produce PIC
  838. configure:19134: result: -fPIC -DPIC
  839. configure:19142: checking if g++ PIC flag -fPIC -DPIC works
  840. configure:19160: g++ -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -fPIC -DPIC -DPIC conftest.cpp >&5
  841. configure:19164: $? = 0
  842. configure:19177: result: yes
  843. configure:19200: checking if g++ static flag -static works
  844. configure:19228: result: no
  845. configure:19240: checking if g++ supports -c -o file.o
  846. configure:19261: g++ -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -o out/conftest2.o conftest.cpp >&5
  847. configure:19265: $? = 0
  848. configure:19287: result: yes
  849. configure:19292: checking if g++ supports -c -o file.o
  850. configure:19339: result: yes
  851. configure:19369: checking whether the g++ linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64) supports shared libraries
  852. configure:19405: result: yes
  853. configure:19546: checking dynamic linker characteristics
  854. configure:20217: result: GNU/Linux ld.so
  855. configure:20270: checking how to hardcode library paths into programs
  856. configure:20295: result: immediate
  857. configure:20443: checking if libtool supports shared libraries
  858. configure:20445: result: yes
  859. configure:20448: checking whether to build shared libraries
  860. configure:20468: result: yes
  861. configure:20471: checking whether to build static libraries
  862. configure:20475: result: yes
  863. configure:20796: checking for gfortran option to produce PIC
  864. configure:20803: result: -fPIC
  865. configure:20811: checking if gfortran PIC flag -fPIC works
  866. configure:20829: gfortran -c -g -O2 -fPIC conftest.f >&5
  867. configure:20833: $? = 0
  868. configure:20846: result: yes
  869. configure:20869: checking if gfortran static flag -static works
  870. configure:20897: result: no
  871. configure:20909: checking if gfortran supports -c -o file.o
  872. configure:20930: gfortran -c -g -O2 -o out/conftest2.o conftest.f >&5
  873. configure:20934: $? = 0
  874. configure:20956: result: yes
  875. configure:20961: checking if gfortran supports -c -o file.o
  876. configure:21008: result: yes
  877. configure:21038: checking whether the gfortran linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64) supports shared libraries
  878. configure:22141: result: yes
  879. configure:22282: checking dynamic linker characteristics
  880. configure:22947: result: GNU/Linux ld.so
  881. configure:23000: checking how to hardcode library paths into programs
  882. configure:23025: result: immediate
  883. configure:23169: checking if libtool supports shared libraries
  884. configure:23171: result: yes
  885. configure:23174: checking whether to build shared libraries
  886. configure:23194: result: yes
  887. configure:23197: checking whether to build static libraries
  888. configure:23201: result: yes
  889. configure:23235: gfortran -c -g -O2 conftest.f >&5
  890. configure:23238: $? = 0
  891. configure:23667: checking for gfortran option to produce PIC
  892. configure:23674: result: -fPIC
  893. configure:23682: checking if gfortran PIC flag -fPIC works
  894. configure:23700: gfortran -c -g -O2 -fPIC conftest.f >&5
  895. configure:23704: $? = 0
  896. configure:23717: result: yes
  897. configure:23740: checking if gfortran static flag -static works
  898. configure:23768: result: no
  899. configure:23780: checking if gfortran supports -c -o file.o
  900. configure:23801: gfortran -c -g -O2 -o out/conftest2.o conftest.f >&5
  901. configure:23805: $? = 0
  902. configure:23827: result: yes
  903. configure:23832: checking if gfortran supports -c -o file.o
  904. configure:23879: result: yes
  905. configure:23909: checking whether the gfortran linker (/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64) supports shared libraries
  906. configure:25012: result: yes
  907. configure:25153: checking dynamic linker characteristics
  908. configure:25818: result: GNU/Linux ld.so
  909. configure:25871: checking how to hardcode library paths into programs
  910. configure:25896: result: immediate
  911. configure:25947: checking for ANSI C header files
  912. configure:26051: result: yes
  913. configure:26060: checking for C/C++ restrict keyword
  914. configure:26085: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  915. configure:26085: $? = 0
  916. configure:26093: result: __restrict
  917. configure:26110: checking for bash
  918. configure:26129: found /bin/bash
  919. configure:26141: result: /bin/bash
  920. configure:26153: checking for git
  921. configure:26186: result: no
  922. configure:26296: checking for mpiexec
  923. configure:26328: result: no
  924. configure:26341: checking whether mpiexec is available
  925. configure:26343: result: no
  926. configure:26394: checking for no
  927. configure:26426: result: no
  928. configure:26435: checking whether mpiexec is available (2nd try)
  929. configure:26437: result: no
  930. configure:26443: result: The mpiexec script is not valid
  931. configure:26478: checking whether the StarPU MPI library should be generated
  932. configure:26480: result: no
  933. configure:26545: checking whether MPI debug messages should be displayed
  934. configure:26554: result: no
  935. configure:26620: checking maximum number of NUMA nodes
  936. configure:26629: result: 2
  937. configure:26644: checking for lib
  938. configure:26677: result: no
  939. configure:26759: checking size of void *
  940. configure:26764: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c >&5
  941. configure:26764: $? = 0
  942. configure:26764: ./conftest
  943. configure:26764: $? = 0
  944. configure:26778: result: 8
  945. configure:26845: checking for unistd.h
  946. configure:26845: result: yes
  947. configure:26858: checking for struct timespec
  948. configure:26858: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  949. configure:26858: $? = 0
  950. configure:26858: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  951. conftest.c: In function 'main':
  952. conftest.c:56:30: error: expected expression before ')' token
  953. if (sizeof ((struct timespec)))
  954. ^
  955. configure:26858: $? = 1
  956. configure: failed program was:
  957. | /* confdefs.h */
  958. | #define PACKAGE_NAME "StarPU"
  959. | #define PACKAGE_TARNAME "starpu"
  960. | #define PACKAGE_VERSION "1.3.99"
  961. | #define PACKAGE_STRING "StarPU 1.3.99"
  962. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  963. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  964. | #define STARPU_MAJOR_VERSION 1
  965. | #define STARPU_MINOR_VERSION 3
  966. | #define STARPU_RELEASE_VERSION 99
  967. | #define PACKAGE "starpu"
  968. | #define VERSION "1.3.99"
  969. | #define STARPU_AUTOFPGA 1
  970. | #define STARPU_MAXFPGADEVS 12
  971. | #define STARPU_USE_FPGA 1
  972. | #define STDC_HEADERS 1
  973. | #define HAVE_SYS_TYPES_H 1
  974. | #define HAVE_SYS_STAT_H 1
  975. | #define HAVE_STDLIB_H 1
  976. | #define HAVE_STRING_H 1
  977. | #define HAVE_MEMORY_H 1
  978. | #define HAVE_STRINGS_H 1
  979. | #define HAVE_INTTYPES_H 1
  980. | #define HAVE_STDINT_H 1
  981. | #define HAVE_UNISTD_H 1
  982. | #define STARPU_NON_BLOCKING_DRIVERS 1
  983. | #define STARPU_MAXMPIDEVS 0
  984. | #define HAVE_CXX11 1
  985. | #define STARPU_HAVE_CXX11 1
  986. | #define HAVE_DLFCN_H 1
  987. | #define LT_OBJDIR ".libs/"
  988. | #define STDC_HEADERS 1
  989. | #define restrict __restrict
  990. | #define STARPU_MIC_USE_RMA 1
  991. | #define STARPU_MAXNUMANODES 2
  992. | #define STARPU_LINUX_SYS 1
  993. | #define SIZEOF_VOID_P 8
  994. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  995. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  996. | #define HAVE_UNISTD_H 1
  997. | #define STARPU_HAVE_UNISTD_H 1
  998. | /* end confdefs.h. */
  999. |
  1000. | #include <sys/types.h>
  1001. | #include <sys/stat.h>
  1002. | #ifdef HAVE_UNISTD_H
  1003. | #include <unistd.h>
  1004. | #endif
  1005. | #include <time.h>
  1006. | #include <pthread.h>
  1007. |
  1008. |
  1009. | int
  1010. | main ()
  1011. | {
  1012. | if (sizeof ((struct timespec)))
  1013. | return 0;
  1014. | ;
  1015. | return 0;
  1016. | }
  1017. configure:26858: result: yes
  1018. configure:26900: checking for pthread_create in -lpthread
  1019. configure:26925: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1020. configure:26925: $? = 0
  1021. configure:26934: result: yes
  1022. configure:26947: checking for library containing sqrt
  1023. configure:26978: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1024. conftest.c:52:6: warning: conflicting types for built-in function 'sqrt' [-Wbuiltin-declaration-mismatch]
  1025. char sqrt ();
  1026. ^~~~
  1027. configure:26978: $? = 0
  1028. configure:26995: result: none required
  1029. configure:27005: checking for main in -lws2_32
  1030. configure:27024: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lws2_32 -lpthread >&5
  1031. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lws2_32
  1032. collect2: error: ld returned 1 exit status
  1033. configure:27024: $? = 1
  1034. configure: failed program was:
  1035. | /* confdefs.h */
  1036. | #define PACKAGE_NAME "StarPU"
  1037. | #define PACKAGE_TARNAME "starpu"
  1038. | #define PACKAGE_VERSION "1.3.99"
  1039. | #define PACKAGE_STRING "StarPU 1.3.99"
  1040. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1041. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1042. | #define STARPU_MAJOR_VERSION 1
  1043. | #define STARPU_MINOR_VERSION 3
  1044. | #define STARPU_RELEASE_VERSION 99
  1045. | #define PACKAGE "starpu"
  1046. | #define VERSION "1.3.99"
  1047. | #define STARPU_AUTOFPGA 1
  1048. | #define STARPU_MAXFPGADEVS 12
  1049. | #define STARPU_USE_FPGA 1
  1050. | #define STDC_HEADERS 1
  1051. | #define HAVE_SYS_TYPES_H 1
  1052. | #define HAVE_SYS_STAT_H 1
  1053. | #define HAVE_STDLIB_H 1
  1054. | #define HAVE_STRING_H 1
  1055. | #define HAVE_MEMORY_H 1
  1056. | #define HAVE_STRINGS_H 1
  1057. | #define HAVE_INTTYPES_H 1
  1058. | #define HAVE_STDINT_H 1
  1059. | #define HAVE_UNISTD_H 1
  1060. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1061. | #define STARPU_MAXMPIDEVS 0
  1062. | #define HAVE_CXX11 1
  1063. | #define STARPU_HAVE_CXX11 1
  1064. | #define HAVE_DLFCN_H 1
  1065. | #define LT_OBJDIR ".libs/"
  1066. | #define STDC_HEADERS 1
  1067. | #define restrict __restrict
  1068. | #define STARPU_MIC_USE_RMA 1
  1069. | #define STARPU_MAXNUMANODES 2
  1070. | #define STARPU_LINUX_SYS 1
  1071. | #define SIZEOF_VOID_P 8
  1072. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1073. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1074. | #define HAVE_UNISTD_H 1
  1075. | #define STARPU_HAVE_UNISTD_H 1
  1076. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1077. | #define HAVE_LIBPTHREAD 1
  1078. | /* end confdefs.h. */
  1079. |
  1080. |
  1081. | int
  1082. | main ()
  1083. | {
  1084. | return main ();
  1085. | ;
  1086. | return 0;
  1087. | }
  1088. configure:27033: result: no
  1089. configure:27047: checking for sysconf
  1090. configure:27047: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1091. configure:27047: $? = 0
  1092. configure:27047: result: yes
  1093. configure:27058: checking for getrlimit
  1094. configure:27058: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1095. configure:27058: $? = 0
  1096. configure:27058: result: yes
  1097. configure:27069: checking for scandir
  1098. configure:27069: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1099. configure:27069: $? = 0
  1100. configure:27069: result: yes
  1101. configure:27079: checking for pthread_spin_lock
  1102. configure:27079: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1103. configure:27079: $? = 0
  1104. configure:27079: result: yes
  1105. configure:27095: checking for pthread_barrier_init
  1106. configure:27095: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1107. configure:27095: $? = 0
  1108. configure:27095: result: yes
  1109. configure:27111: checking for pthread_setaffinity_np
  1110. configure:27111: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1111. configure:27111: $? = 0
  1112. configure:27111: result: yes
  1113. configure:27121: checking for pthread_setname_np
  1114. configure:27121: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1115. configure:27121: $? = 0
  1116. configure:27121: result: yes
  1117. configure:27137: checking for posix_memalign
  1118. configure:27137: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1119. conftest.c:76:6: warning: conflicting types for built-in function 'posix_memalign' [-Wbuiltin-declaration-mismatch]
  1120. char posix_memalign ();
  1121. ^~~~~~~~~~~~~~
  1122. configure:27137: $? = 0
  1123. configure:27137: result: yes
  1124. configure:27150: checking for memalign
  1125. configure:27150: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1126. configure:27150: $? = 0
  1127. configure:27150: result: yes
  1128. configure:27163: checking for drand48
  1129. configure:27163: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1130. configure:27163: $? = 0
  1131. configure:27163: result: yes
  1132. configure:27170: checking for erand48_r
  1133. configure:27170: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1134. configure:27170: $? = 0
  1135. configure:27170: result: yes
  1136. configure:27197: checking for strerror_r
  1137. configure:27197: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1138. configure:27197: $? = 0
  1139. configure:27197: result: yes
  1140. configure:27206: checking for setenv
  1141. configure:27206: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1142. configure:27206: $? = 0
  1143. configure:27206: result: yes
  1144. configure:27215: checking for unsetenv
  1145. configure:27215: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1146. configure:27215: $? = 0
  1147. configure:27215: result: yes
  1148. configure:27224: checking for nearbyintf
  1149. configure:27224: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1150. conftest.c:85:6: warning: conflicting types for built-in function 'nearbyintf' [-Wbuiltin-declaration-mismatch]
  1151. char nearbyintf ();
  1152. ^~~~~~~~~~
  1153. configure:27224: $? = 0
  1154. configure:27224: result: yes
  1155. configure:27233: checking for rintf
  1156. configure:27233: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1157. conftest.c:86:6: warning: conflicting types for built-in function 'rintf' [-Wbuiltin-declaration-mismatch]
  1158. char rintf ();
  1159. ^~~~~
  1160. configure:27233: $? = 0
  1161. configure:27233: result: yes
  1162. configure:27309: checking malloc.h usability
  1163. configure:27309: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  1164. configure:27309: $? = 0
  1165. configure:27309: result: yes
  1166. configure:27309: checking malloc.h presence
  1167. configure:27309: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  1168. configure:27309: $? = 0
  1169. configure:27309: result: yes
  1170. configure:27309: checking for malloc.h
  1171. configure:27309: result: yes
  1172. configure:27332: checking valgrind/valgrind.h usability
  1173. configure:27332: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  1174. conftest.c:99:10: fatal error: valgrind/valgrind.h: No such file or directory
  1175. #include <valgrind/valgrind.h>
  1176. ^~~~~~~~~~~~~~~~~~~~~
  1177. compilation terminated.
  1178. configure:27332: $? = 1
  1179. configure: failed program was:
  1180. | /* confdefs.h */
  1181. | #define PACKAGE_NAME "StarPU"
  1182. | #define PACKAGE_TARNAME "starpu"
  1183. | #define PACKAGE_VERSION "1.3.99"
  1184. | #define PACKAGE_STRING "StarPU 1.3.99"
  1185. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1186. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1187. | #define STARPU_MAJOR_VERSION 1
  1188. | #define STARPU_MINOR_VERSION 3
  1189. | #define STARPU_RELEASE_VERSION 99
  1190. | #define PACKAGE "starpu"
  1191. | #define VERSION "1.3.99"
  1192. | #define STARPU_AUTOFPGA 1
  1193. | #define STARPU_MAXFPGADEVS 12
  1194. | #define STARPU_USE_FPGA 1
  1195. | #define STDC_HEADERS 1
  1196. | #define HAVE_SYS_TYPES_H 1
  1197. | #define HAVE_SYS_STAT_H 1
  1198. | #define HAVE_STDLIB_H 1
  1199. | #define HAVE_STRING_H 1
  1200. | #define HAVE_MEMORY_H 1
  1201. | #define HAVE_STRINGS_H 1
  1202. | #define HAVE_INTTYPES_H 1
  1203. | #define HAVE_STDINT_H 1
  1204. | #define HAVE_UNISTD_H 1
  1205. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1206. | #define STARPU_MAXMPIDEVS 0
  1207. | #define HAVE_CXX11 1
  1208. | #define STARPU_HAVE_CXX11 1
  1209. | #define HAVE_DLFCN_H 1
  1210. | #define LT_OBJDIR ".libs/"
  1211. | #define STDC_HEADERS 1
  1212. | #define restrict __restrict
  1213. | #define STARPU_MIC_USE_RMA 1
  1214. | #define STARPU_MAXNUMANODES 2
  1215. | #define STARPU_LINUX_SYS 1
  1216. | #define SIZEOF_VOID_P 8
  1217. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1218. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1219. | #define HAVE_UNISTD_H 1
  1220. | #define STARPU_HAVE_UNISTD_H 1
  1221. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1222. | #define HAVE_LIBPTHREAD 1
  1223. | #define HAVE_SYSCONF 1
  1224. | #define HAVE_GETRLIMIT 1
  1225. | #define HAVE_SCANDIR 1
  1226. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1227. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1228. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1229. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1230. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1231. | #define HAVE_POSIX_MEMALIGN 1
  1232. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1233. | #define HAVE_MEMALIGN 1
  1234. | #define STARPU_HAVE_MEMALIGN 1
  1235. | #define STARPU_USE_DRAND48 1
  1236. | #define STARPU_USE_ERAND48_R 1
  1237. | #define STARPU_HAVE_STRERROR_R 1
  1238. | #define STARPU_HAVE_SETENV 1
  1239. | #define STARPU_HAVE_UNSETENV 1
  1240. | #define STARPU_HAVE_NEARBYINTF 1
  1241. | #define STARPU_HAVE_RINTF 1
  1242. | #define HAVE_MALLOC_H 1
  1243. | #define STARPU_HAVE_MALLOC_H 1
  1244. | /* end confdefs.h. */
  1245. | #include <stdio.h>
  1246. | #ifdef HAVE_SYS_TYPES_H
  1247. | # include <sys/types.h>
  1248. | #endif
  1249. | #ifdef HAVE_SYS_STAT_H
  1250. | # include <sys/stat.h>
  1251. | #endif
  1252. | #ifdef STDC_HEADERS
  1253. | # include <stdlib.h>
  1254. | # include <stddef.h>
  1255. | #else
  1256. | # ifdef HAVE_STDLIB_H
  1257. | # include <stdlib.h>
  1258. | # endif
  1259. | #endif
  1260. | #ifdef HAVE_STRING_H
  1261. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1262. | # include <memory.h>
  1263. | # endif
  1264. | # include <string.h>
  1265. | #endif
  1266. | #ifdef HAVE_STRINGS_H
  1267. | # include <strings.h>
  1268. | #endif
  1269. | #ifdef HAVE_INTTYPES_H
  1270. | # include <inttypes.h>
  1271. | #endif
  1272. | #ifdef HAVE_STDINT_H
  1273. | # include <stdint.h>
  1274. | #endif
  1275. | #ifdef HAVE_UNISTD_H
  1276. | # include <unistd.h>
  1277. | #endif
  1278. | #include <valgrind/valgrind.h>
  1279. configure:27332: result: no
  1280. configure:27332: checking valgrind/valgrind.h presence
  1281. configure:27332: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  1282. conftest.c:66:10: fatal error: valgrind/valgrind.h: No such file or directory
  1283. #include <valgrind/valgrind.h>
  1284. ^~~~~~~~~~~~~~~~~~~~~
  1285. compilation terminated.
  1286. configure:27332: $? = 1
  1287. configure: failed program was:
  1288. | /* confdefs.h */
  1289. | #define PACKAGE_NAME "StarPU"
  1290. | #define PACKAGE_TARNAME "starpu"
  1291. | #define PACKAGE_VERSION "1.3.99"
  1292. | #define PACKAGE_STRING "StarPU 1.3.99"
  1293. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1294. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1295. | #define STARPU_MAJOR_VERSION 1
  1296. | #define STARPU_MINOR_VERSION 3
  1297. | #define STARPU_RELEASE_VERSION 99
  1298. | #define PACKAGE "starpu"
  1299. | #define VERSION "1.3.99"
  1300. | #define STARPU_AUTOFPGA 1
  1301. | #define STARPU_MAXFPGADEVS 12
  1302. | #define STARPU_USE_FPGA 1
  1303. | #define STDC_HEADERS 1
  1304. | #define HAVE_SYS_TYPES_H 1
  1305. | #define HAVE_SYS_STAT_H 1
  1306. | #define HAVE_STDLIB_H 1
  1307. | #define HAVE_STRING_H 1
  1308. | #define HAVE_MEMORY_H 1
  1309. | #define HAVE_STRINGS_H 1
  1310. | #define HAVE_INTTYPES_H 1
  1311. | #define HAVE_STDINT_H 1
  1312. | #define HAVE_UNISTD_H 1
  1313. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1314. | #define STARPU_MAXMPIDEVS 0
  1315. | #define HAVE_CXX11 1
  1316. | #define STARPU_HAVE_CXX11 1
  1317. | #define HAVE_DLFCN_H 1
  1318. | #define LT_OBJDIR ".libs/"
  1319. | #define STDC_HEADERS 1
  1320. | #define restrict __restrict
  1321. | #define STARPU_MIC_USE_RMA 1
  1322. | #define STARPU_MAXNUMANODES 2
  1323. | #define STARPU_LINUX_SYS 1
  1324. | #define SIZEOF_VOID_P 8
  1325. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1326. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1327. | #define HAVE_UNISTD_H 1
  1328. | #define STARPU_HAVE_UNISTD_H 1
  1329. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1330. | #define HAVE_LIBPTHREAD 1
  1331. | #define HAVE_SYSCONF 1
  1332. | #define HAVE_GETRLIMIT 1
  1333. | #define HAVE_SCANDIR 1
  1334. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1335. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1336. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1337. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1338. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1339. | #define HAVE_POSIX_MEMALIGN 1
  1340. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1341. | #define HAVE_MEMALIGN 1
  1342. | #define STARPU_HAVE_MEMALIGN 1
  1343. | #define STARPU_USE_DRAND48 1
  1344. | #define STARPU_USE_ERAND48_R 1
  1345. | #define STARPU_HAVE_STRERROR_R 1
  1346. | #define STARPU_HAVE_SETENV 1
  1347. | #define STARPU_HAVE_UNSETENV 1
  1348. | #define STARPU_HAVE_NEARBYINTF 1
  1349. | #define STARPU_HAVE_RINTF 1
  1350. | #define HAVE_MALLOC_H 1
  1351. | #define STARPU_HAVE_MALLOC_H 1
  1352. | /* end confdefs.h. */
  1353. | #include <valgrind/valgrind.h>
  1354. configure:27332: result: no
  1355. configure:27332: checking for valgrind/valgrind.h
  1356. configure:27332: result: no
  1357. configure:27346: checking valgrind/memcheck.h usability
  1358. configure:27346: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  1359. conftest.c:99:10: fatal error: valgrind/memcheck.h: No such file or directory
  1360. #include <valgrind/memcheck.h>
  1361. ^~~~~~~~~~~~~~~~~~~~~
  1362. compilation terminated.
  1363. configure:27346: $? = 1
  1364. configure: failed program was:
  1365. | /* confdefs.h */
  1366. | #define PACKAGE_NAME "StarPU"
  1367. | #define PACKAGE_TARNAME "starpu"
  1368. | #define PACKAGE_VERSION "1.3.99"
  1369. | #define PACKAGE_STRING "StarPU 1.3.99"
  1370. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1371. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1372. | #define STARPU_MAJOR_VERSION 1
  1373. | #define STARPU_MINOR_VERSION 3
  1374. | #define STARPU_RELEASE_VERSION 99
  1375. | #define PACKAGE "starpu"
  1376. | #define VERSION "1.3.99"
  1377. | #define STARPU_AUTOFPGA 1
  1378. | #define STARPU_MAXFPGADEVS 12
  1379. | #define STARPU_USE_FPGA 1
  1380. | #define STDC_HEADERS 1
  1381. | #define HAVE_SYS_TYPES_H 1
  1382. | #define HAVE_SYS_STAT_H 1
  1383. | #define HAVE_STDLIB_H 1
  1384. | #define HAVE_STRING_H 1
  1385. | #define HAVE_MEMORY_H 1
  1386. | #define HAVE_STRINGS_H 1
  1387. | #define HAVE_INTTYPES_H 1
  1388. | #define HAVE_STDINT_H 1
  1389. | #define HAVE_UNISTD_H 1
  1390. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1391. | #define STARPU_MAXMPIDEVS 0
  1392. | #define HAVE_CXX11 1
  1393. | #define STARPU_HAVE_CXX11 1
  1394. | #define HAVE_DLFCN_H 1
  1395. | #define LT_OBJDIR ".libs/"
  1396. | #define STDC_HEADERS 1
  1397. | #define restrict __restrict
  1398. | #define STARPU_MIC_USE_RMA 1
  1399. | #define STARPU_MAXNUMANODES 2
  1400. | #define STARPU_LINUX_SYS 1
  1401. | #define SIZEOF_VOID_P 8
  1402. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1403. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1404. | #define HAVE_UNISTD_H 1
  1405. | #define STARPU_HAVE_UNISTD_H 1
  1406. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1407. | #define HAVE_LIBPTHREAD 1
  1408. | #define HAVE_SYSCONF 1
  1409. | #define HAVE_GETRLIMIT 1
  1410. | #define HAVE_SCANDIR 1
  1411. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1412. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1413. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1414. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1415. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1416. | #define HAVE_POSIX_MEMALIGN 1
  1417. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1418. | #define HAVE_MEMALIGN 1
  1419. | #define STARPU_HAVE_MEMALIGN 1
  1420. | #define STARPU_USE_DRAND48 1
  1421. | #define STARPU_USE_ERAND48_R 1
  1422. | #define STARPU_HAVE_STRERROR_R 1
  1423. | #define STARPU_HAVE_SETENV 1
  1424. | #define STARPU_HAVE_UNSETENV 1
  1425. | #define STARPU_HAVE_NEARBYINTF 1
  1426. | #define STARPU_HAVE_RINTF 1
  1427. | #define HAVE_MALLOC_H 1
  1428. | #define STARPU_HAVE_MALLOC_H 1
  1429. | /* end confdefs.h. */
  1430. | #include <stdio.h>
  1431. | #ifdef HAVE_SYS_TYPES_H
  1432. | # include <sys/types.h>
  1433. | #endif
  1434. | #ifdef HAVE_SYS_STAT_H
  1435. | # include <sys/stat.h>
  1436. | #endif
  1437. | #ifdef STDC_HEADERS
  1438. | # include <stdlib.h>
  1439. | # include <stddef.h>
  1440. | #else
  1441. | # ifdef HAVE_STDLIB_H
  1442. | # include <stdlib.h>
  1443. | # endif
  1444. | #endif
  1445. | #ifdef HAVE_STRING_H
  1446. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1447. | # include <memory.h>
  1448. | # endif
  1449. | # include <string.h>
  1450. | #endif
  1451. | #ifdef HAVE_STRINGS_H
  1452. | # include <strings.h>
  1453. | #endif
  1454. | #ifdef HAVE_INTTYPES_H
  1455. | # include <inttypes.h>
  1456. | #endif
  1457. | #ifdef HAVE_STDINT_H
  1458. | # include <stdint.h>
  1459. | #endif
  1460. | #ifdef HAVE_UNISTD_H
  1461. | # include <unistd.h>
  1462. | #endif
  1463. | #include <valgrind/memcheck.h>
  1464. configure:27346: result: no
  1465. configure:27346: checking valgrind/memcheck.h presence
  1466. configure:27346: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  1467. conftest.c:66:10: fatal error: valgrind/memcheck.h: No such file or directory
  1468. #include <valgrind/memcheck.h>
  1469. ^~~~~~~~~~~~~~~~~~~~~
  1470. compilation terminated.
  1471. configure:27346: $? = 1
  1472. configure: failed program was:
  1473. | /* confdefs.h */
  1474. | #define PACKAGE_NAME "StarPU"
  1475. | #define PACKAGE_TARNAME "starpu"
  1476. | #define PACKAGE_VERSION "1.3.99"
  1477. | #define PACKAGE_STRING "StarPU 1.3.99"
  1478. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1479. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1480. | #define STARPU_MAJOR_VERSION 1
  1481. | #define STARPU_MINOR_VERSION 3
  1482. | #define STARPU_RELEASE_VERSION 99
  1483. | #define PACKAGE "starpu"
  1484. | #define VERSION "1.3.99"
  1485. | #define STARPU_AUTOFPGA 1
  1486. | #define STARPU_MAXFPGADEVS 12
  1487. | #define STARPU_USE_FPGA 1
  1488. | #define STDC_HEADERS 1
  1489. | #define HAVE_SYS_TYPES_H 1
  1490. | #define HAVE_SYS_STAT_H 1
  1491. | #define HAVE_STDLIB_H 1
  1492. | #define HAVE_STRING_H 1
  1493. | #define HAVE_MEMORY_H 1
  1494. | #define HAVE_STRINGS_H 1
  1495. | #define HAVE_INTTYPES_H 1
  1496. | #define HAVE_STDINT_H 1
  1497. | #define HAVE_UNISTD_H 1
  1498. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1499. | #define STARPU_MAXMPIDEVS 0
  1500. | #define HAVE_CXX11 1
  1501. | #define STARPU_HAVE_CXX11 1
  1502. | #define HAVE_DLFCN_H 1
  1503. | #define LT_OBJDIR ".libs/"
  1504. | #define STDC_HEADERS 1
  1505. | #define restrict __restrict
  1506. | #define STARPU_MIC_USE_RMA 1
  1507. | #define STARPU_MAXNUMANODES 2
  1508. | #define STARPU_LINUX_SYS 1
  1509. | #define SIZEOF_VOID_P 8
  1510. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1511. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1512. | #define HAVE_UNISTD_H 1
  1513. | #define STARPU_HAVE_UNISTD_H 1
  1514. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1515. | #define HAVE_LIBPTHREAD 1
  1516. | #define HAVE_SYSCONF 1
  1517. | #define HAVE_GETRLIMIT 1
  1518. | #define HAVE_SCANDIR 1
  1519. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1520. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1521. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1522. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1523. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1524. | #define HAVE_POSIX_MEMALIGN 1
  1525. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1526. | #define HAVE_MEMALIGN 1
  1527. | #define STARPU_HAVE_MEMALIGN 1
  1528. | #define STARPU_USE_DRAND48 1
  1529. | #define STARPU_USE_ERAND48_R 1
  1530. | #define STARPU_HAVE_STRERROR_R 1
  1531. | #define STARPU_HAVE_SETENV 1
  1532. | #define STARPU_HAVE_UNSETENV 1
  1533. | #define STARPU_HAVE_NEARBYINTF 1
  1534. | #define STARPU_HAVE_RINTF 1
  1535. | #define HAVE_MALLOC_H 1
  1536. | #define STARPU_HAVE_MALLOC_H 1
  1537. | /* end confdefs.h. */
  1538. | #include <valgrind/memcheck.h>
  1539. configure:27346: result: no
  1540. configure:27346: checking for valgrind/memcheck.h
  1541. configure:27346: result: no
  1542. configure:27360: checking valgrind/helgrind.h usability
  1543. configure:27360: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  1544. conftest.c:99:10: fatal error: valgrind/helgrind.h: No such file or directory
  1545. #include <valgrind/helgrind.h>
  1546. ^~~~~~~~~~~~~~~~~~~~~
  1547. compilation terminated.
  1548. configure:27360: $? = 1
  1549. configure: failed program was:
  1550. | /* confdefs.h */
  1551. | #define PACKAGE_NAME "StarPU"
  1552. | #define PACKAGE_TARNAME "starpu"
  1553. | #define PACKAGE_VERSION "1.3.99"
  1554. | #define PACKAGE_STRING "StarPU 1.3.99"
  1555. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1556. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1557. | #define STARPU_MAJOR_VERSION 1
  1558. | #define STARPU_MINOR_VERSION 3
  1559. | #define STARPU_RELEASE_VERSION 99
  1560. | #define PACKAGE "starpu"
  1561. | #define VERSION "1.3.99"
  1562. | #define STARPU_AUTOFPGA 1
  1563. | #define STARPU_MAXFPGADEVS 12
  1564. | #define STARPU_USE_FPGA 1
  1565. | #define STDC_HEADERS 1
  1566. | #define HAVE_SYS_TYPES_H 1
  1567. | #define HAVE_SYS_STAT_H 1
  1568. | #define HAVE_STDLIB_H 1
  1569. | #define HAVE_STRING_H 1
  1570. | #define HAVE_MEMORY_H 1
  1571. | #define HAVE_STRINGS_H 1
  1572. | #define HAVE_INTTYPES_H 1
  1573. | #define HAVE_STDINT_H 1
  1574. | #define HAVE_UNISTD_H 1
  1575. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1576. | #define STARPU_MAXMPIDEVS 0
  1577. | #define HAVE_CXX11 1
  1578. | #define STARPU_HAVE_CXX11 1
  1579. | #define HAVE_DLFCN_H 1
  1580. | #define LT_OBJDIR ".libs/"
  1581. | #define STDC_HEADERS 1
  1582. | #define restrict __restrict
  1583. | #define STARPU_MIC_USE_RMA 1
  1584. | #define STARPU_MAXNUMANODES 2
  1585. | #define STARPU_LINUX_SYS 1
  1586. | #define SIZEOF_VOID_P 8
  1587. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1588. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1589. | #define HAVE_UNISTD_H 1
  1590. | #define STARPU_HAVE_UNISTD_H 1
  1591. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1592. | #define HAVE_LIBPTHREAD 1
  1593. | #define HAVE_SYSCONF 1
  1594. | #define HAVE_GETRLIMIT 1
  1595. | #define HAVE_SCANDIR 1
  1596. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1597. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1598. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1599. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1600. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1601. | #define HAVE_POSIX_MEMALIGN 1
  1602. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1603. | #define HAVE_MEMALIGN 1
  1604. | #define STARPU_HAVE_MEMALIGN 1
  1605. | #define STARPU_USE_DRAND48 1
  1606. | #define STARPU_USE_ERAND48_R 1
  1607. | #define STARPU_HAVE_STRERROR_R 1
  1608. | #define STARPU_HAVE_SETENV 1
  1609. | #define STARPU_HAVE_UNSETENV 1
  1610. | #define STARPU_HAVE_NEARBYINTF 1
  1611. | #define STARPU_HAVE_RINTF 1
  1612. | #define HAVE_MALLOC_H 1
  1613. | #define STARPU_HAVE_MALLOC_H 1
  1614. | /* end confdefs.h. */
  1615. | #include <stdio.h>
  1616. | #ifdef HAVE_SYS_TYPES_H
  1617. | # include <sys/types.h>
  1618. | #endif
  1619. | #ifdef HAVE_SYS_STAT_H
  1620. | # include <sys/stat.h>
  1621. | #endif
  1622. | #ifdef STDC_HEADERS
  1623. | # include <stdlib.h>
  1624. | # include <stddef.h>
  1625. | #else
  1626. | # ifdef HAVE_STDLIB_H
  1627. | # include <stdlib.h>
  1628. | # endif
  1629. | #endif
  1630. | #ifdef HAVE_STRING_H
  1631. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1632. | # include <memory.h>
  1633. | # endif
  1634. | # include <string.h>
  1635. | #endif
  1636. | #ifdef HAVE_STRINGS_H
  1637. | # include <strings.h>
  1638. | #endif
  1639. | #ifdef HAVE_INTTYPES_H
  1640. | # include <inttypes.h>
  1641. | #endif
  1642. | #ifdef HAVE_STDINT_H
  1643. | # include <stdint.h>
  1644. | #endif
  1645. | #ifdef HAVE_UNISTD_H
  1646. | # include <unistd.h>
  1647. | #endif
  1648. | #include <valgrind/helgrind.h>
  1649. configure:27360: result: no
  1650. configure:27360: checking valgrind/helgrind.h presence
  1651. configure:27360: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  1652. conftest.c:66:10: fatal error: valgrind/helgrind.h: No such file or directory
  1653. #include <valgrind/helgrind.h>
  1654. ^~~~~~~~~~~~~~~~~~~~~
  1655. compilation terminated.
  1656. configure:27360: $? = 1
  1657. configure: failed program was:
  1658. | /* confdefs.h */
  1659. | #define PACKAGE_NAME "StarPU"
  1660. | #define PACKAGE_TARNAME "starpu"
  1661. | #define PACKAGE_VERSION "1.3.99"
  1662. | #define PACKAGE_STRING "StarPU 1.3.99"
  1663. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1664. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1665. | #define STARPU_MAJOR_VERSION 1
  1666. | #define STARPU_MINOR_VERSION 3
  1667. | #define STARPU_RELEASE_VERSION 99
  1668. | #define PACKAGE "starpu"
  1669. | #define VERSION "1.3.99"
  1670. | #define STARPU_AUTOFPGA 1
  1671. | #define STARPU_MAXFPGADEVS 12
  1672. | #define STARPU_USE_FPGA 1
  1673. | #define STDC_HEADERS 1
  1674. | #define HAVE_SYS_TYPES_H 1
  1675. | #define HAVE_SYS_STAT_H 1
  1676. | #define HAVE_STDLIB_H 1
  1677. | #define HAVE_STRING_H 1
  1678. | #define HAVE_MEMORY_H 1
  1679. | #define HAVE_STRINGS_H 1
  1680. | #define HAVE_INTTYPES_H 1
  1681. | #define HAVE_STDINT_H 1
  1682. | #define HAVE_UNISTD_H 1
  1683. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1684. | #define STARPU_MAXMPIDEVS 0
  1685. | #define HAVE_CXX11 1
  1686. | #define STARPU_HAVE_CXX11 1
  1687. | #define HAVE_DLFCN_H 1
  1688. | #define LT_OBJDIR ".libs/"
  1689. | #define STDC_HEADERS 1
  1690. | #define restrict __restrict
  1691. | #define STARPU_MIC_USE_RMA 1
  1692. | #define STARPU_MAXNUMANODES 2
  1693. | #define STARPU_LINUX_SYS 1
  1694. | #define SIZEOF_VOID_P 8
  1695. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1696. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1697. | #define HAVE_UNISTD_H 1
  1698. | #define STARPU_HAVE_UNISTD_H 1
  1699. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1700. | #define HAVE_LIBPTHREAD 1
  1701. | #define HAVE_SYSCONF 1
  1702. | #define HAVE_GETRLIMIT 1
  1703. | #define HAVE_SCANDIR 1
  1704. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1705. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1706. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1707. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1708. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1709. | #define HAVE_POSIX_MEMALIGN 1
  1710. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1711. | #define HAVE_MEMALIGN 1
  1712. | #define STARPU_HAVE_MEMALIGN 1
  1713. | #define STARPU_USE_DRAND48 1
  1714. | #define STARPU_USE_ERAND48_R 1
  1715. | #define STARPU_HAVE_STRERROR_R 1
  1716. | #define STARPU_HAVE_SETENV 1
  1717. | #define STARPU_HAVE_UNSETENV 1
  1718. | #define STARPU_HAVE_NEARBYINTF 1
  1719. | #define STARPU_HAVE_RINTF 1
  1720. | #define HAVE_MALLOC_H 1
  1721. | #define STARPU_HAVE_MALLOC_H 1
  1722. | /* end confdefs.h. */
  1723. | #include <valgrind/helgrind.h>
  1724. configure:27360: result: no
  1725. configure:27360: checking for valgrind/helgrind.h
  1726. configure:27360: result: no
  1727. configure:27379: checking for sched_yield
  1728. configure:27379: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lpthread >&5
  1729. configure:27379: $? = 0
  1730. configure:27379: result: yes
  1731. configure:27389: checking aio.h usability
  1732. configure:27389: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  1733. configure:27389: $? = 0
  1734. configure:27389: result: yes
  1735. configure:27389: checking aio.h presence
  1736. configure:27389: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  1737. configure:27389: $? = 0
  1738. configure:27389: result: yes
  1739. configure:27389: checking for aio.h
  1740. configure:27389: result: yes
  1741. configure:27399: checking for aio_read in -lrt
  1742. configure:27424: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  1743. configure:27424: $? = 0
  1744. configure:27433: result: yes
  1745. configure:27448: checking for copy_file_range
  1746. configure:27448: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  1747. /tmp/cc49UCny.o: In function `main':
  1748. /home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/conftest.c:103: undefined reference to `copy_file_range'
  1749. collect2: error: ld returned 1 exit status
  1750. configure:27448: $? = 1
  1751. configure: failed program was:
  1752. | /* confdefs.h */
  1753. | #define PACKAGE_NAME "StarPU"
  1754. | #define PACKAGE_TARNAME "starpu"
  1755. | #define PACKAGE_VERSION "1.3.99"
  1756. | #define PACKAGE_STRING "StarPU 1.3.99"
  1757. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1758. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1759. | #define STARPU_MAJOR_VERSION 1
  1760. | #define STARPU_MINOR_VERSION 3
  1761. | #define STARPU_RELEASE_VERSION 99
  1762. | #define PACKAGE "starpu"
  1763. | #define VERSION "1.3.99"
  1764. | #define STARPU_AUTOFPGA 1
  1765. | #define STARPU_MAXFPGADEVS 12
  1766. | #define STARPU_USE_FPGA 1
  1767. | #define STDC_HEADERS 1
  1768. | #define HAVE_SYS_TYPES_H 1
  1769. | #define HAVE_SYS_STAT_H 1
  1770. | #define HAVE_STDLIB_H 1
  1771. | #define HAVE_STRING_H 1
  1772. | #define HAVE_MEMORY_H 1
  1773. | #define HAVE_STRINGS_H 1
  1774. | #define HAVE_INTTYPES_H 1
  1775. | #define HAVE_STDINT_H 1
  1776. | #define HAVE_UNISTD_H 1
  1777. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1778. | #define STARPU_MAXMPIDEVS 0
  1779. | #define HAVE_CXX11 1
  1780. | #define STARPU_HAVE_CXX11 1
  1781. | #define HAVE_DLFCN_H 1
  1782. | #define LT_OBJDIR ".libs/"
  1783. | #define STDC_HEADERS 1
  1784. | #define restrict __restrict
  1785. | #define STARPU_MIC_USE_RMA 1
  1786. | #define STARPU_MAXNUMANODES 2
  1787. | #define STARPU_LINUX_SYS 1
  1788. | #define SIZEOF_VOID_P 8
  1789. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1790. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1791. | #define HAVE_UNISTD_H 1
  1792. | #define STARPU_HAVE_UNISTD_H 1
  1793. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1794. | #define HAVE_LIBPTHREAD 1
  1795. | #define HAVE_SYSCONF 1
  1796. | #define HAVE_GETRLIMIT 1
  1797. | #define HAVE_SCANDIR 1
  1798. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1799. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1800. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1801. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1802. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1803. | #define HAVE_POSIX_MEMALIGN 1
  1804. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1805. | #define HAVE_MEMALIGN 1
  1806. | #define STARPU_HAVE_MEMALIGN 1
  1807. | #define STARPU_USE_DRAND48 1
  1808. | #define STARPU_USE_ERAND48_R 1
  1809. | #define STARPU_HAVE_STRERROR_R 1
  1810. | #define STARPU_HAVE_SETENV 1
  1811. | #define STARPU_HAVE_UNSETENV 1
  1812. | #define STARPU_HAVE_NEARBYINTF 1
  1813. | #define STARPU_HAVE_RINTF 1
  1814. | #define HAVE_MALLOC_H 1
  1815. | #define STARPU_HAVE_MALLOC_H 1
  1816. | #define STARPU_HAVE_SCHED_YIELD 1
  1817. | #define HAVE_AIO_H 1
  1818. | #define HAVE_LIBRT 1
  1819. | /* end confdefs.h. */
  1820. | /* Define copy_file_range to an innocuous variant, in case <limits.h> declares copy_file_range.
  1821. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1822. | #define copy_file_range innocuous_copy_file_range
  1823. |
  1824. | /* System header to define __stub macros and hopefully few prototypes,
  1825. | which can conflict with char copy_file_range (); below.
  1826. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1827. | <limits.h> exists even on freestanding compilers. */
  1828. |
  1829. | #ifdef __STDC__
  1830. | # include <limits.h>
  1831. | #else
  1832. | # include <assert.h>
  1833. | #endif
  1834. |
  1835. | #undef copy_file_range
  1836. |
  1837. | /* Override any GCC internal prototype to avoid an error.
  1838. | Use char because int might match the return type of a GCC
  1839. | builtin and then its argument prototype would still apply. */
  1840. | #ifdef __cplusplus
  1841. | extern "C"
  1842. | #endif
  1843. | char copy_file_range ();
  1844. | /* The GNU C library defines this for functions which it implements
  1845. | to always fail with ENOSYS. Some functions are actually named
  1846. | something starting with __ and the normal name is an alias. */
  1847. | #if defined __stub_copy_file_range || defined __stub___copy_file_range
  1848. | choke me
  1849. | #endif
  1850. |
  1851. | int
  1852. | main ()
  1853. | {
  1854. | return copy_file_range ();
  1855. | ;
  1856. | return 0;
  1857. | }
  1858. configure:27448: result: no
  1859. configure:27460: checking for mkostemp
  1860. configure:27460: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  1861. configure:27460: $? = 0
  1862. configure:27460: result: yes
  1863. configure:27471: checking for mkdtemp
  1864. configure:27471: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  1865. configure:27471: $? = 0
  1866. configure:27471: result: yes
  1867. configure:27484: checking for pread
  1868. configure:27484: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  1869. configure:27484: $? = 0
  1870. configure:27484: result: yes
  1871. configure:27484: checking for pwrite
  1872. configure:27484: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  1873. configure:27484: $? = 0
  1874. configure:27484: result: yes
  1875. configure:27523: checking hdf5.h usability
  1876. configure:27523: gcc -c -I/usr/include/hdf5 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  1877. conftest.c:106:10: fatal error: hdf5.h: No such file or directory
  1878. #include <hdf5.h>
  1879. ^~~~~~~~
  1880. compilation terminated.
  1881. configure:27523: $? = 1
  1882. configure: failed program was:
  1883. | /* confdefs.h */
  1884. | #define PACKAGE_NAME "StarPU"
  1885. | #define PACKAGE_TARNAME "starpu"
  1886. | #define PACKAGE_VERSION "1.3.99"
  1887. | #define PACKAGE_STRING "StarPU 1.3.99"
  1888. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  1889. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  1890. | #define STARPU_MAJOR_VERSION 1
  1891. | #define STARPU_MINOR_VERSION 3
  1892. | #define STARPU_RELEASE_VERSION 99
  1893. | #define PACKAGE "starpu"
  1894. | #define VERSION "1.3.99"
  1895. | #define STARPU_AUTOFPGA 1
  1896. | #define STARPU_MAXFPGADEVS 12
  1897. | #define STARPU_USE_FPGA 1
  1898. | #define STDC_HEADERS 1
  1899. | #define HAVE_SYS_TYPES_H 1
  1900. | #define HAVE_SYS_STAT_H 1
  1901. | #define HAVE_STDLIB_H 1
  1902. | #define HAVE_STRING_H 1
  1903. | #define HAVE_MEMORY_H 1
  1904. | #define HAVE_STRINGS_H 1
  1905. | #define HAVE_INTTYPES_H 1
  1906. | #define HAVE_STDINT_H 1
  1907. | #define HAVE_UNISTD_H 1
  1908. | #define STARPU_NON_BLOCKING_DRIVERS 1
  1909. | #define STARPU_MAXMPIDEVS 0
  1910. | #define HAVE_CXX11 1
  1911. | #define STARPU_HAVE_CXX11 1
  1912. | #define HAVE_DLFCN_H 1
  1913. | #define LT_OBJDIR ".libs/"
  1914. | #define STDC_HEADERS 1
  1915. | #define restrict __restrict
  1916. | #define STARPU_MIC_USE_RMA 1
  1917. | #define STARPU_MAXNUMANODES 2
  1918. | #define STARPU_LINUX_SYS 1
  1919. | #define SIZEOF_VOID_P 8
  1920. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  1921. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  1922. | #define HAVE_UNISTD_H 1
  1923. | #define STARPU_HAVE_UNISTD_H 1
  1924. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  1925. | #define HAVE_LIBPTHREAD 1
  1926. | #define HAVE_SYSCONF 1
  1927. | #define HAVE_GETRLIMIT 1
  1928. | #define HAVE_SCANDIR 1
  1929. | #define HAVE_PTHREAD_SPIN_LOCK 1
  1930. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  1931. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  1932. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  1933. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  1934. | #define HAVE_POSIX_MEMALIGN 1
  1935. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  1936. | #define HAVE_MEMALIGN 1
  1937. | #define STARPU_HAVE_MEMALIGN 1
  1938. | #define STARPU_USE_DRAND48 1
  1939. | #define STARPU_USE_ERAND48_R 1
  1940. | #define STARPU_HAVE_STRERROR_R 1
  1941. | #define STARPU_HAVE_SETENV 1
  1942. | #define STARPU_HAVE_UNSETENV 1
  1943. | #define STARPU_HAVE_NEARBYINTF 1
  1944. | #define STARPU_HAVE_RINTF 1
  1945. | #define HAVE_MALLOC_H 1
  1946. | #define STARPU_HAVE_MALLOC_H 1
  1947. | #define STARPU_HAVE_SCHED_YIELD 1
  1948. | #define HAVE_AIO_H 1
  1949. | #define HAVE_LIBRT 1
  1950. | #define HAVE_MKOSTEMP 1
  1951. | #define HAVE_MKDTEMP 1
  1952. | #define HAVE_PREAD 1
  1953. | #define HAVE_PWRITE 1
  1954. | /* end confdefs.h. */
  1955. | #include <stdio.h>
  1956. | #ifdef HAVE_SYS_TYPES_H
  1957. | # include <sys/types.h>
  1958. | #endif
  1959. | #ifdef HAVE_SYS_STAT_H
  1960. | # include <sys/stat.h>
  1961. | #endif
  1962. | #ifdef STDC_HEADERS
  1963. | # include <stdlib.h>
  1964. | # include <stddef.h>
  1965. | #else
  1966. | # ifdef HAVE_STDLIB_H
  1967. | # include <stdlib.h>
  1968. | # endif
  1969. | #endif
  1970. | #ifdef HAVE_STRING_H
  1971. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1972. | # include <memory.h>
  1973. | # endif
  1974. | # include <string.h>
  1975. | #endif
  1976. | #ifdef HAVE_STRINGS_H
  1977. | # include <strings.h>
  1978. | #endif
  1979. | #ifdef HAVE_INTTYPES_H
  1980. | # include <inttypes.h>
  1981. | #endif
  1982. | #ifdef HAVE_STDINT_H
  1983. | # include <stdint.h>
  1984. | #endif
  1985. | #ifdef HAVE_UNISTD_H
  1986. | # include <unistd.h>
  1987. | #endif
  1988. | #include <hdf5.h>
  1989. configure:27523: result: no
  1990. configure:27523: checking hdf5.h presence
  1991. configure:27523: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  1992. conftest.c:73:10: fatal error: hdf5.h: No such file or directory
  1993. #include <hdf5.h>
  1994. ^~~~~~~~
  1995. compilation terminated.
  1996. configure:27523: $? = 1
  1997. configure: failed program was:
  1998. | /* confdefs.h */
  1999. | #define PACKAGE_NAME "StarPU"
  2000. | #define PACKAGE_TARNAME "starpu"
  2001. | #define PACKAGE_VERSION "1.3.99"
  2002. | #define PACKAGE_STRING "StarPU 1.3.99"
  2003. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2004. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2005. | #define STARPU_MAJOR_VERSION 1
  2006. | #define STARPU_MINOR_VERSION 3
  2007. | #define STARPU_RELEASE_VERSION 99
  2008. | #define PACKAGE "starpu"
  2009. | #define VERSION "1.3.99"
  2010. | #define STARPU_AUTOFPGA 1
  2011. | #define STARPU_MAXFPGADEVS 12
  2012. | #define STARPU_USE_FPGA 1
  2013. | #define STDC_HEADERS 1
  2014. | #define HAVE_SYS_TYPES_H 1
  2015. | #define HAVE_SYS_STAT_H 1
  2016. | #define HAVE_STDLIB_H 1
  2017. | #define HAVE_STRING_H 1
  2018. | #define HAVE_MEMORY_H 1
  2019. | #define HAVE_STRINGS_H 1
  2020. | #define HAVE_INTTYPES_H 1
  2021. | #define HAVE_STDINT_H 1
  2022. | #define HAVE_UNISTD_H 1
  2023. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2024. | #define STARPU_MAXMPIDEVS 0
  2025. | #define HAVE_CXX11 1
  2026. | #define STARPU_HAVE_CXX11 1
  2027. | #define HAVE_DLFCN_H 1
  2028. | #define LT_OBJDIR ".libs/"
  2029. | #define STDC_HEADERS 1
  2030. | #define restrict __restrict
  2031. | #define STARPU_MIC_USE_RMA 1
  2032. | #define STARPU_MAXNUMANODES 2
  2033. | #define STARPU_LINUX_SYS 1
  2034. | #define SIZEOF_VOID_P 8
  2035. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2036. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2037. | #define HAVE_UNISTD_H 1
  2038. | #define STARPU_HAVE_UNISTD_H 1
  2039. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2040. | #define HAVE_LIBPTHREAD 1
  2041. | #define HAVE_SYSCONF 1
  2042. | #define HAVE_GETRLIMIT 1
  2043. | #define HAVE_SCANDIR 1
  2044. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2045. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2046. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2047. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2048. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2049. | #define HAVE_POSIX_MEMALIGN 1
  2050. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2051. | #define HAVE_MEMALIGN 1
  2052. | #define STARPU_HAVE_MEMALIGN 1
  2053. | #define STARPU_USE_DRAND48 1
  2054. | #define STARPU_USE_ERAND48_R 1
  2055. | #define STARPU_HAVE_STRERROR_R 1
  2056. | #define STARPU_HAVE_SETENV 1
  2057. | #define STARPU_HAVE_UNSETENV 1
  2058. | #define STARPU_HAVE_NEARBYINTF 1
  2059. | #define STARPU_HAVE_RINTF 1
  2060. | #define HAVE_MALLOC_H 1
  2061. | #define STARPU_HAVE_MALLOC_H 1
  2062. | #define STARPU_HAVE_SCHED_YIELD 1
  2063. | #define HAVE_AIO_H 1
  2064. | #define HAVE_LIBRT 1
  2065. | #define HAVE_MKOSTEMP 1
  2066. | #define HAVE_MKDTEMP 1
  2067. | #define HAVE_PREAD 1
  2068. | #define HAVE_PWRITE 1
  2069. | /* end confdefs.h. */
  2070. | #include <hdf5.h>
  2071. configure:27523: result: no
  2072. configure:27523: checking for hdf5.h
  2073. configure:27523: result: no
  2074. configure:27523: checking hdf5.h usability
  2075. configure:27523: gcc -c -I/usr/include/hdf5/serial -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c >&5
  2076. conftest.c:106:10: fatal error: hdf5.h: No such file or directory
  2077. #include <hdf5.h>
  2078. ^~~~~~~~
  2079. compilation terminated.
  2080. configure:27523: $? = 1
  2081. configure: failed program was:
  2082. | /* confdefs.h */
  2083. | #define PACKAGE_NAME "StarPU"
  2084. | #define PACKAGE_TARNAME "starpu"
  2085. | #define PACKAGE_VERSION "1.3.99"
  2086. | #define PACKAGE_STRING "StarPU 1.3.99"
  2087. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2088. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2089. | #define STARPU_MAJOR_VERSION 1
  2090. | #define STARPU_MINOR_VERSION 3
  2091. | #define STARPU_RELEASE_VERSION 99
  2092. | #define PACKAGE "starpu"
  2093. | #define VERSION "1.3.99"
  2094. | #define STARPU_AUTOFPGA 1
  2095. | #define STARPU_MAXFPGADEVS 12
  2096. | #define STARPU_USE_FPGA 1
  2097. | #define STDC_HEADERS 1
  2098. | #define HAVE_SYS_TYPES_H 1
  2099. | #define HAVE_SYS_STAT_H 1
  2100. | #define HAVE_STDLIB_H 1
  2101. | #define HAVE_STRING_H 1
  2102. | #define HAVE_MEMORY_H 1
  2103. | #define HAVE_STRINGS_H 1
  2104. | #define HAVE_INTTYPES_H 1
  2105. | #define HAVE_STDINT_H 1
  2106. | #define HAVE_UNISTD_H 1
  2107. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2108. | #define STARPU_MAXMPIDEVS 0
  2109. | #define HAVE_CXX11 1
  2110. | #define STARPU_HAVE_CXX11 1
  2111. | #define HAVE_DLFCN_H 1
  2112. | #define LT_OBJDIR ".libs/"
  2113. | #define STDC_HEADERS 1
  2114. | #define restrict __restrict
  2115. | #define STARPU_MIC_USE_RMA 1
  2116. | #define STARPU_MAXNUMANODES 2
  2117. | #define STARPU_LINUX_SYS 1
  2118. | #define SIZEOF_VOID_P 8
  2119. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2120. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2121. | #define HAVE_UNISTD_H 1
  2122. | #define STARPU_HAVE_UNISTD_H 1
  2123. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2124. | #define HAVE_LIBPTHREAD 1
  2125. | #define HAVE_SYSCONF 1
  2126. | #define HAVE_GETRLIMIT 1
  2127. | #define HAVE_SCANDIR 1
  2128. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2129. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2130. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2131. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2132. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2133. | #define HAVE_POSIX_MEMALIGN 1
  2134. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2135. | #define HAVE_MEMALIGN 1
  2136. | #define STARPU_HAVE_MEMALIGN 1
  2137. | #define STARPU_USE_DRAND48 1
  2138. | #define STARPU_USE_ERAND48_R 1
  2139. | #define STARPU_HAVE_STRERROR_R 1
  2140. | #define STARPU_HAVE_SETENV 1
  2141. | #define STARPU_HAVE_UNSETENV 1
  2142. | #define STARPU_HAVE_NEARBYINTF 1
  2143. | #define STARPU_HAVE_RINTF 1
  2144. | #define HAVE_MALLOC_H 1
  2145. | #define STARPU_HAVE_MALLOC_H 1
  2146. | #define STARPU_HAVE_SCHED_YIELD 1
  2147. | #define HAVE_AIO_H 1
  2148. | #define HAVE_LIBRT 1
  2149. | #define HAVE_MKOSTEMP 1
  2150. | #define HAVE_MKDTEMP 1
  2151. | #define HAVE_PREAD 1
  2152. | #define HAVE_PWRITE 1
  2153. | /* end confdefs.h. */
  2154. | #include <stdio.h>
  2155. | #ifdef HAVE_SYS_TYPES_H
  2156. | # include <sys/types.h>
  2157. | #endif
  2158. | #ifdef HAVE_SYS_STAT_H
  2159. | # include <sys/stat.h>
  2160. | #endif
  2161. | #ifdef STDC_HEADERS
  2162. | # include <stdlib.h>
  2163. | # include <stddef.h>
  2164. | #else
  2165. | # ifdef HAVE_STDLIB_H
  2166. | # include <stdlib.h>
  2167. | # endif
  2168. | #endif
  2169. | #ifdef HAVE_STRING_H
  2170. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2171. | # include <memory.h>
  2172. | # endif
  2173. | # include <string.h>
  2174. | #endif
  2175. | #ifdef HAVE_STRINGS_H
  2176. | # include <strings.h>
  2177. | #endif
  2178. | #ifdef HAVE_INTTYPES_H
  2179. | # include <inttypes.h>
  2180. | #endif
  2181. | #ifdef HAVE_STDINT_H
  2182. | # include <stdint.h>
  2183. | #endif
  2184. | #ifdef HAVE_UNISTD_H
  2185. | # include <unistd.h>
  2186. | #endif
  2187. | #include <hdf5.h>
  2188. configure:27523: result: no
  2189. configure:27523: checking hdf5.h presence
  2190. configure:27523: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include conftest.c
  2191. conftest.c:73:10: fatal error: hdf5.h: No such file or directory
  2192. #include <hdf5.h>
  2193. ^~~~~~~~
  2194. compilation terminated.
  2195. configure:27523: $? = 1
  2196. configure: failed program was:
  2197. | /* confdefs.h */
  2198. | #define PACKAGE_NAME "StarPU"
  2199. | #define PACKAGE_TARNAME "starpu"
  2200. | #define PACKAGE_VERSION "1.3.99"
  2201. | #define PACKAGE_STRING "StarPU 1.3.99"
  2202. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2203. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2204. | #define STARPU_MAJOR_VERSION 1
  2205. | #define STARPU_MINOR_VERSION 3
  2206. | #define STARPU_RELEASE_VERSION 99
  2207. | #define PACKAGE "starpu"
  2208. | #define VERSION "1.3.99"
  2209. | #define STARPU_AUTOFPGA 1
  2210. | #define STARPU_MAXFPGADEVS 12
  2211. | #define STARPU_USE_FPGA 1
  2212. | #define STDC_HEADERS 1
  2213. | #define HAVE_SYS_TYPES_H 1
  2214. | #define HAVE_SYS_STAT_H 1
  2215. | #define HAVE_STDLIB_H 1
  2216. | #define HAVE_STRING_H 1
  2217. | #define HAVE_MEMORY_H 1
  2218. | #define HAVE_STRINGS_H 1
  2219. | #define HAVE_INTTYPES_H 1
  2220. | #define HAVE_STDINT_H 1
  2221. | #define HAVE_UNISTD_H 1
  2222. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2223. | #define STARPU_MAXMPIDEVS 0
  2224. | #define HAVE_CXX11 1
  2225. | #define STARPU_HAVE_CXX11 1
  2226. | #define HAVE_DLFCN_H 1
  2227. | #define LT_OBJDIR ".libs/"
  2228. | #define STDC_HEADERS 1
  2229. | #define restrict __restrict
  2230. | #define STARPU_MIC_USE_RMA 1
  2231. | #define STARPU_MAXNUMANODES 2
  2232. | #define STARPU_LINUX_SYS 1
  2233. | #define SIZEOF_VOID_P 8
  2234. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2235. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2236. | #define HAVE_UNISTD_H 1
  2237. | #define STARPU_HAVE_UNISTD_H 1
  2238. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2239. | #define HAVE_LIBPTHREAD 1
  2240. | #define HAVE_SYSCONF 1
  2241. | #define HAVE_GETRLIMIT 1
  2242. | #define HAVE_SCANDIR 1
  2243. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2244. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2245. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2246. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2247. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2248. | #define HAVE_POSIX_MEMALIGN 1
  2249. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2250. | #define HAVE_MEMALIGN 1
  2251. | #define STARPU_HAVE_MEMALIGN 1
  2252. | #define STARPU_USE_DRAND48 1
  2253. | #define STARPU_USE_ERAND48_R 1
  2254. | #define STARPU_HAVE_STRERROR_R 1
  2255. | #define STARPU_HAVE_SETENV 1
  2256. | #define STARPU_HAVE_UNSETENV 1
  2257. | #define STARPU_HAVE_NEARBYINTF 1
  2258. | #define STARPU_HAVE_RINTF 1
  2259. | #define HAVE_MALLOC_H 1
  2260. | #define STARPU_HAVE_MALLOC_H 1
  2261. | #define STARPU_HAVE_SCHED_YIELD 1
  2262. | #define HAVE_AIO_H 1
  2263. | #define HAVE_LIBRT 1
  2264. | #define HAVE_MKOSTEMP 1
  2265. | #define HAVE_MKDTEMP 1
  2266. | #define HAVE_PREAD 1
  2267. | #define HAVE_PWRITE 1
  2268. | /* end confdefs.h. */
  2269. | #include <hdf5.h>
  2270. configure:27523: result: no
  2271. configure:27523: checking for hdf5.h
  2272. configure:27523: result: no
  2273. configure:27565: checking for main in -lhdf5
  2274. configure:27584: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/usr/lib/x86_64-linux-gnu/hdf5 conftest.c -lhdf5 >&5
  2275. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lhdf5
  2276. collect2: error: ld returned 1 exit status
  2277. configure:27584: $? = 1
  2278. configure: failed program was:
  2279. | /* confdefs.h */
  2280. | #define PACKAGE_NAME "StarPU"
  2281. | #define PACKAGE_TARNAME "starpu"
  2282. | #define PACKAGE_VERSION "1.3.99"
  2283. | #define PACKAGE_STRING "StarPU 1.3.99"
  2284. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2285. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2286. | #define STARPU_MAJOR_VERSION 1
  2287. | #define STARPU_MINOR_VERSION 3
  2288. | #define STARPU_RELEASE_VERSION 99
  2289. | #define PACKAGE "starpu"
  2290. | #define VERSION "1.3.99"
  2291. | #define STARPU_AUTOFPGA 1
  2292. | #define STARPU_MAXFPGADEVS 12
  2293. | #define STARPU_USE_FPGA 1
  2294. | #define STDC_HEADERS 1
  2295. | #define HAVE_SYS_TYPES_H 1
  2296. | #define HAVE_SYS_STAT_H 1
  2297. | #define HAVE_STDLIB_H 1
  2298. | #define HAVE_STRING_H 1
  2299. | #define HAVE_MEMORY_H 1
  2300. | #define HAVE_STRINGS_H 1
  2301. | #define HAVE_INTTYPES_H 1
  2302. | #define HAVE_STDINT_H 1
  2303. | #define HAVE_UNISTD_H 1
  2304. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2305. | #define STARPU_MAXMPIDEVS 0
  2306. | #define HAVE_CXX11 1
  2307. | #define STARPU_HAVE_CXX11 1
  2308. | #define HAVE_DLFCN_H 1
  2309. | #define LT_OBJDIR ".libs/"
  2310. | #define STDC_HEADERS 1
  2311. | #define restrict __restrict
  2312. | #define STARPU_MIC_USE_RMA 1
  2313. | #define STARPU_MAXNUMANODES 2
  2314. | #define STARPU_LINUX_SYS 1
  2315. | #define SIZEOF_VOID_P 8
  2316. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2317. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2318. | #define HAVE_UNISTD_H 1
  2319. | #define STARPU_HAVE_UNISTD_H 1
  2320. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2321. | #define HAVE_LIBPTHREAD 1
  2322. | #define HAVE_SYSCONF 1
  2323. | #define HAVE_GETRLIMIT 1
  2324. | #define HAVE_SCANDIR 1
  2325. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2326. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2327. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2328. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2329. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2330. | #define HAVE_POSIX_MEMALIGN 1
  2331. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2332. | #define HAVE_MEMALIGN 1
  2333. | #define STARPU_HAVE_MEMALIGN 1
  2334. | #define STARPU_USE_DRAND48 1
  2335. | #define STARPU_USE_ERAND48_R 1
  2336. | #define STARPU_HAVE_STRERROR_R 1
  2337. | #define STARPU_HAVE_SETENV 1
  2338. | #define STARPU_HAVE_UNSETENV 1
  2339. | #define STARPU_HAVE_NEARBYINTF 1
  2340. | #define STARPU_HAVE_RINTF 1
  2341. | #define HAVE_MALLOC_H 1
  2342. | #define STARPU_HAVE_MALLOC_H 1
  2343. | #define STARPU_HAVE_SCHED_YIELD 1
  2344. | #define HAVE_AIO_H 1
  2345. | #define HAVE_LIBRT 1
  2346. | #define HAVE_MKOSTEMP 1
  2347. | #define HAVE_MKDTEMP 1
  2348. | #define HAVE_PREAD 1
  2349. | #define HAVE_PWRITE 1
  2350. | /* end confdefs.h. */
  2351. |
  2352. |
  2353. | int
  2354. | main ()
  2355. | {
  2356. | return main ();
  2357. | ;
  2358. | return 0;
  2359. | }
  2360. configure:27593: result: no
  2361. configure:27565: checking for main in -lhdf5
  2362. configure:27584: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/usr/lib/x86_64-linux-gnu/hdf5/serial conftest.c -lhdf5 >&5
  2363. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lhdf5
  2364. collect2: error: ld returned 1 exit status
  2365. configure:27584: $? = 1
  2366. configure: failed program was:
  2367. | /* confdefs.h */
  2368. | #define PACKAGE_NAME "StarPU"
  2369. | #define PACKAGE_TARNAME "starpu"
  2370. | #define PACKAGE_VERSION "1.3.99"
  2371. | #define PACKAGE_STRING "StarPU 1.3.99"
  2372. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2373. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2374. | #define STARPU_MAJOR_VERSION 1
  2375. | #define STARPU_MINOR_VERSION 3
  2376. | #define STARPU_RELEASE_VERSION 99
  2377. | #define PACKAGE "starpu"
  2378. | #define VERSION "1.3.99"
  2379. | #define STARPU_AUTOFPGA 1
  2380. | #define STARPU_MAXFPGADEVS 12
  2381. | #define STARPU_USE_FPGA 1
  2382. | #define STDC_HEADERS 1
  2383. | #define HAVE_SYS_TYPES_H 1
  2384. | #define HAVE_SYS_STAT_H 1
  2385. | #define HAVE_STDLIB_H 1
  2386. | #define HAVE_STRING_H 1
  2387. | #define HAVE_MEMORY_H 1
  2388. | #define HAVE_STRINGS_H 1
  2389. | #define HAVE_INTTYPES_H 1
  2390. | #define HAVE_STDINT_H 1
  2391. | #define HAVE_UNISTD_H 1
  2392. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2393. | #define STARPU_MAXMPIDEVS 0
  2394. | #define HAVE_CXX11 1
  2395. | #define STARPU_HAVE_CXX11 1
  2396. | #define HAVE_DLFCN_H 1
  2397. | #define LT_OBJDIR ".libs/"
  2398. | #define STDC_HEADERS 1
  2399. | #define restrict __restrict
  2400. | #define STARPU_MIC_USE_RMA 1
  2401. | #define STARPU_MAXNUMANODES 2
  2402. | #define STARPU_LINUX_SYS 1
  2403. | #define SIZEOF_VOID_P 8
  2404. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2405. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2406. | #define HAVE_UNISTD_H 1
  2407. | #define STARPU_HAVE_UNISTD_H 1
  2408. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2409. | #define HAVE_LIBPTHREAD 1
  2410. | #define HAVE_SYSCONF 1
  2411. | #define HAVE_GETRLIMIT 1
  2412. | #define HAVE_SCANDIR 1
  2413. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2414. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2415. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2416. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2417. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2418. | #define HAVE_POSIX_MEMALIGN 1
  2419. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2420. | #define HAVE_MEMALIGN 1
  2421. | #define STARPU_HAVE_MEMALIGN 1
  2422. | #define STARPU_USE_DRAND48 1
  2423. | #define STARPU_USE_ERAND48_R 1
  2424. | #define STARPU_HAVE_STRERROR_R 1
  2425. | #define STARPU_HAVE_SETENV 1
  2426. | #define STARPU_HAVE_UNSETENV 1
  2427. | #define STARPU_HAVE_NEARBYINTF 1
  2428. | #define STARPU_HAVE_RINTF 1
  2429. | #define HAVE_MALLOC_H 1
  2430. | #define STARPU_HAVE_MALLOC_H 1
  2431. | #define STARPU_HAVE_SCHED_YIELD 1
  2432. | #define HAVE_AIO_H 1
  2433. | #define HAVE_LIBRT 1
  2434. | #define HAVE_MKOSTEMP 1
  2435. | #define HAVE_MKDTEMP 1
  2436. | #define HAVE_PREAD 1
  2437. | #define HAVE_PWRITE 1
  2438. | /* end confdefs.h. */
  2439. |
  2440. |
  2441. | int
  2442. | main ()
  2443. | {
  2444. | return main ();
  2445. | ;
  2446. | return 0;
  2447. | }
  2448. configure:27593: result: no
  2449. configure:27638: checking whether the target supports __sync_val_compare_and_swap
  2450. configure:27655: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  2451. configure:27655: $? = 0
  2452. configure:27663: result: yes
  2453. configure:27673: checking whether the target supports __sync_bool_compare_and_swap
  2454. configure:27690: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  2455. configure:27690: $? = 0
  2456. configure:27698: result: yes
  2457. configure:27708: checking whether the target supports __sync_fetch_and_add
  2458. configure:27725: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  2459. configure:27725: $? = 0
  2460. configure:27733: result: yes
  2461. configure:27743: checking whether the target supports __sync_fetch_and_or
  2462. configure:27760: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  2463. configure:27760: $? = 0
  2464. configure:27768: result: yes
  2465. configure:27778: checking whether the target supports __sync_lock_test_and_set
  2466. configure:27795: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  2467. configure:27795: $? = 0
  2468. configure:27803: result: yes
  2469. configure:27813: checking whether the target supports __sync_synchronize
  2470. configure:27830: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  2471. configure:27830: $? = 0
  2472. configure:27838: result: yes
  2473. configure:27850: checking for library containing set_mempolicy
  2474. configure:27881: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c >&5
  2475. /tmp/ccL3OG13.o: In function `main':
  2476. /home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/conftest.c:90: undefined reference to `set_mempolicy'
  2477. collect2: error: ld returned 1 exit status
  2478. configure:27881: $? = 1
  2479. configure: failed program was:
  2480. | /* confdefs.h */
  2481. | #define PACKAGE_NAME "StarPU"
  2482. | #define PACKAGE_TARNAME "starpu"
  2483. | #define PACKAGE_VERSION "1.3.99"
  2484. | #define PACKAGE_STRING "StarPU 1.3.99"
  2485. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2486. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2487. | #define STARPU_MAJOR_VERSION 1
  2488. | #define STARPU_MINOR_VERSION 3
  2489. | #define STARPU_RELEASE_VERSION 99
  2490. | #define PACKAGE "starpu"
  2491. | #define VERSION "1.3.99"
  2492. | #define STARPU_AUTOFPGA 1
  2493. | #define STARPU_MAXFPGADEVS 12
  2494. | #define STARPU_USE_FPGA 1
  2495. | #define STDC_HEADERS 1
  2496. | #define HAVE_SYS_TYPES_H 1
  2497. | #define HAVE_SYS_STAT_H 1
  2498. | #define HAVE_STDLIB_H 1
  2499. | #define HAVE_STRING_H 1
  2500. | #define HAVE_MEMORY_H 1
  2501. | #define HAVE_STRINGS_H 1
  2502. | #define HAVE_INTTYPES_H 1
  2503. | #define HAVE_STDINT_H 1
  2504. | #define HAVE_UNISTD_H 1
  2505. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2506. | #define STARPU_MAXMPIDEVS 0
  2507. | #define HAVE_CXX11 1
  2508. | #define STARPU_HAVE_CXX11 1
  2509. | #define HAVE_DLFCN_H 1
  2510. | #define LT_OBJDIR ".libs/"
  2511. | #define STDC_HEADERS 1
  2512. | #define restrict __restrict
  2513. | #define STARPU_MIC_USE_RMA 1
  2514. | #define STARPU_MAXNUMANODES 2
  2515. | #define STARPU_LINUX_SYS 1
  2516. | #define SIZEOF_VOID_P 8
  2517. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2518. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2519. | #define HAVE_UNISTD_H 1
  2520. | #define STARPU_HAVE_UNISTD_H 1
  2521. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2522. | #define HAVE_LIBPTHREAD 1
  2523. | #define HAVE_SYSCONF 1
  2524. | #define HAVE_GETRLIMIT 1
  2525. | #define HAVE_SCANDIR 1
  2526. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2527. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2528. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2529. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2530. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2531. | #define HAVE_POSIX_MEMALIGN 1
  2532. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2533. | #define HAVE_MEMALIGN 1
  2534. | #define STARPU_HAVE_MEMALIGN 1
  2535. | #define STARPU_USE_DRAND48 1
  2536. | #define STARPU_USE_ERAND48_R 1
  2537. | #define STARPU_HAVE_STRERROR_R 1
  2538. | #define STARPU_HAVE_SETENV 1
  2539. | #define STARPU_HAVE_UNSETENV 1
  2540. | #define STARPU_HAVE_NEARBYINTF 1
  2541. | #define STARPU_HAVE_RINTF 1
  2542. | #define HAVE_MALLOC_H 1
  2543. | #define STARPU_HAVE_MALLOC_H 1
  2544. | #define STARPU_HAVE_SCHED_YIELD 1
  2545. | #define HAVE_AIO_H 1
  2546. | #define HAVE_LIBRT 1
  2547. | #define HAVE_MKOSTEMP 1
  2548. | #define HAVE_MKDTEMP 1
  2549. | #define HAVE_PREAD 1
  2550. | #define HAVE_PWRITE 1
  2551. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  2552. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  2553. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  2554. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  2555. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  2556. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  2557. | /* end confdefs.h. */
  2558. |
  2559. | /* Override any GCC internal prototype to avoid an error.
  2560. | Use char because int might match the return type of a GCC
  2561. | builtin and then its argument prototype would still apply. */
  2562. | #ifdef __cplusplus
  2563. | extern "C"
  2564. | #endif
  2565. | char set_mempolicy ();
  2566. | int
  2567. | main ()
  2568. | {
  2569. | return set_mempolicy ();
  2570. | ;
  2571. | return 0;
  2572. | }
  2573. configure:27881: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lnuma >&5
  2574. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lnuma
  2575. collect2: error: ld returned 1 exit status
  2576. configure:27881: $? = 1
  2577. configure: failed program was:
  2578. | /* confdefs.h */
  2579. | #define PACKAGE_NAME "StarPU"
  2580. | #define PACKAGE_TARNAME "starpu"
  2581. | #define PACKAGE_VERSION "1.3.99"
  2582. | #define PACKAGE_STRING "StarPU 1.3.99"
  2583. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2584. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2585. | #define STARPU_MAJOR_VERSION 1
  2586. | #define STARPU_MINOR_VERSION 3
  2587. | #define STARPU_RELEASE_VERSION 99
  2588. | #define PACKAGE "starpu"
  2589. | #define VERSION "1.3.99"
  2590. | #define STARPU_AUTOFPGA 1
  2591. | #define STARPU_MAXFPGADEVS 12
  2592. | #define STARPU_USE_FPGA 1
  2593. | #define STDC_HEADERS 1
  2594. | #define HAVE_SYS_TYPES_H 1
  2595. | #define HAVE_SYS_STAT_H 1
  2596. | #define HAVE_STDLIB_H 1
  2597. | #define HAVE_STRING_H 1
  2598. | #define HAVE_MEMORY_H 1
  2599. | #define HAVE_STRINGS_H 1
  2600. | #define HAVE_INTTYPES_H 1
  2601. | #define HAVE_STDINT_H 1
  2602. | #define HAVE_UNISTD_H 1
  2603. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2604. | #define STARPU_MAXMPIDEVS 0
  2605. | #define HAVE_CXX11 1
  2606. | #define STARPU_HAVE_CXX11 1
  2607. | #define HAVE_DLFCN_H 1
  2608. | #define LT_OBJDIR ".libs/"
  2609. | #define STDC_HEADERS 1
  2610. | #define restrict __restrict
  2611. | #define STARPU_MIC_USE_RMA 1
  2612. | #define STARPU_MAXNUMANODES 2
  2613. | #define STARPU_LINUX_SYS 1
  2614. | #define SIZEOF_VOID_P 8
  2615. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2616. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2617. | #define HAVE_UNISTD_H 1
  2618. | #define STARPU_HAVE_UNISTD_H 1
  2619. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2620. | #define HAVE_LIBPTHREAD 1
  2621. | #define HAVE_SYSCONF 1
  2622. | #define HAVE_GETRLIMIT 1
  2623. | #define HAVE_SCANDIR 1
  2624. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2625. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2626. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2627. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2628. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2629. | #define HAVE_POSIX_MEMALIGN 1
  2630. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2631. | #define HAVE_MEMALIGN 1
  2632. | #define STARPU_HAVE_MEMALIGN 1
  2633. | #define STARPU_USE_DRAND48 1
  2634. | #define STARPU_USE_ERAND48_R 1
  2635. | #define STARPU_HAVE_STRERROR_R 1
  2636. | #define STARPU_HAVE_SETENV 1
  2637. | #define STARPU_HAVE_UNSETENV 1
  2638. | #define STARPU_HAVE_NEARBYINTF 1
  2639. | #define STARPU_HAVE_RINTF 1
  2640. | #define HAVE_MALLOC_H 1
  2641. | #define STARPU_HAVE_MALLOC_H 1
  2642. | #define STARPU_HAVE_SCHED_YIELD 1
  2643. | #define HAVE_AIO_H 1
  2644. | #define HAVE_LIBRT 1
  2645. | #define HAVE_MKOSTEMP 1
  2646. | #define HAVE_MKDTEMP 1
  2647. | #define HAVE_PREAD 1
  2648. | #define HAVE_PWRITE 1
  2649. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  2650. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  2651. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  2652. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  2653. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  2654. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  2655. | /* end confdefs.h. */
  2656. |
  2657. | /* Override any GCC internal prototype to avoid an error.
  2658. | Use char because int might match the return type of a GCC
  2659. | builtin and then its argument prototype would still apply. */
  2660. | #ifdef __cplusplus
  2661. | extern "C"
  2662. | #endif
  2663. | char set_mempolicy ();
  2664. | int
  2665. | main ()
  2666. | {
  2667. | return set_mempolicy ();
  2668. | ;
  2669. | return 0;
  2670. | }
  2671. configure:27898: result: no
  2672. configure:27912: checking whether libnuma is available
  2673. configure:27914: result: no
  2674. configure:27922: checking whether statement expressions are available
  2675. configure:27937: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c >&5
  2676. configure:27937: $? = 0
  2677. configure:27943: result: yes
  2678. configure:27956: checking maximum number of sched_ctxs
  2679. configure:27965: result: 10
  2680. configure:28043: checking maximum number of CPUs
  2681. configure:28052: result: 64
  2682. configure:28060: checking whether CPUs should be used
  2683. configure:28069: result: yes
  2684. configure:28094: checking maximum number of CUDA devices
  2685. configure:28103: result: 4
  2686. configure:28182: checking whether CUDA is available
  2687. configure:28185: result:
  2688. configure:28199: checking cuda.h usability
  2689. configure:28199: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c >&5
  2690. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  2691. #include <cuda.h>
  2692. ^~~~~~~~
  2693. compilation terminated.
  2694. configure:28199: $? = 1
  2695. configure: failed program was:
  2696. | /* confdefs.h */
  2697. | #define PACKAGE_NAME "StarPU"
  2698. | #define PACKAGE_TARNAME "starpu"
  2699. | #define PACKAGE_VERSION "1.3.99"
  2700. | #define PACKAGE_STRING "StarPU 1.3.99"
  2701. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2702. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2703. | #define STARPU_MAJOR_VERSION 1
  2704. | #define STARPU_MINOR_VERSION 3
  2705. | #define STARPU_RELEASE_VERSION 99
  2706. | #define PACKAGE "starpu"
  2707. | #define VERSION "1.3.99"
  2708. | #define STARPU_AUTOFPGA 1
  2709. | #define STARPU_MAXFPGADEVS 12
  2710. | #define STARPU_USE_FPGA 1
  2711. | #define STDC_HEADERS 1
  2712. | #define HAVE_SYS_TYPES_H 1
  2713. | #define HAVE_SYS_STAT_H 1
  2714. | #define HAVE_STDLIB_H 1
  2715. | #define HAVE_STRING_H 1
  2716. | #define HAVE_MEMORY_H 1
  2717. | #define HAVE_STRINGS_H 1
  2718. | #define HAVE_INTTYPES_H 1
  2719. | #define HAVE_STDINT_H 1
  2720. | #define HAVE_UNISTD_H 1
  2721. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2722. | #define STARPU_MAXMPIDEVS 0
  2723. | #define HAVE_CXX11 1
  2724. | #define STARPU_HAVE_CXX11 1
  2725. | #define HAVE_DLFCN_H 1
  2726. | #define LT_OBJDIR ".libs/"
  2727. | #define STDC_HEADERS 1
  2728. | #define restrict __restrict
  2729. | #define STARPU_MIC_USE_RMA 1
  2730. | #define STARPU_MAXNUMANODES 2
  2731. | #define STARPU_LINUX_SYS 1
  2732. | #define SIZEOF_VOID_P 8
  2733. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2734. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2735. | #define HAVE_UNISTD_H 1
  2736. | #define STARPU_HAVE_UNISTD_H 1
  2737. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2738. | #define HAVE_LIBPTHREAD 1
  2739. | #define HAVE_SYSCONF 1
  2740. | #define HAVE_GETRLIMIT 1
  2741. | #define HAVE_SCANDIR 1
  2742. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2743. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2744. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2745. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2746. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2747. | #define HAVE_POSIX_MEMALIGN 1
  2748. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2749. | #define HAVE_MEMALIGN 1
  2750. | #define STARPU_HAVE_MEMALIGN 1
  2751. | #define STARPU_USE_DRAND48 1
  2752. | #define STARPU_USE_ERAND48_R 1
  2753. | #define STARPU_HAVE_STRERROR_R 1
  2754. | #define STARPU_HAVE_SETENV 1
  2755. | #define STARPU_HAVE_UNSETENV 1
  2756. | #define STARPU_HAVE_NEARBYINTF 1
  2757. | #define STARPU_HAVE_RINTF 1
  2758. | #define HAVE_MALLOC_H 1
  2759. | #define STARPU_HAVE_MALLOC_H 1
  2760. | #define STARPU_HAVE_SCHED_YIELD 1
  2761. | #define HAVE_AIO_H 1
  2762. | #define HAVE_LIBRT 1
  2763. | #define HAVE_MKOSTEMP 1
  2764. | #define HAVE_MKDTEMP 1
  2765. | #define HAVE_PREAD 1
  2766. | #define HAVE_PWRITE 1
  2767. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  2768. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  2769. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  2770. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  2771. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  2772. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  2773. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  2774. | #define STARPU_NMAX_SCHED_CTXS 10
  2775. | #define STARPU_MAXCPUS 64
  2776. | #define STARPU_USE_CPU 1
  2777. | #define STARPU_MAXCUDADEVS 4
  2778. | /* end confdefs.h. */
  2779. | #include <stdio.h>
  2780. | #ifdef HAVE_SYS_TYPES_H
  2781. | # include <sys/types.h>
  2782. | #endif
  2783. | #ifdef HAVE_SYS_STAT_H
  2784. | # include <sys/stat.h>
  2785. | #endif
  2786. | #ifdef STDC_HEADERS
  2787. | # include <stdlib.h>
  2788. | # include <stddef.h>
  2789. | #else
  2790. | # ifdef HAVE_STDLIB_H
  2791. | # include <stdlib.h>
  2792. | # endif
  2793. | #endif
  2794. | #ifdef HAVE_STRING_H
  2795. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2796. | # include <memory.h>
  2797. | # endif
  2798. | # include <string.h>
  2799. | #endif
  2800. | #ifdef HAVE_STRINGS_H
  2801. | # include <strings.h>
  2802. | #endif
  2803. | #ifdef HAVE_INTTYPES_H
  2804. | # include <inttypes.h>
  2805. | #endif
  2806. | #ifdef HAVE_STDINT_H
  2807. | # include <stdint.h>
  2808. | #endif
  2809. | #ifdef HAVE_UNISTD_H
  2810. | # include <unistd.h>
  2811. | #endif
  2812. | #include <cuda.h>
  2813. configure:28199: result: no
  2814. configure:28199: checking cuda.h presence
  2815. configure:28199: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c
  2816. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  2817. #include <cuda.h>
  2818. ^~~~~~~~
  2819. compilation terminated.
  2820. configure:28199: $? = 1
  2821. configure: failed program was:
  2822. | /* confdefs.h */
  2823. | #define PACKAGE_NAME "StarPU"
  2824. | #define PACKAGE_TARNAME "starpu"
  2825. | #define PACKAGE_VERSION "1.3.99"
  2826. | #define PACKAGE_STRING "StarPU 1.3.99"
  2827. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2828. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2829. | #define STARPU_MAJOR_VERSION 1
  2830. | #define STARPU_MINOR_VERSION 3
  2831. | #define STARPU_RELEASE_VERSION 99
  2832. | #define PACKAGE "starpu"
  2833. | #define VERSION "1.3.99"
  2834. | #define STARPU_AUTOFPGA 1
  2835. | #define STARPU_MAXFPGADEVS 12
  2836. | #define STARPU_USE_FPGA 1
  2837. | #define STDC_HEADERS 1
  2838. | #define HAVE_SYS_TYPES_H 1
  2839. | #define HAVE_SYS_STAT_H 1
  2840. | #define HAVE_STDLIB_H 1
  2841. | #define HAVE_STRING_H 1
  2842. | #define HAVE_MEMORY_H 1
  2843. | #define HAVE_STRINGS_H 1
  2844. | #define HAVE_INTTYPES_H 1
  2845. | #define HAVE_STDINT_H 1
  2846. | #define HAVE_UNISTD_H 1
  2847. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2848. | #define STARPU_MAXMPIDEVS 0
  2849. | #define HAVE_CXX11 1
  2850. | #define STARPU_HAVE_CXX11 1
  2851. | #define HAVE_DLFCN_H 1
  2852. | #define LT_OBJDIR ".libs/"
  2853. | #define STDC_HEADERS 1
  2854. | #define restrict __restrict
  2855. | #define STARPU_MIC_USE_RMA 1
  2856. | #define STARPU_MAXNUMANODES 2
  2857. | #define STARPU_LINUX_SYS 1
  2858. | #define SIZEOF_VOID_P 8
  2859. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2860. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2861. | #define HAVE_UNISTD_H 1
  2862. | #define STARPU_HAVE_UNISTD_H 1
  2863. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2864. | #define HAVE_LIBPTHREAD 1
  2865. | #define HAVE_SYSCONF 1
  2866. | #define HAVE_GETRLIMIT 1
  2867. | #define HAVE_SCANDIR 1
  2868. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2869. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2870. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2871. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2872. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2873. | #define HAVE_POSIX_MEMALIGN 1
  2874. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2875. | #define HAVE_MEMALIGN 1
  2876. | #define STARPU_HAVE_MEMALIGN 1
  2877. | #define STARPU_USE_DRAND48 1
  2878. | #define STARPU_USE_ERAND48_R 1
  2879. | #define STARPU_HAVE_STRERROR_R 1
  2880. | #define STARPU_HAVE_SETENV 1
  2881. | #define STARPU_HAVE_UNSETENV 1
  2882. | #define STARPU_HAVE_NEARBYINTF 1
  2883. | #define STARPU_HAVE_RINTF 1
  2884. | #define HAVE_MALLOC_H 1
  2885. | #define STARPU_HAVE_MALLOC_H 1
  2886. | #define STARPU_HAVE_SCHED_YIELD 1
  2887. | #define HAVE_AIO_H 1
  2888. | #define HAVE_LIBRT 1
  2889. | #define HAVE_MKOSTEMP 1
  2890. | #define HAVE_MKDTEMP 1
  2891. | #define HAVE_PREAD 1
  2892. | #define HAVE_PWRITE 1
  2893. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  2894. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  2895. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  2896. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  2897. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  2898. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  2899. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  2900. | #define STARPU_NMAX_SCHED_CTXS 10
  2901. | #define STARPU_MAXCPUS 64
  2902. | #define STARPU_USE_CPU 1
  2903. | #define STARPU_MAXCUDADEVS 4
  2904. | /* end confdefs.h. */
  2905. | #include <cuda.h>
  2906. configure:28199: result: no
  2907. configure:28199: checking for cuda.h
  2908. configure:28199: result: no
  2909. configure:28627: checking whether CUDA is available
  2910. configure:28630: result:
  2911. configure:28644: checking cuda.h usability
  2912. configure:28644: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c >&5
  2913. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  2914. #include <cuda.h>
  2915. ^~~~~~~~
  2916. compilation terminated.
  2917. configure:28644: $? = 1
  2918. configure: failed program was:
  2919. | /* confdefs.h */
  2920. | #define PACKAGE_NAME "StarPU"
  2921. | #define PACKAGE_TARNAME "starpu"
  2922. | #define PACKAGE_VERSION "1.3.99"
  2923. | #define PACKAGE_STRING "StarPU 1.3.99"
  2924. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  2925. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  2926. | #define STARPU_MAJOR_VERSION 1
  2927. | #define STARPU_MINOR_VERSION 3
  2928. | #define STARPU_RELEASE_VERSION 99
  2929. | #define PACKAGE "starpu"
  2930. | #define VERSION "1.3.99"
  2931. | #define STARPU_AUTOFPGA 1
  2932. | #define STARPU_MAXFPGADEVS 12
  2933. | #define STARPU_USE_FPGA 1
  2934. | #define STDC_HEADERS 1
  2935. | #define HAVE_SYS_TYPES_H 1
  2936. | #define HAVE_SYS_STAT_H 1
  2937. | #define HAVE_STDLIB_H 1
  2938. | #define HAVE_STRING_H 1
  2939. | #define HAVE_MEMORY_H 1
  2940. | #define HAVE_STRINGS_H 1
  2941. | #define HAVE_INTTYPES_H 1
  2942. | #define HAVE_STDINT_H 1
  2943. | #define HAVE_UNISTD_H 1
  2944. | #define STARPU_NON_BLOCKING_DRIVERS 1
  2945. | #define STARPU_MAXMPIDEVS 0
  2946. | #define HAVE_CXX11 1
  2947. | #define STARPU_HAVE_CXX11 1
  2948. | #define HAVE_DLFCN_H 1
  2949. | #define LT_OBJDIR ".libs/"
  2950. | #define STDC_HEADERS 1
  2951. | #define restrict __restrict
  2952. | #define STARPU_MIC_USE_RMA 1
  2953. | #define STARPU_MAXNUMANODES 2
  2954. | #define STARPU_LINUX_SYS 1
  2955. | #define SIZEOF_VOID_P 8
  2956. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  2957. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  2958. | #define HAVE_UNISTD_H 1
  2959. | #define STARPU_HAVE_UNISTD_H 1
  2960. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  2961. | #define HAVE_LIBPTHREAD 1
  2962. | #define HAVE_SYSCONF 1
  2963. | #define HAVE_GETRLIMIT 1
  2964. | #define HAVE_SCANDIR 1
  2965. | #define HAVE_PTHREAD_SPIN_LOCK 1
  2966. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  2967. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  2968. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  2969. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  2970. | #define HAVE_POSIX_MEMALIGN 1
  2971. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  2972. | #define HAVE_MEMALIGN 1
  2973. | #define STARPU_HAVE_MEMALIGN 1
  2974. | #define STARPU_USE_DRAND48 1
  2975. | #define STARPU_USE_ERAND48_R 1
  2976. | #define STARPU_HAVE_STRERROR_R 1
  2977. | #define STARPU_HAVE_SETENV 1
  2978. | #define STARPU_HAVE_UNSETENV 1
  2979. | #define STARPU_HAVE_NEARBYINTF 1
  2980. | #define STARPU_HAVE_RINTF 1
  2981. | #define HAVE_MALLOC_H 1
  2982. | #define STARPU_HAVE_MALLOC_H 1
  2983. | #define STARPU_HAVE_SCHED_YIELD 1
  2984. | #define HAVE_AIO_H 1
  2985. | #define HAVE_LIBRT 1
  2986. | #define HAVE_MKOSTEMP 1
  2987. | #define HAVE_MKDTEMP 1
  2988. | #define HAVE_PREAD 1
  2989. | #define HAVE_PWRITE 1
  2990. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  2991. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  2992. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  2993. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  2994. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  2995. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  2996. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  2997. | #define STARPU_NMAX_SCHED_CTXS 10
  2998. | #define STARPU_MAXCPUS 64
  2999. | #define STARPU_USE_CPU 1
  3000. | #define STARPU_MAXCUDADEVS 4
  3001. | /* end confdefs.h. */
  3002. | #include <stdio.h>
  3003. | #ifdef HAVE_SYS_TYPES_H
  3004. | # include <sys/types.h>
  3005. | #endif
  3006. | #ifdef HAVE_SYS_STAT_H
  3007. | # include <sys/stat.h>
  3008. | #endif
  3009. | #ifdef STDC_HEADERS
  3010. | # include <stdlib.h>
  3011. | # include <stddef.h>
  3012. | #else
  3013. | # ifdef HAVE_STDLIB_H
  3014. | # include <stdlib.h>
  3015. | # endif
  3016. | #endif
  3017. | #ifdef HAVE_STRING_H
  3018. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3019. | # include <memory.h>
  3020. | # endif
  3021. | # include <string.h>
  3022. | #endif
  3023. | #ifdef HAVE_STRINGS_H
  3024. | # include <strings.h>
  3025. | #endif
  3026. | #ifdef HAVE_INTTYPES_H
  3027. | # include <inttypes.h>
  3028. | #endif
  3029. | #ifdef HAVE_STDINT_H
  3030. | # include <stdint.h>
  3031. | #endif
  3032. | #ifdef HAVE_UNISTD_H
  3033. | # include <unistd.h>
  3034. | #endif
  3035. | #include <cuda.h>
  3036. configure:28644: result: no
  3037. configure:28644: checking cuda.h presence
  3038. configure:28644: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c
  3039. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  3040. #include <cuda.h>
  3041. ^~~~~~~~
  3042. compilation terminated.
  3043. configure:28644: $? = 1
  3044. configure: failed program was:
  3045. | /* confdefs.h */
  3046. | #define PACKAGE_NAME "StarPU"
  3047. | #define PACKAGE_TARNAME "starpu"
  3048. | #define PACKAGE_VERSION "1.3.99"
  3049. | #define PACKAGE_STRING "StarPU 1.3.99"
  3050. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3051. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3052. | #define STARPU_MAJOR_VERSION 1
  3053. | #define STARPU_MINOR_VERSION 3
  3054. | #define STARPU_RELEASE_VERSION 99
  3055. | #define PACKAGE "starpu"
  3056. | #define VERSION "1.3.99"
  3057. | #define STARPU_AUTOFPGA 1
  3058. | #define STARPU_MAXFPGADEVS 12
  3059. | #define STARPU_USE_FPGA 1
  3060. | #define STDC_HEADERS 1
  3061. | #define HAVE_SYS_TYPES_H 1
  3062. | #define HAVE_SYS_STAT_H 1
  3063. | #define HAVE_STDLIB_H 1
  3064. | #define HAVE_STRING_H 1
  3065. | #define HAVE_MEMORY_H 1
  3066. | #define HAVE_STRINGS_H 1
  3067. | #define HAVE_INTTYPES_H 1
  3068. | #define HAVE_STDINT_H 1
  3069. | #define HAVE_UNISTD_H 1
  3070. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3071. | #define STARPU_MAXMPIDEVS 0
  3072. | #define HAVE_CXX11 1
  3073. | #define STARPU_HAVE_CXX11 1
  3074. | #define HAVE_DLFCN_H 1
  3075. | #define LT_OBJDIR ".libs/"
  3076. | #define STDC_HEADERS 1
  3077. | #define restrict __restrict
  3078. | #define STARPU_MIC_USE_RMA 1
  3079. | #define STARPU_MAXNUMANODES 2
  3080. | #define STARPU_LINUX_SYS 1
  3081. | #define SIZEOF_VOID_P 8
  3082. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3083. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3084. | #define HAVE_UNISTD_H 1
  3085. | #define STARPU_HAVE_UNISTD_H 1
  3086. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3087. | #define HAVE_LIBPTHREAD 1
  3088. | #define HAVE_SYSCONF 1
  3089. | #define HAVE_GETRLIMIT 1
  3090. | #define HAVE_SCANDIR 1
  3091. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3092. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3093. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3094. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3095. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3096. | #define HAVE_POSIX_MEMALIGN 1
  3097. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3098. | #define HAVE_MEMALIGN 1
  3099. | #define STARPU_HAVE_MEMALIGN 1
  3100. | #define STARPU_USE_DRAND48 1
  3101. | #define STARPU_USE_ERAND48_R 1
  3102. | #define STARPU_HAVE_STRERROR_R 1
  3103. | #define STARPU_HAVE_SETENV 1
  3104. | #define STARPU_HAVE_UNSETENV 1
  3105. | #define STARPU_HAVE_NEARBYINTF 1
  3106. | #define STARPU_HAVE_RINTF 1
  3107. | #define HAVE_MALLOC_H 1
  3108. | #define STARPU_HAVE_MALLOC_H 1
  3109. | #define STARPU_HAVE_SCHED_YIELD 1
  3110. | #define HAVE_AIO_H 1
  3111. | #define HAVE_LIBRT 1
  3112. | #define HAVE_MKOSTEMP 1
  3113. | #define HAVE_MKDTEMP 1
  3114. | #define HAVE_PREAD 1
  3115. | #define HAVE_PWRITE 1
  3116. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3117. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3118. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3119. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3120. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3121. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3122. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3123. | #define STARPU_NMAX_SCHED_CTXS 10
  3124. | #define STARPU_MAXCPUS 64
  3125. | #define STARPU_USE_CPU 1
  3126. | #define STARPU_MAXCUDADEVS 4
  3127. | /* end confdefs.h. */
  3128. | #include <cuda.h>
  3129. configure:28644: result: no
  3130. configure:28644: checking for cuda.h
  3131. configure:28644: result: no
  3132. configure:29072: checking whether CUDA is available in /usr/local/cuda
  3133. configure:29078: result:
  3134. configure:29092: checking cuda.h usability
  3135. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/usr/local/cuda/include conftest.c >&5
  3136. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  3137. #include <cuda.h>
  3138. ^~~~~~~~
  3139. compilation terminated.
  3140. configure:29092: $? = 1
  3141. configure: failed program was:
  3142. | /* confdefs.h */
  3143. | #define PACKAGE_NAME "StarPU"
  3144. | #define PACKAGE_TARNAME "starpu"
  3145. | #define PACKAGE_VERSION "1.3.99"
  3146. | #define PACKAGE_STRING "StarPU 1.3.99"
  3147. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3148. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3149. | #define STARPU_MAJOR_VERSION 1
  3150. | #define STARPU_MINOR_VERSION 3
  3151. | #define STARPU_RELEASE_VERSION 99
  3152. | #define PACKAGE "starpu"
  3153. | #define VERSION "1.3.99"
  3154. | #define STARPU_AUTOFPGA 1
  3155. | #define STARPU_MAXFPGADEVS 12
  3156. | #define STARPU_USE_FPGA 1
  3157. | #define STDC_HEADERS 1
  3158. | #define HAVE_SYS_TYPES_H 1
  3159. | #define HAVE_SYS_STAT_H 1
  3160. | #define HAVE_STDLIB_H 1
  3161. | #define HAVE_STRING_H 1
  3162. | #define HAVE_MEMORY_H 1
  3163. | #define HAVE_STRINGS_H 1
  3164. | #define HAVE_INTTYPES_H 1
  3165. | #define HAVE_STDINT_H 1
  3166. | #define HAVE_UNISTD_H 1
  3167. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3168. | #define STARPU_MAXMPIDEVS 0
  3169. | #define HAVE_CXX11 1
  3170. | #define STARPU_HAVE_CXX11 1
  3171. | #define HAVE_DLFCN_H 1
  3172. | #define LT_OBJDIR ".libs/"
  3173. | #define STDC_HEADERS 1
  3174. | #define restrict __restrict
  3175. | #define STARPU_MIC_USE_RMA 1
  3176. | #define STARPU_MAXNUMANODES 2
  3177. | #define STARPU_LINUX_SYS 1
  3178. | #define SIZEOF_VOID_P 8
  3179. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3180. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3181. | #define HAVE_UNISTD_H 1
  3182. | #define STARPU_HAVE_UNISTD_H 1
  3183. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3184. | #define HAVE_LIBPTHREAD 1
  3185. | #define HAVE_SYSCONF 1
  3186. | #define HAVE_GETRLIMIT 1
  3187. | #define HAVE_SCANDIR 1
  3188. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3189. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3190. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3191. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3192. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3193. | #define HAVE_POSIX_MEMALIGN 1
  3194. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3195. | #define HAVE_MEMALIGN 1
  3196. | #define STARPU_HAVE_MEMALIGN 1
  3197. | #define STARPU_USE_DRAND48 1
  3198. | #define STARPU_USE_ERAND48_R 1
  3199. | #define STARPU_HAVE_STRERROR_R 1
  3200. | #define STARPU_HAVE_SETENV 1
  3201. | #define STARPU_HAVE_UNSETENV 1
  3202. | #define STARPU_HAVE_NEARBYINTF 1
  3203. | #define STARPU_HAVE_RINTF 1
  3204. | #define HAVE_MALLOC_H 1
  3205. | #define STARPU_HAVE_MALLOC_H 1
  3206. | #define STARPU_HAVE_SCHED_YIELD 1
  3207. | #define HAVE_AIO_H 1
  3208. | #define HAVE_LIBRT 1
  3209. | #define HAVE_MKOSTEMP 1
  3210. | #define HAVE_MKDTEMP 1
  3211. | #define HAVE_PREAD 1
  3212. | #define HAVE_PWRITE 1
  3213. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3214. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3215. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3216. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3217. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3218. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3219. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3220. | #define STARPU_NMAX_SCHED_CTXS 10
  3221. | #define STARPU_MAXCPUS 64
  3222. | #define STARPU_USE_CPU 1
  3223. | #define STARPU_MAXCUDADEVS 4
  3224. | /* end confdefs.h. */
  3225. | #include <stdio.h>
  3226. | #ifdef HAVE_SYS_TYPES_H
  3227. | # include <sys/types.h>
  3228. | #endif
  3229. | #ifdef HAVE_SYS_STAT_H
  3230. | # include <sys/stat.h>
  3231. | #endif
  3232. | #ifdef STDC_HEADERS
  3233. | # include <stdlib.h>
  3234. | # include <stddef.h>
  3235. | #else
  3236. | # ifdef HAVE_STDLIB_H
  3237. | # include <stdlib.h>
  3238. | # endif
  3239. | #endif
  3240. | #ifdef HAVE_STRING_H
  3241. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3242. | # include <memory.h>
  3243. | # endif
  3244. | # include <string.h>
  3245. | #endif
  3246. | #ifdef HAVE_STRINGS_H
  3247. | # include <strings.h>
  3248. | #endif
  3249. | #ifdef HAVE_INTTYPES_H
  3250. | # include <inttypes.h>
  3251. | #endif
  3252. | #ifdef HAVE_STDINT_H
  3253. | # include <stdint.h>
  3254. | #endif
  3255. | #ifdef HAVE_UNISTD_H
  3256. | # include <unistd.h>
  3257. | #endif
  3258. | #include <cuda.h>
  3259. configure:29092: result: no
  3260. configure:29092: checking cuda.h presence
  3261. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/usr/local/cuda/include conftest.c
  3262. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  3263. #include <cuda.h>
  3264. ^~~~~~~~
  3265. compilation terminated.
  3266. configure:29092: $? = 1
  3267. configure: failed program was:
  3268. | /* confdefs.h */
  3269. | #define PACKAGE_NAME "StarPU"
  3270. | #define PACKAGE_TARNAME "starpu"
  3271. | #define PACKAGE_VERSION "1.3.99"
  3272. | #define PACKAGE_STRING "StarPU 1.3.99"
  3273. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3274. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3275. | #define STARPU_MAJOR_VERSION 1
  3276. | #define STARPU_MINOR_VERSION 3
  3277. | #define STARPU_RELEASE_VERSION 99
  3278. | #define PACKAGE "starpu"
  3279. | #define VERSION "1.3.99"
  3280. | #define STARPU_AUTOFPGA 1
  3281. | #define STARPU_MAXFPGADEVS 12
  3282. | #define STARPU_USE_FPGA 1
  3283. | #define STDC_HEADERS 1
  3284. | #define HAVE_SYS_TYPES_H 1
  3285. | #define HAVE_SYS_STAT_H 1
  3286. | #define HAVE_STDLIB_H 1
  3287. | #define HAVE_STRING_H 1
  3288. | #define HAVE_MEMORY_H 1
  3289. | #define HAVE_STRINGS_H 1
  3290. | #define HAVE_INTTYPES_H 1
  3291. | #define HAVE_STDINT_H 1
  3292. | #define HAVE_UNISTD_H 1
  3293. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3294. | #define STARPU_MAXMPIDEVS 0
  3295. | #define HAVE_CXX11 1
  3296. | #define STARPU_HAVE_CXX11 1
  3297. | #define HAVE_DLFCN_H 1
  3298. | #define LT_OBJDIR ".libs/"
  3299. | #define STDC_HEADERS 1
  3300. | #define restrict __restrict
  3301. | #define STARPU_MIC_USE_RMA 1
  3302. | #define STARPU_MAXNUMANODES 2
  3303. | #define STARPU_LINUX_SYS 1
  3304. | #define SIZEOF_VOID_P 8
  3305. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3306. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3307. | #define HAVE_UNISTD_H 1
  3308. | #define STARPU_HAVE_UNISTD_H 1
  3309. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3310. | #define HAVE_LIBPTHREAD 1
  3311. | #define HAVE_SYSCONF 1
  3312. | #define HAVE_GETRLIMIT 1
  3313. | #define HAVE_SCANDIR 1
  3314. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3315. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3316. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3317. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3318. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3319. | #define HAVE_POSIX_MEMALIGN 1
  3320. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3321. | #define HAVE_MEMALIGN 1
  3322. | #define STARPU_HAVE_MEMALIGN 1
  3323. | #define STARPU_USE_DRAND48 1
  3324. | #define STARPU_USE_ERAND48_R 1
  3325. | #define STARPU_HAVE_STRERROR_R 1
  3326. | #define STARPU_HAVE_SETENV 1
  3327. | #define STARPU_HAVE_UNSETENV 1
  3328. | #define STARPU_HAVE_NEARBYINTF 1
  3329. | #define STARPU_HAVE_RINTF 1
  3330. | #define HAVE_MALLOC_H 1
  3331. | #define STARPU_HAVE_MALLOC_H 1
  3332. | #define STARPU_HAVE_SCHED_YIELD 1
  3333. | #define HAVE_AIO_H 1
  3334. | #define HAVE_LIBRT 1
  3335. | #define HAVE_MKOSTEMP 1
  3336. | #define HAVE_MKDTEMP 1
  3337. | #define HAVE_PREAD 1
  3338. | #define HAVE_PWRITE 1
  3339. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3340. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3341. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3342. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3343. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3344. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3345. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3346. | #define STARPU_NMAX_SCHED_CTXS 10
  3347. | #define STARPU_MAXCPUS 64
  3348. | #define STARPU_USE_CPU 1
  3349. | #define STARPU_MAXCUDADEVS 4
  3350. | /* end confdefs.h. */
  3351. | #include <cuda.h>
  3352. configure:29092: result: no
  3353. configure:29092: checking for cuda.h
  3354. configure:29092: result: no
  3355. configure:29072: checking whether CUDA is available in /c/cuda
  3356. configure:29078: result:
  3357. configure:29092: checking cuda.h usability
  3358. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/c/cuda/include conftest.c >&5
  3359. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  3360. #include <cuda.h>
  3361. ^~~~~~~~
  3362. compilation terminated.
  3363. configure:29092: $? = 1
  3364. configure: failed program was:
  3365. | /* confdefs.h */
  3366. | #define PACKAGE_NAME "StarPU"
  3367. | #define PACKAGE_TARNAME "starpu"
  3368. | #define PACKAGE_VERSION "1.3.99"
  3369. | #define PACKAGE_STRING "StarPU 1.3.99"
  3370. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3371. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3372. | #define STARPU_MAJOR_VERSION 1
  3373. | #define STARPU_MINOR_VERSION 3
  3374. | #define STARPU_RELEASE_VERSION 99
  3375. | #define PACKAGE "starpu"
  3376. | #define VERSION "1.3.99"
  3377. | #define STARPU_AUTOFPGA 1
  3378. | #define STARPU_MAXFPGADEVS 12
  3379. | #define STARPU_USE_FPGA 1
  3380. | #define STDC_HEADERS 1
  3381. | #define HAVE_SYS_TYPES_H 1
  3382. | #define HAVE_SYS_STAT_H 1
  3383. | #define HAVE_STDLIB_H 1
  3384. | #define HAVE_STRING_H 1
  3385. | #define HAVE_MEMORY_H 1
  3386. | #define HAVE_STRINGS_H 1
  3387. | #define HAVE_INTTYPES_H 1
  3388. | #define HAVE_STDINT_H 1
  3389. | #define HAVE_UNISTD_H 1
  3390. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3391. | #define STARPU_MAXMPIDEVS 0
  3392. | #define HAVE_CXX11 1
  3393. | #define STARPU_HAVE_CXX11 1
  3394. | #define HAVE_DLFCN_H 1
  3395. | #define LT_OBJDIR ".libs/"
  3396. | #define STDC_HEADERS 1
  3397. | #define restrict __restrict
  3398. | #define STARPU_MIC_USE_RMA 1
  3399. | #define STARPU_MAXNUMANODES 2
  3400. | #define STARPU_LINUX_SYS 1
  3401. | #define SIZEOF_VOID_P 8
  3402. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3403. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3404. | #define HAVE_UNISTD_H 1
  3405. | #define STARPU_HAVE_UNISTD_H 1
  3406. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3407. | #define HAVE_LIBPTHREAD 1
  3408. | #define HAVE_SYSCONF 1
  3409. | #define HAVE_GETRLIMIT 1
  3410. | #define HAVE_SCANDIR 1
  3411. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3412. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3413. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3414. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3415. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3416. | #define HAVE_POSIX_MEMALIGN 1
  3417. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3418. | #define HAVE_MEMALIGN 1
  3419. | #define STARPU_HAVE_MEMALIGN 1
  3420. | #define STARPU_USE_DRAND48 1
  3421. | #define STARPU_USE_ERAND48_R 1
  3422. | #define STARPU_HAVE_STRERROR_R 1
  3423. | #define STARPU_HAVE_SETENV 1
  3424. | #define STARPU_HAVE_UNSETENV 1
  3425. | #define STARPU_HAVE_NEARBYINTF 1
  3426. | #define STARPU_HAVE_RINTF 1
  3427. | #define HAVE_MALLOC_H 1
  3428. | #define STARPU_HAVE_MALLOC_H 1
  3429. | #define STARPU_HAVE_SCHED_YIELD 1
  3430. | #define HAVE_AIO_H 1
  3431. | #define HAVE_LIBRT 1
  3432. | #define HAVE_MKOSTEMP 1
  3433. | #define HAVE_MKDTEMP 1
  3434. | #define HAVE_PREAD 1
  3435. | #define HAVE_PWRITE 1
  3436. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3437. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3438. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3439. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3440. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3441. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3442. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3443. | #define STARPU_NMAX_SCHED_CTXS 10
  3444. | #define STARPU_MAXCPUS 64
  3445. | #define STARPU_USE_CPU 1
  3446. | #define STARPU_MAXCUDADEVS 4
  3447. | /* end confdefs.h. */
  3448. | #include <stdio.h>
  3449. | #ifdef HAVE_SYS_TYPES_H
  3450. | # include <sys/types.h>
  3451. | #endif
  3452. | #ifdef HAVE_SYS_STAT_H
  3453. | # include <sys/stat.h>
  3454. | #endif
  3455. | #ifdef STDC_HEADERS
  3456. | # include <stdlib.h>
  3457. | # include <stddef.h>
  3458. | #else
  3459. | # ifdef HAVE_STDLIB_H
  3460. | # include <stdlib.h>
  3461. | # endif
  3462. | #endif
  3463. | #ifdef HAVE_STRING_H
  3464. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3465. | # include <memory.h>
  3466. | # endif
  3467. | # include <string.h>
  3468. | #endif
  3469. | #ifdef HAVE_STRINGS_H
  3470. | # include <strings.h>
  3471. | #endif
  3472. | #ifdef HAVE_INTTYPES_H
  3473. | # include <inttypes.h>
  3474. | #endif
  3475. | #ifdef HAVE_STDINT_H
  3476. | # include <stdint.h>
  3477. | #endif
  3478. | #ifdef HAVE_UNISTD_H
  3479. | # include <unistd.h>
  3480. | #endif
  3481. | #include <cuda.h>
  3482. configure:29092: result: no
  3483. configure:29092: checking cuda.h presence
  3484. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/c/cuda/include conftest.c
  3485. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  3486. #include <cuda.h>
  3487. ^~~~~~~~
  3488. compilation terminated.
  3489. configure:29092: $? = 1
  3490. configure: failed program was:
  3491. | /* confdefs.h */
  3492. | #define PACKAGE_NAME "StarPU"
  3493. | #define PACKAGE_TARNAME "starpu"
  3494. | #define PACKAGE_VERSION "1.3.99"
  3495. | #define PACKAGE_STRING "StarPU 1.3.99"
  3496. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3497. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3498. | #define STARPU_MAJOR_VERSION 1
  3499. | #define STARPU_MINOR_VERSION 3
  3500. | #define STARPU_RELEASE_VERSION 99
  3501. | #define PACKAGE "starpu"
  3502. | #define VERSION "1.3.99"
  3503. | #define STARPU_AUTOFPGA 1
  3504. | #define STARPU_MAXFPGADEVS 12
  3505. | #define STARPU_USE_FPGA 1
  3506. | #define STDC_HEADERS 1
  3507. | #define HAVE_SYS_TYPES_H 1
  3508. | #define HAVE_SYS_STAT_H 1
  3509. | #define HAVE_STDLIB_H 1
  3510. | #define HAVE_STRING_H 1
  3511. | #define HAVE_MEMORY_H 1
  3512. | #define HAVE_STRINGS_H 1
  3513. | #define HAVE_INTTYPES_H 1
  3514. | #define HAVE_STDINT_H 1
  3515. | #define HAVE_UNISTD_H 1
  3516. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3517. | #define STARPU_MAXMPIDEVS 0
  3518. | #define HAVE_CXX11 1
  3519. | #define STARPU_HAVE_CXX11 1
  3520. | #define HAVE_DLFCN_H 1
  3521. | #define LT_OBJDIR ".libs/"
  3522. | #define STDC_HEADERS 1
  3523. | #define restrict __restrict
  3524. | #define STARPU_MIC_USE_RMA 1
  3525. | #define STARPU_MAXNUMANODES 2
  3526. | #define STARPU_LINUX_SYS 1
  3527. | #define SIZEOF_VOID_P 8
  3528. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3529. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3530. | #define HAVE_UNISTD_H 1
  3531. | #define STARPU_HAVE_UNISTD_H 1
  3532. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3533. | #define HAVE_LIBPTHREAD 1
  3534. | #define HAVE_SYSCONF 1
  3535. | #define HAVE_GETRLIMIT 1
  3536. | #define HAVE_SCANDIR 1
  3537. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3538. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3539. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3540. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3541. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3542. | #define HAVE_POSIX_MEMALIGN 1
  3543. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3544. | #define HAVE_MEMALIGN 1
  3545. | #define STARPU_HAVE_MEMALIGN 1
  3546. | #define STARPU_USE_DRAND48 1
  3547. | #define STARPU_USE_ERAND48_R 1
  3548. | #define STARPU_HAVE_STRERROR_R 1
  3549. | #define STARPU_HAVE_SETENV 1
  3550. | #define STARPU_HAVE_UNSETENV 1
  3551. | #define STARPU_HAVE_NEARBYINTF 1
  3552. | #define STARPU_HAVE_RINTF 1
  3553. | #define HAVE_MALLOC_H 1
  3554. | #define STARPU_HAVE_MALLOC_H 1
  3555. | #define STARPU_HAVE_SCHED_YIELD 1
  3556. | #define HAVE_AIO_H 1
  3557. | #define HAVE_LIBRT 1
  3558. | #define HAVE_MKOSTEMP 1
  3559. | #define HAVE_MKDTEMP 1
  3560. | #define HAVE_PREAD 1
  3561. | #define HAVE_PWRITE 1
  3562. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3563. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3564. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3565. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3566. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3567. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3568. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3569. | #define STARPU_NMAX_SCHED_CTXS 10
  3570. | #define STARPU_MAXCPUS 64
  3571. | #define STARPU_USE_CPU 1
  3572. | #define STARPU_MAXCUDADEVS 4
  3573. | /* end confdefs.h. */
  3574. | #include <cuda.h>
  3575. configure:29092: result: no
  3576. configure:29092: checking for cuda.h
  3577. configure:29092: result: no
  3578. configure:29072: checking whether CUDA is available in /cygdrive/c/cuda
  3579. configure:29078: result:
  3580. configure:29092: checking cuda.h usability
  3581. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/cygdrive/c/cuda/include conftest.c >&5
  3582. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  3583. #include <cuda.h>
  3584. ^~~~~~~~
  3585. compilation terminated.
  3586. configure:29092: $? = 1
  3587. configure: failed program was:
  3588. | /* confdefs.h */
  3589. | #define PACKAGE_NAME "StarPU"
  3590. | #define PACKAGE_TARNAME "starpu"
  3591. | #define PACKAGE_VERSION "1.3.99"
  3592. | #define PACKAGE_STRING "StarPU 1.3.99"
  3593. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3594. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3595. | #define STARPU_MAJOR_VERSION 1
  3596. | #define STARPU_MINOR_VERSION 3
  3597. | #define STARPU_RELEASE_VERSION 99
  3598. | #define PACKAGE "starpu"
  3599. | #define VERSION "1.3.99"
  3600. | #define STARPU_AUTOFPGA 1
  3601. | #define STARPU_MAXFPGADEVS 12
  3602. | #define STARPU_USE_FPGA 1
  3603. | #define STDC_HEADERS 1
  3604. | #define HAVE_SYS_TYPES_H 1
  3605. | #define HAVE_SYS_STAT_H 1
  3606. | #define HAVE_STDLIB_H 1
  3607. | #define HAVE_STRING_H 1
  3608. | #define HAVE_MEMORY_H 1
  3609. | #define HAVE_STRINGS_H 1
  3610. | #define HAVE_INTTYPES_H 1
  3611. | #define HAVE_STDINT_H 1
  3612. | #define HAVE_UNISTD_H 1
  3613. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3614. | #define STARPU_MAXMPIDEVS 0
  3615. | #define HAVE_CXX11 1
  3616. | #define STARPU_HAVE_CXX11 1
  3617. | #define HAVE_DLFCN_H 1
  3618. | #define LT_OBJDIR ".libs/"
  3619. | #define STDC_HEADERS 1
  3620. | #define restrict __restrict
  3621. | #define STARPU_MIC_USE_RMA 1
  3622. | #define STARPU_MAXNUMANODES 2
  3623. | #define STARPU_LINUX_SYS 1
  3624. | #define SIZEOF_VOID_P 8
  3625. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3626. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3627. | #define HAVE_UNISTD_H 1
  3628. | #define STARPU_HAVE_UNISTD_H 1
  3629. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3630. | #define HAVE_LIBPTHREAD 1
  3631. | #define HAVE_SYSCONF 1
  3632. | #define HAVE_GETRLIMIT 1
  3633. | #define HAVE_SCANDIR 1
  3634. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3635. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3636. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3637. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3638. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3639. | #define HAVE_POSIX_MEMALIGN 1
  3640. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3641. | #define HAVE_MEMALIGN 1
  3642. | #define STARPU_HAVE_MEMALIGN 1
  3643. | #define STARPU_USE_DRAND48 1
  3644. | #define STARPU_USE_ERAND48_R 1
  3645. | #define STARPU_HAVE_STRERROR_R 1
  3646. | #define STARPU_HAVE_SETENV 1
  3647. | #define STARPU_HAVE_UNSETENV 1
  3648. | #define STARPU_HAVE_NEARBYINTF 1
  3649. | #define STARPU_HAVE_RINTF 1
  3650. | #define HAVE_MALLOC_H 1
  3651. | #define STARPU_HAVE_MALLOC_H 1
  3652. | #define STARPU_HAVE_SCHED_YIELD 1
  3653. | #define HAVE_AIO_H 1
  3654. | #define HAVE_LIBRT 1
  3655. | #define HAVE_MKOSTEMP 1
  3656. | #define HAVE_MKDTEMP 1
  3657. | #define HAVE_PREAD 1
  3658. | #define HAVE_PWRITE 1
  3659. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3660. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3661. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3662. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3663. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3664. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3665. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3666. | #define STARPU_NMAX_SCHED_CTXS 10
  3667. | #define STARPU_MAXCPUS 64
  3668. | #define STARPU_USE_CPU 1
  3669. | #define STARPU_MAXCUDADEVS 4
  3670. | /* end confdefs.h. */
  3671. | #include <stdio.h>
  3672. | #ifdef HAVE_SYS_TYPES_H
  3673. | # include <sys/types.h>
  3674. | #endif
  3675. | #ifdef HAVE_SYS_STAT_H
  3676. | # include <sys/stat.h>
  3677. | #endif
  3678. | #ifdef STDC_HEADERS
  3679. | # include <stdlib.h>
  3680. | # include <stddef.h>
  3681. | #else
  3682. | # ifdef HAVE_STDLIB_H
  3683. | # include <stdlib.h>
  3684. | # endif
  3685. | #endif
  3686. | #ifdef HAVE_STRING_H
  3687. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3688. | # include <memory.h>
  3689. | # endif
  3690. | # include <string.h>
  3691. | #endif
  3692. | #ifdef HAVE_STRINGS_H
  3693. | # include <strings.h>
  3694. | #endif
  3695. | #ifdef HAVE_INTTYPES_H
  3696. | # include <inttypes.h>
  3697. | #endif
  3698. | #ifdef HAVE_STDINT_H
  3699. | # include <stdint.h>
  3700. | #endif
  3701. | #ifdef HAVE_UNISTD_H
  3702. | # include <unistd.h>
  3703. | #endif
  3704. | #include <cuda.h>
  3705. configure:29092: result: no
  3706. configure:29092: checking cuda.h presence
  3707. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/cygdrive/c/cuda/include conftest.c
  3708. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  3709. #include <cuda.h>
  3710. ^~~~~~~~
  3711. compilation terminated.
  3712. configure:29092: $? = 1
  3713. configure: failed program was:
  3714. | /* confdefs.h */
  3715. | #define PACKAGE_NAME "StarPU"
  3716. | #define PACKAGE_TARNAME "starpu"
  3717. | #define PACKAGE_VERSION "1.3.99"
  3718. | #define PACKAGE_STRING "StarPU 1.3.99"
  3719. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3720. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3721. | #define STARPU_MAJOR_VERSION 1
  3722. | #define STARPU_MINOR_VERSION 3
  3723. | #define STARPU_RELEASE_VERSION 99
  3724. | #define PACKAGE "starpu"
  3725. | #define VERSION "1.3.99"
  3726. | #define STARPU_AUTOFPGA 1
  3727. | #define STARPU_MAXFPGADEVS 12
  3728. | #define STARPU_USE_FPGA 1
  3729. | #define STDC_HEADERS 1
  3730. | #define HAVE_SYS_TYPES_H 1
  3731. | #define HAVE_SYS_STAT_H 1
  3732. | #define HAVE_STDLIB_H 1
  3733. | #define HAVE_STRING_H 1
  3734. | #define HAVE_MEMORY_H 1
  3735. | #define HAVE_STRINGS_H 1
  3736. | #define HAVE_INTTYPES_H 1
  3737. | #define HAVE_STDINT_H 1
  3738. | #define HAVE_UNISTD_H 1
  3739. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3740. | #define STARPU_MAXMPIDEVS 0
  3741. | #define HAVE_CXX11 1
  3742. | #define STARPU_HAVE_CXX11 1
  3743. | #define HAVE_DLFCN_H 1
  3744. | #define LT_OBJDIR ".libs/"
  3745. | #define STDC_HEADERS 1
  3746. | #define restrict __restrict
  3747. | #define STARPU_MIC_USE_RMA 1
  3748. | #define STARPU_MAXNUMANODES 2
  3749. | #define STARPU_LINUX_SYS 1
  3750. | #define SIZEOF_VOID_P 8
  3751. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3752. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3753. | #define HAVE_UNISTD_H 1
  3754. | #define STARPU_HAVE_UNISTD_H 1
  3755. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3756. | #define HAVE_LIBPTHREAD 1
  3757. | #define HAVE_SYSCONF 1
  3758. | #define HAVE_GETRLIMIT 1
  3759. | #define HAVE_SCANDIR 1
  3760. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3761. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3762. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3763. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3764. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3765. | #define HAVE_POSIX_MEMALIGN 1
  3766. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3767. | #define HAVE_MEMALIGN 1
  3768. | #define STARPU_HAVE_MEMALIGN 1
  3769. | #define STARPU_USE_DRAND48 1
  3770. | #define STARPU_USE_ERAND48_R 1
  3771. | #define STARPU_HAVE_STRERROR_R 1
  3772. | #define STARPU_HAVE_SETENV 1
  3773. | #define STARPU_HAVE_UNSETENV 1
  3774. | #define STARPU_HAVE_NEARBYINTF 1
  3775. | #define STARPU_HAVE_RINTF 1
  3776. | #define HAVE_MALLOC_H 1
  3777. | #define STARPU_HAVE_MALLOC_H 1
  3778. | #define STARPU_HAVE_SCHED_YIELD 1
  3779. | #define HAVE_AIO_H 1
  3780. | #define HAVE_LIBRT 1
  3781. | #define HAVE_MKOSTEMP 1
  3782. | #define HAVE_MKDTEMP 1
  3783. | #define HAVE_PREAD 1
  3784. | #define HAVE_PWRITE 1
  3785. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3786. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3787. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3788. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3789. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3790. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3791. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3792. | #define STARPU_NMAX_SCHED_CTXS 10
  3793. | #define STARPU_MAXCPUS 64
  3794. | #define STARPU_USE_CPU 1
  3795. | #define STARPU_MAXCUDADEVS 4
  3796. | /* end confdefs.h. */
  3797. | #include <cuda.h>
  3798. configure:29092: result: no
  3799. configure:29092: checking for cuda.h
  3800. configure:29092: result: no
  3801. configure:29072: checking whether CUDA is available in /opt/cuda
  3802. configure:29078: result:
  3803. configure:29092: checking cuda.h usability
  3804. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/opt/cuda/include conftest.c >&5
  3805. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  3806. #include <cuda.h>
  3807. ^~~~~~~~
  3808. compilation terminated.
  3809. configure:29092: $? = 1
  3810. configure: failed program was:
  3811. | /* confdefs.h */
  3812. | #define PACKAGE_NAME "StarPU"
  3813. | #define PACKAGE_TARNAME "starpu"
  3814. | #define PACKAGE_VERSION "1.3.99"
  3815. | #define PACKAGE_STRING "StarPU 1.3.99"
  3816. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3817. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3818. | #define STARPU_MAJOR_VERSION 1
  3819. | #define STARPU_MINOR_VERSION 3
  3820. | #define STARPU_RELEASE_VERSION 99
  3821. | #define PACKAGE "starpu"
  3822. | #define VERSION "1.3.99"
  3823. | #define STARPU_AUTOFPGA 1
  3824. | #define STARPU_MAXFPGADEVS 12
  3825. | #define STARPU_USE_FPGA 1
  3826. | #define STDC_HEADERS 1
  3827. | #define HAVE_SYS_TYPES_H 1
  3828. | #define HAVE_SYS_STAT_H 1
  3829. | #define HAVE_STDLIB_H 1
  3830. | #define HAVE_STRING_H 1
  3831. | #define HAVE_MEMORY_H 1
  3832. | #define HAVE_STRINGS_H 1
  3833. | #define HAVE_INTTYPES_H 1
  3834. | #define HAVE_STDINT_H 1
  3835. | #define HAVE_UNISTD_H 1
  3836. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3837. | #define STARPU_MAXMPIDEVS 0
  3838. | #define HAVE_CXX11 1
  3839. | #define STARPU_HAVE_CXX11 1
  3840. | #define HAVE_DLFCN_H 1
  3841. | #define LT_OBJDIR ".libs/"
  3842. | #define STDC_HEADERS 1
  3843. | #define restrict __restrict
  3844. | #define STARPU_MIC_USE_RMA 1
  3845. | #define STARPU_MAXNUMANODES 2
  3846. | #define STARPU_LINUX_SYS 1
  3847. | #define SIZEOF_VOID_P 8
  3848. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3849. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3850. | #define HAVE_UNISTD_H 1
  3851. | #define STARPU_HAVE_UNISTD_H 1
  3852. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3853. | #define HAVE_LIBPTHREAD 1
  3854. | #define HAVE_SYSCONF 1
  3855. | #define HAVE_GETRLIMIT 1
  3856. | #define HAVE_SCANDIR 1
  3857. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3858. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3859. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3860. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3861. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3862. | #define HAVE_POSIX_MEMALIGN 1
  3863. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3864. | #define HAVE_MEMALIGN 1
  3865. | #define STARPU_HAVE_MEMALIGN 1
  3866. | #define STARPU_USE_DRAND48 1
  3867. | #define STARPU_USE_ERAND48_R 1
  3868. | #define STARPU_HAVE_STRERROR_R 1
  3869. | #define STARPU_HAVE_SETENV 1
  3870. | #define STARPU_HAVE_UNSETENV 1
  3871. | #define STARPU_HAVE_NEARBYINTF 1
  3872. | #define STARPU_HAVE_RINTF 1
  3873. | #define HAVE_MALLOC_H 1
  3874. | #define STARPU_HAVE_MALLOC_H 1
  3875. | #define STARPU_HAVE_SCHED_YIELD 1
  3876. | #define HAVE_AIO_H 1
  3877. | #define HAVE_LIBRT 1
  3878. | #define HAVE_MKOSTEMP 1
  3879. | #define HAVE_MKDTEMP 1
  3880. | #define HAVE_PREAD 1
  3881. | #define HAVE_PWRITE 1
  3882. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  3883. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  3884. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  3885. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  3886. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  3887. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  3888. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  3889. | #define STARPU_NMAX_SCHED_CTXS 10
  3890. | #define STARPU_MAXCPUS 64
  3891. | #define STARPU_USE_CPU 1
  3892. | #define STARPU_MAXCUDADEVS 4
  3893. | /* end confdefs.h. */
  3894. | #include <stdio.h>
  3895. | #ifdef HAVE_SYS_TYPES_H
  3896. | # include <sys/types.h>
  3897. | #endif
  3898. | #ifdef HAVE_SYS_STAT_H
  3899. | # include <sys/stat.h>
  3900. | #endif
  3901. | #ifdef STDC_HEADERS
  3902. | # include <stdlib.h>
  3903. | # include <stddef.h>
  3904. | #else
  3905. | # ifdef HAVE_STDLIB_H
  3906. | # include <stdlib.h>
  3907. | # endif
  3908. | #endif
  3909. | #ifdef HAVE_STRING_H
  3910. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3911. | # include <memory.h>
  3912. | # endif
  3913. | # include <string.h>
  3914. | #endif
  3915. | #ifdef HAVE_STRINGS_H
  3916. | # include <strings.h>
  3917. | #endif
  3918. | #ifdef HAVE_INTTYPES_H
  3919. | # include <inttypes.h>
  3920. | #endif
  3921. | #ifdef HAVE_STDINT_H
  3922. | # include <stdint.h>
  3923. | #endif
  3924. | #ifdef HAVE_UNISTD_H
  3925. | # include <unistd.h>
  3926. | #endif
  3927. | #include <cuda.h>
  3928. configure:29092: result: no
  3929. configure:29092: checking cuda.h presence
  3930. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/opt/cuda/include conftest.c
  3931. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  3932. #include <cuda.h>
  3933. ^~~~~~~~
  3934. compilation terminated.
  3935. configure:29092: $? = 1
  3936. configure: failed program was:
  3937. | /* confdefs.h */
  3938. | #define PACKAGE_NAME "StarPU"
  3939. | #define PACKAGE_TARNAME "starpu"
  3940. | #define PACKAGE_VERSION "1.3.99"
  3941. | #define PACKAGE_STRING "StarPU 1.3.99"
  3942. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  3943. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  3944. | #define STARPU_MAJOR_VERSION 1
  3945. | #define STARPU_MINOR_VERSION 3
  3946. | #define STARPU_RELEASE_VERSION 99
  3947. | #define PACKAGE "starpu"
  3948. | #define VERSION "1.3.99"
  3949. | #define STARPU_AUTOFPGA 1
  3950. | #define STARPU_MAXFPGADEVS 12
  3951. | #define STARPU_USE_FPGA 1
  3952. | #define STDC_HEADERS 1
  3953. | #define HAVE_SYS_TYPES_H 1
  3954. | #define HAVE_SYS_STAT_H 1
  3955. | #define HAVE_STDLIB_H 1
  3956. | #define HAVE_STRING_H 1
  3957. | #define HAVE_MEMORY_H 1
  3958. | #define HAVE_STRINGS_H 1
  3959. | #define HAVE_INTTYPES_H 1
  3960. | #define HAVE_STDINT_H 1
  3961. | #define HAVE_UNISTD_H 1
  3962. | #define STARPU_NON_BLOCKING_DRIVERS 1
  3963. | #define STARPU_MAXMPIDEVS 0
  3964. | #define HAVE_CXX11 1
  3965. | #define STARPU_HAVE_CXX11 1
  3966. | #define HAVE_DLFCN_H 1
  3967. | #define LT_OBJDIR ".libs/"
  3968. | #define STDC_HEADERS 1
  3969. | #define restrict __restrict
  3970. | #define STARPU_MIC_USE_RMA 1
  3971. | #define STARPU_MAXNUMANODES 2
  3972. | #define STARPU_LINUX_SYS 1
  3973. | #define SIZEOF_VOID_P 8
  3974. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  3975. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  3976. | #define HAVE_UNISTD_H 1
  3977. | #define STARPU_HAVE_UNISTD_H 1
  3978. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  3979. | #define HAVE_LIBPTHREAD 1
  3980. | #define HAVE_SYSCONF 1
  3981. | #define HAVE_GETRLIMIT 1
  3982. | #define HAVE_SCANDIR 1
  3983. | #define HAVE_PTHREAD_SPIN_LOCK 1
  3984. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  3985. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  3986. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  3987. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  3988. | #define HAVE_POSIX_MEMALIGN 1
  3989. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  3990. | #define HAVE_MEMALIGN 1
  3991. | #define STARPU_HAVE_MEMALIGN 1
  3992. | #define STARPU_USE_DRAND48 1
  3993. | #define STARPU_USE_ERAND48_R 1
  3994. | #define STARPU_HAVE_STRERROR_R 1
  3995. | #define STARPU_HAVE_SETENV 1
  3996. | #define STARPU_HAVE_UNSETENV 1
  3997. | #define STARPU_HAVE_NEARBYINTF 1
  3998. | #define STARPU_HAVE_RINTF 1
  3999. | #define HAVE_MALLOC_H 1
  4000. | #define STARPU_HAVE_MALLOC_H 1
  4001. | #define STARPU_HAVE_SCHED_YIELD 1
  4002. | #define HAVE_AIO_H 1
  4003. | #define HAVE_LIBRT 1
  4004. | #define HAVE_MKOSTEMP 1
  4005. | #define HAVE_MKDTEMP 1
  4006. | #define HAVE_PREAD 1
  4007. | #define HAVE_PWRITE 1
  4008. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4009. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4010. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4011. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4012. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4013. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4014. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4015. | #define STARPU_NMAX_SCHED_CTXS 10
  4016. | #define STARPU_MAXCPUS 64
  4017. | #define STARPU_USE_CPU 1
  4018. | #define STARPU_MAXCUDADEVS 4
  4019. | /* end confdefs.h. */
  4020. | #include <cuda.h>
  4021. configure:29092: result: no
  4022. configure:29092: checking for cuda.h
  4023. configure:29092: result: no
  4024. configure:29072: checking whether CUDA is available in /..
  4025. configure:29078: result:
  4026. configure:29092: checking cuda.h usability
  4027. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c >&5
  4028. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  4029. #include <cuda.h>
  4030. ^~~~~~~~
  4031. compilation terminated.
  4032. configure:29092: $? = 1
  4033. configure: failed program was:
  4034. | /* confdefs.h */
  4035. | #define PACKAGE_NAME "StarPU"
  4036. | #define PACKAGE_TARNAME "starpu"
  4037. | #define PACKAGE_VERSION "1.3.99"
  4038. | #define PACKAGE_STRING "StarPU 1.3.99"
  4039. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4040. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4041. | #define STARPU_MAJOR_VERSION 1
  4042. | #define STARPU_MINOR_VERSION 3
  4043. | #define STARPU_RELEASE_VERSION 99
  4044. | #define PACKAGE "starpu"
  4045. | #define VERSION "1.3.99"
  4046. | #define STARPU_AUTOFPGA 1
  4047. | #define STARPU_MAXFPGADEVS 12
  4048. | #define STARPU_USE_FPGA 1
  4049. | #define STDC_HEADERS 1
  4050. | #define HAVE_SYS_TYPES_H 1
  4051. | #define HAVE_SYS_STAT_H 1
  4052. | #define HAVE_STDLIB_H 1
  4053. | #define HAVE_STRING_H 1
  4054. | #define HAVE_MEMORY_H 1
  4055. | #define HAVE_STRINGS_H 1
  4056. | #define HAVE_INTTYPES_H 1
  4057. | #define HAVE_STDINT_H 1
  4058. | #define HAVE_UNISTD_H 1
  4059. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4060. | #define STARPU_MAXMPIDEVS 0
  4061. | #define HAVE_CXX11 1
  4062. | #define STARPU_HAVE_CXX11 1
  4063. | #define HAVE_DLFCN_H 1
  4064. | #define LT_OBJDIR ".libs/"
  4065. | #define STDC_HEADERS 1
  4066. | #define restrict __restrict
  4067. | #define STARPU_MIC_USE_RMA 1
  4068. | #define STARPU_MAXNUMANODES 2
  4069. | #define STARPU_LINUX_SYS 1
  4070. | #define SIZEOF_VOID_P 8
  4071. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4072. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4073. | #define HAVE_UNISTD_H 1
  4074. | #define STARPU_HAVE_UNISTD_H 1
  4075. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4076. | #define HAVE_LIBPTHREAD 1
  4077. | #define HAVE_SYSCONF 1
  4078. | #define HAVE_GETRLIMIT 1
  4079. | #define HAVE_SCANDIR 1
  4080. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4081. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4082. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4083. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4084. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4085. | #define HAVE_POSIX_MEMALIGN 1
  4086. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4087. | #define HAVE_MEMALIGN 1
  4088. | #define STARPU_HAVE_MEMALIGN 1
  4089. | #define STARPU_USE_DRAND48 1
  4090. | #define STARPU_USE_ERAND48_R 1
  4091. | #define STARPU_HAVE_STRERROR_R 1
  4092. | #define STARPU_HAVE_SETENV 1
  4093. | #define STARPU_HAVE_UNSETENV 1
  4094. | #define STARPU_HAVE_NEARBYINTF 1
  4095. | #define STARPU_HAVE_RINTF 1
  4096. | #define HAVE_MALLOC_H 1
  4097. | #define STARPU_HAVE_MALLOC_H 1
  4098. | #define STARPU_HAVE_SCHED_YIELD 1
  4099. | #define HAVE_AIO_H 1
  4100. | #define HAVE_LIBRT 1
  4101. | #define HAVE_MKOSTEMP 1
  4102. | #define HAVE_MKDTEMP 1
  4103. | #define HAVE_PREAD 1
  4104. | #define HAVE_PWRITE 1
  4105. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4106. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4107. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4108. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4109. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4110. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4111. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4112. | #define STARPU_NMAX_SCHED_CTXS 10
  4113. | #define STARPU_MAXCPUS 64
  4114. | #define STARPU_USE_CPU 1
  4115. | #define STARPU_MAXCUDADEVS 4
  4116. | /* end confdefs.h. */
  4117. | #include <stdio.h>
  4118. | #ifdef HAVE_SYS_TYPES_H
  4119. | # include <sys/types.h>
  4120. | #endif
  4121. | #ifdef HAVE_SYS_STAT_H
  4122. | # include <sys/stat.h>
  4123. | #endif
  4124. | #ifdef STDC_HEADERS
  4125. | # include <stdlib.h>
  4126. | # include <stddef.h>
  4127. | #else
  4128. | # ifdef HAVE_STDLIB_H
  4129. | # include <stdlib.h>
  4130. | # endif
  4131. | #endif
  4132. | #ifdef HAVE_STRING_H
  4133. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4134. | # include <memory.h>
  4135. | # endif
  4136. | # include <string.h>
  4137. | #endif
  4138. | #ifdef HAVE_STRINGS_H
  4139. | # include <strings.h>
  4140. | #endif
  4141. | #ifdef HAVE_INTTYPES_H
  4142. | # include <inttypes.h>
  4143. | #endif
  4144. | #ifdef HAVE_STDINT_H
  4145. | # include <stdint.h>
  4146. | #endif
  4147. | #ifdef HAVE_UNISTD_H
  4148. | # include <unistd.h>
  4149. | #endif
  4150. | #include <cuda.h>
  4151. configure:29092: result: no
  4152. configure:29092: checking cuda.h presence
  4153. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c
  4154. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  4155. #include <cuda.h>
  4156. ^~~~~~~~
  4157. compilation terminated.
  4158. configure:29092: $? = 1
  4159. configure: failed program was:
  4160. | /* confdefs.h */
  4161. | #define PACKAGE_NAME "StarPU"
  4162. | #define PACKAGE_TARNAME "starpu"
  4163. | #define PACKAGE_VERSION "1.3.99"
  4164. | #define PACKAGE_STRING "StarPU 1.3.99"
  4165. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4166. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4167. | #define STARPU_MAJOR_VERSION 1
  4168. | #define STARPU_MINOR_VERSION 3
  4169. | #define STARPU_RELEASE_VERSION 99
  4170. | #define PACKAGE "starpu"
  4171. | #define VERSION "1.3.99"
  4172. | #define STARPU_AUTOFPGA 1
  4173. | #define STARPU_MAXFPGADEVS 12
  4174. | #define STARPU_USE_FPGA 1
  4175. | #define STDC_HEADERS 1
  4176. | #define HAVE_SYS_TYPES_H 1
  4177. | #define HAVE_SYS_STAT_H 1
  4178. | #define HAVE_STDLIB_H 1
  4179. | #define HAVE_STRING_H 1
  4180. | #define HAVE_MEMORY_H 1
  4181. | #define HAVE_STRINGS_H 1
  4182. | #define HAVE_INTTYPES_H 1
  4183. | #define HAVE_STDINT_H 1
  4184. | #define HAVE_UNISTD_H 1
  4185. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4186. | #define STARPU_MAXMPIDEVS 0
  4187. | #define HAVE_CXX11 1
  4188. | #define STARPU_HAVE_CXX11 1
  4189. | #define HAVE_DLFCN_H 1
  4190. | #define LT_OBJDIR ".libs/"
  4191. | #define STDC_HEADERS 1
  4192. | #define restrict __restrict
  4193. | #define STARPU_MIC_USE_RMA 1
  4194. | #define STARPU_MAXNUMANODES 2
  4195. | #define STARPU_LINUX_SYS 1
  4196. | #define SIZEOF_VOID_P 8
  4197. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4198. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4199. | #define HAVE_UNISTD_H 1
  4200. | #define STARPU_HAVE_UNISTD_H 1
  4201. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4202. | #define HAVE_LIBPTHREAD 1
  4203. | #define HAVE_SYSCONF 1
  4204. | #define HAVE_GETRLIMIT 1
  4205. | #define HAVE_SCANDIR 1
  4206. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4207. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4208. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4209. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4210. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4211. | #define HAVE_POSIX_MEMALIGN 1
  4212. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4213. | #define HAVE_MEMALIGN 1
  4214. | #define STARPU_HAVE_MEMALIGN 1
  4215. | #define STARPU_USE_DRAND48 1
  4216. | #define STARPU_USE_ERAND48_R 1
  4217. | #define STARPU_HAVE_STRERROR_R 1
  4218. | #define STARPU_HAVE_SETENV 1
  4219. | #define STARPU_HAVE_UNSETENV 1
  4220. | #define STARPU_HAVE_NEARBYINTF 1
  4221. | #define STARPU_HAVE_RINTF 1
  4222. | #define HAVE_MALLOC_H 1
  4223. | #define STARPU_HAVE_MALLOC_H 1
  4224. | #define STARPU_HAVE_SCHED_YIELD 1
  4225. | #define HAVE_AIO_H 1
  4226. | #define HAVE_LIBRT 1
  4227. | #define HAVE_MKOSTEMP 1
  4228. | #define HAVE_MKDTEMP 1
  4229. | #define HAVE_PREAD 1
  4230. | #define HAVE_PWRITE 1
  4231. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4232. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4233. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4234. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4235. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4236. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4237. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4238. | #define STARPU_NMAX_SCHED_CTXS 10
  4239. | #define STARPU_MAXCPUS 64
  4240. | #define STARPU_USE_CPU 1
  4241. | #define STARPU_MAXCUDADEVS 4
  4242. | /* end confdefs.h. */
  4243. | #include <cuda.h>
  4244. configure:29092: result: no
  4245. configure:29092: checking for cuda.h
  4246. configure:29092: result: no
  4247. configure:29072: checking whether CUDA is available in /..
  4248. configure:29078: result:
  4249. configure:29092: checking cuda.h usability
  4250. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c >&5
  4251. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  4252. #include <cuda.h>
  4253. ^~~~~~~~
  4254. compilation terminated.
  4255. configure:29092: $? = 1
  4256. configure: failed program was:
  4257. | /* confdefs.h */
  4258. | #define PACKAGE_NAME "StarPU"
  4259. | #define PACKAGE_TARNAME "starpu"
  4260. | #define PACKAGE_VERSION "1.3.99"
  4261. | #define PACKAGE_STRING "StarPU 1.3.99"
  4262. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4263. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4264. | #define STARPU_MAJOR_VERSION 1
  4265. | #define STARPU_MINOR_VERSION 3
  4266. | #define STARPU_RELEASE_VERSION 99
  4267. | #define PACKAGE "starpu"
  4268. | #define VERSION "1.3.99"
  4269. | #define STARPU_AUTOFPGA 1
  4270. | #define STARPU_MAXFPGADEVS 12
  4271. | #define STARPU_USE_FPGA 1
  4272. | #define STDC_HEADERS 1
  4273. | #define HAVE_SYS_TYPES_H 1
  4274. | #define HAVE_SYS_STAT_H 1
  4275. | #define HAVE_STDLIB_H 1
  4276. | #define HAVE_STRING_H 1
  4277. | #define HAVE_MEMORY_H 1
  4278. | #define HAVE_STRINGS_H 1
  4279. | #define HAVE_INTTYPES_H 1
  4280. | #define HAVE_STDINT_H 1
  4281. | #define HAVE_UNISTD_H 1
  4282. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4283. | #define STARPU_MAXMPIDEVS 0
  4284. | #define HAVE_CXX11 1
  4285. | #define STARPU_HAVE_CXX11 1
  4286. | #define HAVE_DLFCN_H 1
  4287. | #define LT_OBJDIR ".libs/"
  4288. | #define STDC_HEADERS 1
  4289. | #define restrict __restrict
  4290. | #define STARPU_MIC_USE_RMA 1
  4291. | #define STARPU_MAXNUMANODES 2
  4292. | #define STARPU_LINUX_SYS 1
  4293. | #define SIZEOF_VOID_P 8
  4294. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4295. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4296. | #define HAVE_UNISTD_H 1
  4297. | #define STARPU_HAVE_UNISTD_H 1
  4298. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4299. | #define HAVE_LIBPTHREAD 1
  4300. | #define HAVE_SYSCONF 1
  4301. | #define HAVE_GETRLIMIT 1
  4302. | #define HAVE_SCANDIR 1
  4303. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4304. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4305. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4306. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4307. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4308. | #define HAVE_POSIX_MEMALIGN 1
  4309. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4310. | #define HAVE_MEMALIGN 1
  4311. | #define STARPU_HAVE_MEMALIGN 1
  4312. | #define STARPU_USE_DRAND48 1
  4313. | #define STARPU_USE_ERAND48_R 1
  4314. | #define STARPU_HAVE_STRERROR_R 1
  4315. | #define STARPU_HAVE_SETENV 1
  4316. | #define STARPU_HAVE_UNSETENV 1
  4317. | #define STARPU_HAVE_NEARBYINTF 1
  4318. | #define STARPU_HAVE_RINTF 1
  4319. | #define HAVE_MALLOC_H 1
  4320. | #define STARPU_HAVE_MALLOC_H 1
  4321. | #define STARPU_HAVE_SCHED_YIELD 1
  4322. | #define HAVE_AIO_H 1
  4323. | #define HAVE_LIBRT 1
  4324. | #define HAVE_MKOSTEMP 1
  4325. | #define HAVE_MKDTEMP 1
  4326. | #define HAVE_PREAD 1
  4327. | #define HAVE_PWRITE 1
  4328. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4329. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4330. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4331. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4332. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4333. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4334. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4335. | #define STARPU_NMAX_SCHED_CTXS 10
  4336. | #define STARPU_MAXCPUS 64
  4337. | #define STARPU_USE_CPU 1
  4338. | #define STARPU_MAXCUDADEVS 4
  4339. | /* end confdefs.h. */
  4340. | #include <stdio.h>
  4341. | #ifdef HAVE_SYS_TYPES_H
  4342. | # include <sys/types.h>
  4343. | #endif
  4344. | #ifdef HAVE_SYS_STAT_H
  4345. | # include <sys/stat.h>
  4346. | #endif
  4347. | #ifdef STDC_HEADERS
  4348. | # include <stdlib.h>
  4349. | # include <stddef.h>
  4350. | #else
  4351. | # ifdef HAVE_STDLIB_H
  4352. | # include <stdlib.h>
  4353. | # endif
  4354. | #endif
  4355. | #ifdef HAVE_STRING_H
  4356. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4357. | # include <memory.h>
  4358. | # endif
  4359. | # include <string.h>
  4360. | #endif
  4361. | #ifdef HAVE_STRINGS_H
  4362. | # include <strings.h>
  4363. | #endif
  4364. | #ifdef HAVE_INTTYPES_H
  4365. | # include <inttypes.h>
  4366. | #endif
  4367. | #ifdef HAVE_STDINT_H
  4368. | # include <stdint.h>
  4369. | #endif
  4370. | #ifdef HAVE_UNISTD_H
  4371. | # include <unistd.h>
  4372. | #endif
  4373. | #include <cuda.h>
  4374. configure:29092: result: no
  4375. configure:29092: checking cuda.h presence
  4376. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c
  4377. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  4378. #include <cuda.h>
  4379. ^~~~~~~~
  4380. compilation terminated.
  4381. configure:29092: $? = 1
  4382. configure: failed program was:
  4383. | /* confdefs.h */
  4384. | #define PACKAGE_NAME "StarPU"
  4385. | #define PACKAGE_TARNAME "starpu"
  4386. | #define PACKAGE_VERSION "1.3.99"
  4387. | #define PACKAGE_STRING "StarPU 1.3.99"
  4388. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4389. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4390. | #define STARPU_MAJOR_VERSION 1
  4391. | #define STARPU_MINOR_VERSION 3
  4392. | #define STARPU_RELEASE_VERSION 99
  4393. | #define PACKAGE "starpu"
  4394. | #define VERSION "1.3.99"
  4395. | #define STARPU_AUTOFPGA 1
  4396. | #define STARPU_MAXFPGADEVS 12
  4397. | #define STARPU_USE_FPGA 1
  4398. | #define STDC_HEADERS 1
  4399. | #define HAVE_SYS_TYPES_H 1
  4400. | #define HAVE_SYS_STAT_H 1
  4401. | #define HAVE_STDLIB_H 1
  4402. | #define HAVE_STRING_H 1
  4403. | #define HAVE_MEMORY_H 1
  4404. | #define HAVE_STRINGS_H 1
  4405. | #define HAVE_INTTYPES_H 1
  4406. | #define HAVE_STDINT_H 1
  4407. | #define HAVE_UNISTD_H 1
  4408. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4409. | #define STARPU_MAXMPIDEVS 0
  4410. | #define HAVE_CXX11 1
  4411. | #define STARPU_HAVE_CXX11 1
  4412. | #define HAVE_DLFCN_H 1
  4413. | #define LT_OBJDIR ".libs/"
  4414. | #define STDC_HEADERS 1
  4415. | #define restrict __restrict
  4416. | #define STARPU_MIC_USE_RMA 1
  4417. | #define STARPU_MAXNUMANODES 2
  4418. | #define STARPU_LINUX_SYS 1
  4419. | #define SIZEOF_VOID_P 8
  4420. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4421. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4422. | #define HAVE_UNISTD_H 1
  4423. | #define STARPU_HAVE_UNISTD_H 1
  4424. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4425. | #define HAVE_LIBPTHREAD 1
  4426. | #define HAVE_SYSCONF 1
  4427. | #define HAVE_GETRLIMIT 1
  4428. | #define HAVE_SCANDIR 1
  4429. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4430. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4431. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4432. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4433. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4434. | #define HAVE_POSIX_MEMALIGN 1
  4435. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4436. | #define HAVE_MEMALIGN 1
  4437. | #define STARPU_HAVE_MEMALIGN 1
  4438. | #define STARPU_USE_DRAND48 1
  4439. | #define STARPU_USE_ERAND48_R 1
  4440. | #define STARPU_HAVE_STRERROR_R 1
  4441. | #define STARPU_HAVE_SETENV 1
  4442. | #define STARPU_HAVE_UNSETENV 1
  4443. | #define STARPU_HAVE_NEARBYINTF 1
  4444. | #define STARPU_HAVE_RINTF 1
  4445. | #define HAVE_MALLOC_H 1
  4446. | #define STARPU_HAVE_MALLOC_H 1
  4447. | #define STARPU_HAVE_SCHED_YIELD 1
  4448. | #define HAVE_AIO_H 1
  4449. | #define HAVE_LIBRT 1
  4450. | #define HAVE_MKOSTEMP 1
  4451. | #define HAVE_MKDTEMP 1
  4452. | #define HAVE_PREAD 1
  4453. | #define HAVE_PWRITE 1
  4454. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4455. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4456. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4457. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4458. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4459. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4460. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4461. | #define STARPU_NMAX_SCHED_CTXS 10
  4462. | #define STARPU_MAXCPUS 64
  4463. | #define STARPU_USE_CPU 1
  4464. | #define STARPU_MAXCUDADEVS 4
  4465. | /* end confdefs.h. */
  4466. | #include <cuda.h>
  4467. configure:29092: result: no
  4468. configure:29092: checking for cuda.h
  4469. configure:29092: result: no
  4470. configure:29072: checking whether CUDA is available in /..
  4471. configure:29078: result:
  4472. configure:29092: checking cuda.h usability
  4473. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c >&5
  4474. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  4475. #include <cuda.h>
  4476. ^~~~~~~~
  4477. compilation terminated.
  4478. configure:29092: $? = 1
  4479. configure: failed program was:
  4480. | /* confdefs.h */
  4481. | #define PACKAGE_NAME "StarPU"
  4482. | #define PACKAGE_TARNAME "starpu"
  4483. | #define PACKAGE_VERSION "1.3.99"
  4484. | #define PACKAGE_STRING "StarPU 1.3.99"
  4485. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4486. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4487. | #define STARPU_MAJOR_VERSION 1
  4488. | #define STARPU_MINOR_VERSION 3
  4489. | #define STARPU_RELEASE_VERSION 99
  4490. | #define PACKAGE "starpu"
  4491. | #define VERSION "1.3.99"
  4492. | #define STARPU_AUTOFPGA 1
  4493. | #define STARPU_MAXFPGADEVS 12
  4494. | #define STARPU_USE_FPGA 1
  4495. | #define STDC_HEADERS 1
  4496. | #define HAVE_SYS_TYPES_H 1
  4497. | #define HAVE_SYS_STAT_H 1
  4498. | #define HAVE_STDLIB_H 1
  4499. | #define HAVE_STRING_H 1
  4500. | #define HAVE_MEMORY_H 1
  4501. | #define HAVE_STRINGS_H 1
  4502. | #define HAVE_INTTYPES_H 1
  4503. | #define HAVE_STDINT_H 1
  4504. | #define HAVE_UNISTD_H 1
  4505. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4506. | #define STARPU_MAXMPIDEVS 0
  4507. | #define HAVE_CXX11 1
  4508. | #define STARPU_HAVE_CXX11 1
  4509. | #define HAVE_DLFCN_H 1
  4510. | #define LT_OBJDIR ".libs/"
  4511. | #define STDC_HEADERS 1
  4512. | #define restrict __restrict
  4513. | #define STARPU_MIC_USE_RMA 1
  4514. | #define STARPU_MAXNUMANODES 2
  4515. | #define STARPU_LINUX_SYS 1
  4516. | #define SIZEOF_VOID_P 8
  4517. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4518. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4519. | #define HAVE_UNISTD_H 1
  4520. | #define STARPU_HAVE_UNISTD_H 1
  4521. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4522. | #define HAVE_LIBPTHREAD 1
  4523. | #define HAVE_SYSCONF 1
  4524. | #define HAVE_GETRLIMIT 1
  4525. | #define HAVE_SCANDIR 1
  4526. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4527. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4528. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4529. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4530. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4531. | #define HAVE_POSIX_MEMALIGN 1
  4532. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4533. | #define HAVE_MEMALIGN 1
  4534. | #define STARPU_HAVE_MEMALIGN 1
  4535. | #define STARPU_USE_DRAND48 1
  4536. | #define STARPU_USE_ERAND48_R 1
  4537. | #define STARPU_HAVE_STRERROR_R 1
  4538. | #define STARPU_HAVE_SETENV 1
  4539. | #define STARPU_HAVE_UNSETENV 1
  4540. | #define STARPU_HAVE_NEARBYINTF 1
  4541. | #define STARPU_HAVE_RINTF 1
  4542. | #define HAVE_MALLOC_H 1
  4543. | #define STARPU_HAVE_MALLOC_H 1
  4544. | #define STARPU_HAVE_SCHED_YIELD 1
  4545. | #define HAVE_AIO_H 1
  4546. | #define HAVE_LIBRT 1
  4547. | #define HAVE_MKOSTEMP 1
  4548. | #define HAVE_MKDTEMP 1
  4549. | #define HAVE_PREAD 1
  4550. | #define HAVE_PWRITE 1
  4551. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4552. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4553. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4554. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4555. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4556. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4557. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4558. | #define STARPU_NMAX_SCHED_CTXS 10
  4559. | #define STARPU_MAXCPUS 64
  4560. | #define STARPU_USE_CPU 1
  4561. | #define STARPU_MAXCUDADEVS 4
  4562. | /* end confdefs.h. */
  4563. | #include <stdio.h>
  4564. | #ifdef HAVE_SYS_TYPES_H
  4565. | # include <sys/types.h>
  4566. | #endif
  4567. | #ifdef HAVE_SYS_STAT_H
  4568. | # include <sys/stat.h>
  4569. | #endif
  4570. | #ifdef STDC_HEADERS
  4571. | # include <stdlib.h>
  4572. | # include <stddef.h>
  4573. | #else
  4574. | # ifdef HAVE_STDLIB_H
  4575. | # include <stdlib.h>
  4576. | # endif
  4577. | #endif
  4578. | #ifdef HAVE_STRING_H
  4579. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4580. | # include <memory.h>
  4581. | # endif
  4582. | # include <string.h>
  4583. | #endif
  4584. | #ifdef HAVE_STRINGS_H
  4585. | # include <strings.h>
  4586. | #endif
  4587. | #ifdef HAVE_INTTYPES_H
  4588. | # include <inttypes.h>
  4589. | #endif
  4590. | #ifdef HAVE_STDINT_H
  4591. | # include <stdint.h>
  4592. | #endif
  4593. | #ifdef HAVE_UNISTD_H
  4594. | # include <unistd.h>
  4595. | #endif
  4596. | #include <cuda.h>
  4597. configure:29092: result: no
  4598. configure:29092: checking cuda.h presence
  4599. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c
  4600. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  4601. #include <cuda.h>
  4602. ^~~~~~~~
  4603. compilation terminated.
  4604. configure:29092: $? = 1
  4605. configure: failed program was:
  4606. | /* confdefs.h */
  4607. | #define PACKAGE_NAME "StarPU"
  4608. | #define PACKAGE_TARNAME "starpu"
  4609. | #define PACKAGE_VERSION "1.3.99"
  4610. | #define PACKAGE_STRING "StarPU 1.3.99"
  4611. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4612. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4613. | #define STARPU_MAJOR_VERSION 1
  4614. | #define STARPU_MINOR_VERSION 3
  4615. | #define STARPU_RELEASE_VERSION 99
  4616. | #define PACKAGE "starpu"
  4617. | #define VERSION "1.3.99"
  4618. | #define STARPU_AUTOFPGA 1
  4619. | #define STARPU_MAXFPGADEVS 12
  4620. | #define STARPU_USE_FPGA 1
  4621. | #define STDC_HEADERS 1
  4622. | #define HAVE_SYS_TYPES_H 1
  4623. | #define HAVE_SYS_STAT_H 1
  4624. | #define HAVE_STDLIB_H 1
  4625. | #define HAVE_STRING_H 1
  4626. | #define HAVE_MEMORY_H 1
  4627. | #define HAVE_STRINGS_H 1
  4628. | #define HAVE_INTTYPES_H 1
  4629. | #define HAVE_STDINT_H 1
  4630. | #define HAVE_UNISTD_H 1
  4631. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4632. | #define STARPU_MAXMPIDEVS 0
  4633. | #define HAVE_CXX11 1
  4634. | #define STARPU_HAVE_CXX11 1
  4635. | #define HAVE_DLFCN_H 1
  4636. | #define LT_OBJDIR ".libs/"
  4637. | #define STDC_HEADERS 1
  4638. | #define restrict __restrict
  4639. | #define STARPU_MIC_USE_RMA 1
  4640. | #define STARPU_MAXNUMANODES 2
  4641. | #define STARPU_LINUX_SYS 1
  4642. | #define SIZEOF_VOID_P 8
  4643. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4644. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4645. | #define HAVE_UNISTD_H 1
  4646. | #define STARPU_HAVE_UNISTD_H 1
  4647. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4648. | #define HAVE_LIBPTHREAD 1
  4649. | #define HAVE_SYSCONF 1
  4650. | #define HAVE_GETRLIMIT 1
  4651. | #define HAVE_SCANDIR 1
  4652. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4653. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4654. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4655. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4656. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4657. | #define HAVE_POSIX_MEMALIGN 1
  4658. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4659. | #define HAVE_MEMALIGN 1
  4660. | #define STARPU_HAVE_MEMALIGN 1
  4661. | #define STARPU_USE_DRAND48 1
  4662. | #define STARPU_USE_ERAND48_R 1
  4663. | #define STARPU_HAVE_STRERROR_R 1
  4664. | #define STARPU_HAVE_SETENV 1
  4665. | #define STARPU_HAVE_UNSETENV 1
  4666. | #define STARPU_HAVE_NEARBYINTF 1
  4667. | #define STARPU_HAVE_RINTF 1
  4668. | #define HAVE_MALLOC_H 1
  4669. | #define STARPU_HAVE_MALLOC_H 1
  4670. | #define STARPU_HAVE_SCHED_YIELD 1
  4671. | #define HAVE_AIO_H 1
  4672. | #define HAVE_LIBRT 1
  4673. | #define HAVE_MKOSTEMP 1
  4674. | #define HAVE_MKDTEMP 1
  4675. | #define HAVE_PREAD 1
  4676. | #define HAVE_PWRITE 1
  4677. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4678. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4679. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4680. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4681. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4682. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4683. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4684. | #define STARPU_NMAX_SCHED_CTXS 10
  4685. | #define STARPU_MAXCPUS 64
  4686. | #define STARPU_USE_CPU 1
  4687. | #define STARPU_MAXCUDADEVS 4
  4688. | /* end confdefs.h. */
  4689. | #include <cuda.h>
  4690. configure:29092: result: no
  4691. configure:29092: checking for cuda.h
  4692. configure:29092: result: no
  4693. configure:29072: checking whether CUDA is available in /..
  4694. configure:29078: result:
  4695. configure:29092: checking cuda.h usability
  4696. configure:29092: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c >&5
  4697. conftest.c:117:10: fatal error: cuda.h: No such file or directory
  4698. #include <cuda.h>
  4699. ^~~~~~~~
  4700. compilation terminated.
  4701. configure:29092: $? = 1
  4702. configure: failed program was:
  4703. | /* confdefs.h */
  4704. | #define PACKAGE_NAME "StarPU"
  4705. | #define PACKAGE_TARNAME "starpu"
  4706. | #define PACKAGE_VERSION "1.3.99"
  4707. | #define PACKAGE_STRING "StarPU 1.3.99"
  4708. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4709. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4710. | #define STARPU_MAJOR_VERSION 1
  4711. | #define STARPU_MINOR_VERSION 3
  4712. | #define STARPU_RELEASE_VERSION 99
  4713. | #define PACKAGE "starpu"
  4714. | #define VERSION "1.3.99"
  4715. | #define STARPU_AUTOFPGA 1
  4716. | #define STARPU_MAXFPGADEVS 12
  4717. | #define STARPU_USE_FPGA 1
  4718. | #define STDC_HEADERS 1
  4719. | #define HAVE_SYS_TYPES_H 1
  4720. | #define HAVE_SYS_STAT_H 1
  4721. | #define HAVE_STDLIB_H 1
  4722. | #define HAVE_STRING_H 1
  4723. | #define HAVE_MEMORY_H 1
  4724. | #define HAVE_STRINGS_H 1
  4725. | #define HAVE_INTTYPES_H 1
  4726. | #define HAVE_STDINT_H 1
  4727. | #define HAVE_UNISTD_H 1
  4728. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4729. | #define STARPU_MAXMPIDEVS 0
  4730. | #define HAVE_CXX11 1
  4731. | #define STARPU_HAVE_CXX11 1
  4732. | #define HAVE_DLFCN_H 1
  4733. | #define LT_OBJDIR ".libs/"
  4734. | #define STDC_HEADERS 1
  4735. | #define restrict __restrict
  4736. | #define STARPU_MIC_USE_RMA 1
  4737. | #define STARPU_MAXNUMANODES 2
  4738. | #define STARPU_LINUX_SYS 1
  4739. | #define SIZEOF_VOID_P 8
  4740. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4741. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4742. | #define HAVE_UNISTD_H 1
  4743. | #define STARPU_HAVE_UNISTD_H 1
  4744. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4745. | #define HAVE_LIBPTHREAD 1
  4746. | #define HAVE_SYSCONF 1
  4747. | #define HAVE_GETRLIMIT 1
  4748. | #define HAVE_SCANDIR 1
  4749. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4750. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4751. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4752. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4753. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4754. | #define HAVE_POSIX_MEMALIGN 1
  4755. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4756. | #define HAVE_MEMALIGN 1
  4757. | #define STARPU_HAVE_MEMALIGN 1
  4758. | #define STARPU_USE_DRAND48 1
  4759. | #define STARPU_USE_ERAND48_R 1
  4760. | #define STARPU_HAVE_STRERROR_R 1
  4761. | #define STARPU_HAVE_SETENV 1
  4762. | #define STARPU_HAVE_UNSETENV 1
  4763. | #define STARPU_HAVE_NEARBYINTF 1
  4764. | #define STARPU_HAVE_RINTF 1
  4765. | #define HAVE_MALLOC_H 1
  4766. | #define STARPU_HAVE_MALLOC_H 1
  4767. | #define STARPU_HAVE_SCHED_YIELD 1
  4768. | #define HAVE_AIO_H 1
  4769. | #define HAVE_LIBRT 1
  4770. | #define HAVE_MKOSTEMP 1
  4771. | #define HAVE_MKDTEMP 1
  4772. | #define HAVE_PREAD 1
  4773. | #define HAVE_PWRITE 1
  4774. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4775. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4776. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4777. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4778. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4779. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4780. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4781. | #define STARPU_NMAX_SCHED_CTXS 10
  4782. | #define STARPU_MAXCPUS 64
  4783. | #define STARPU_USE_CPU 1
  4784. | #define STARPU_MAXCUDADEVS 4
  4785. | /* end confdefs.h. */
  4786. | #include <stdio.h>
  4787. | #ifdef HAVE_SYS_TYPES_H
  4788. | # include <sys/types.h>
  4789. | #endif
  4790. | #ifdef HAVE_SYS_STAT_H
  4791. | # include <sys/stat.h>
  4792. | #endif
  4793. | #ifdef STDC_HEADERS
  4794. | # include <stdlib.h>
  4795. | # include <stddef.h>
  4796. | #else
  4797. | # ifdef HAVE_STDLIB_H
  4798. | # include <stdlib.h>
  4799. | # endif
  4800. | #endif
  4801. | #ifdef HAVE_STRING_H
  4802. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4803. | # include <memory.h>
  4804. | # endif
  4805. | # include <string.h>
  4806. | #endif
  4807. | #ifdef HAVE_STRINGS_H
  4808. | # include <strings.h>
  4809. | #endif
  4810. | #ifdef HAVE_INTTYPES_H
  4811. | # include <inttypes.h>
  4812. | #endif
  4813. | #ifdef HAVE_STDINT_H
  4814. | # include <stdint.h>
  4815. | #endif
  4816. | #ifdef HAVE_UNISTD_H
  4817. | # include <unistd.h>
  4818. | #endif
  4819. | #include <cuda.h>
  4820. configure:29092: result: no
  4821. configure:29092: checking cuda.h presence
  4822. configure:29092: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c
  4823. conftest.c:84:10: fatal error: cuda.h: No such file or directory
  4824. #include <cuda.h>
  4825. ^~~~~~~~
  4826. compilation terminated.
  4827. configure:29092: $? = 1
  4828. configure: failed program was:
  4829. | /* confdefs.h */
  4830. | #define PACKAGE_NAME "StarPU"
  4831. | #define PACKAGE_TARNAME "starpu"
  4832. | #define PACKAGE_VERSION "1.3.99"
  4833. | #define PACKAGE_STRING "StarPU 1.3.99"
  4834. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4835. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4836. | #define STARPU_MAJOR_VERSION 1
  4837. | #define STARPU_MINOR_VERSION 3
  4838. | #define STARPU_RELEASE_VERSION 99
  4839. | #define PACKAGE "starpu"
  4840. | #define VERSION "1.3.99"
  4841. | #define STARPU_AUTOFPGA 1
  4842. | #define STARPU_MAXFPGADEVS 12
  4843. | #define STARPU_USE_FPGA 1
  4844. | #define STDC_HEADERS 1
  4845. | #define HAVE_SYS_TYPES_H 1
  4846. | #define HAVE_SYS_STAT_H 1
  4847. | #define HAVE_STDLIB_H 1
  4848. | #define HAVE_STRING_H 1
  4849. | #define HAVE_MEMORY_H 1
  4850. | #define HAVE_STRINGS_H 1
  4851. | #define HAVE_INTTYPES_H 1
  4852. | #define HAVE_STDINT_H 1
  4853. | #define HAVE_UNISTD_H 1
  4854. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4855. | #define STARPU_MAXMPIDEVS 0
  4856. | #define HAVE_CXX11 1
  4857. | #define STARPU_HAVE_CXX11 1
  4858. | #define HAVE_DLFCN_H 1
  4859. | #define LT_OBJDIR ".libs/"
  4860. | #define STDC_HEADERS 1
  4861. | #define restrict __restrict
  4862. | #define STARPU_MIC_USE_RMA 1
  4863. | #define STARPU_MAXNUMANODES 2
  4864. | #define STARPU_LINUX_SYS 1
  4865. | #define SIZEOF_VOID_P 8
  4866. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4867. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4868. | #define HAVE_UNISTD_H 1
  4869. | #define STARPU_HAVE_UNISTD_H 1
  4870. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4871. | #define HAVE_LIBPTHREAD 1
  4872. | #define HAVE_SYSCONF 1
  4873. | #define HAVE_GETRLIMIT 1
  4874. | #define HAVE_SCANDIR 1
  4875. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4876. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4877. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4878. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4879. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4880. | #define HAVE_POSIX_MEMALIGN 1
  4881. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4882. | #define HAVE_MEMALIGN 1
  4883. | #define STARPU_HAVE_MEMALIGN 1
  4884. | #define STARPU_USE_DRAND48 1
  4885. | #define STARPU_USE_ERAND48_R 1
  4886. | #define STARPU_HAVE_STRERROR_R 1
  4887. | #define STARPU_HAVE_SETENV 1
  4888. | #define STARPU_HAVE_UNSETENV 1
  4889. | #define STARPU_HAVE_NEARBYINTF 1
  4890. | #define STARPU_HAVE_RINTF 1
  4891. | #define HAVE_MALLOC_H 1
  4892. | #define STARPU_HAVE_MALLOC_H 1
  4893. | #define STARPU_HAVE_SCHED_YIELD 1
  4894. | #define HAVE_AIO_H 1
  4895. | #define HAVE_LIBRT 1
  4896. | #define HAVE_MKOSTEMP 1
  4897. | #define HAVE_MKDTEMP 1
  4898. | #define HAVE_PREAD 1
  4899. | #define HAVE_PWRITE 1
  4900. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  4901. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  4902. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  4903. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  4904. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  4905. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  4906. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  4907. | #define STARPU_NMAX_SCHED_CTXS 10
  4908. | #define STARPU_MAXCPUS 64
  4909. | #define STARPU_USE_CPU 1
  4910. | #define STARPU_MAXCUDADEVS 4
  4911. | /* end confdefs.h. */
  4912. | #include <cuda.h>
  4913. configure:29092: result: no
  4914. configure:29092: checking for cuda.h
  4915. configure:29092: result: no
  4916. configure:29508: checking whether CUDA is working
  4917. configure:29572: result: no
  4918. configure:29583: checking whether CUDA should be used
  4919. configure:29585: result: no
  4920. configure:29857: checking whether MAGMA should be used
  4921. configure:29859: result: no
  4922. configure:29863: checking for cufftDoubleComplex
  4923. configure:29863: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c >&5
  4924. conftest.c:84:10: fatal error: cufft.h: No such file or directory
  4925. #include <cufft.h>
  4926. ^~~~~~~~~
  4927. compilation terminated.
  4928. configure:29863: $? = 1
  4929. configure: failed program was:
  4930. | /* confdefs.h */
  4931. | #define PACKAGE_NAME "StarPU"
  4932. | #define PACKAGE_TARNAME "starpu"
  4933. | #define PACKAGE_VERSION "1.3.99"
  4934. | #define PACKAGE_STRING "StarPU 1.3.99"
  4935. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  4936. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  4937. | #define STARPU_MAJOR_VERSION 1
  4938. | #define STARPU_MINOR_VERSION 3
  4939. | #define STARPU_RELEASE_VERSION 99
  4940. | #define PACKAGE "starpu"
  4941. | #define VERSION "1.3.99"
  4942. | #define STARPU_AUTOFPGA 1
  4943. | #define STARPU_MAXFPGADEVS 12
  4944. | #define STARPU_USE_FPGA 1
  4945. | #define STDC_HEADERS 1
  4946. | #define HAVE_SYS_TYPES_H 1
  4947. | #define HAVE_SYS_STAT_H 1
  4948. | #define HAVE_STDLIB_H 1
  4949. | #define HAVE_STRING_H 1
  4950. | #define HAVE_MEMORY_H 1
  4951. | #define HAVE_STRINGS_H 1
  4952. | #define HAVE_INTTYPES_H 1
  4953. | #define HAVE_STDINT_H 1
  4954. | #define HAVE_UNISTD_H 1
  4955. | #define STARPU_NON_BLOCKING_DRIVERS 1
  4956. | #define STARPU_MAXMPIDEVS 0
  4957. | #define HAVE_CXX11 1
  4958. | #define STARPU_HAVE_CXX11 1
  4959. | #define HAVE_DLFCN_H 1
  4960. | #define LT_OBJDIR ".libs/"
  4961. | #define STDC_HEADERS 1
  4962. | #define restrict __restrict
  4963. | #define STARPU_MIC_USE_RMA 1
  4964. | #define STARPU_MAXNUMANODES 2
  4965. | #define STARPU_LINUX_SYS 1
  4966. | #define SIZEOF_VOID_P 8
  4967. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  4968. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  4969. | #define HAVE_UNISTD_H 1
  4970. | #define STARPU_HAVE_UNISTD_H 1
  4971. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  4972. | #define HAVE_LIBPTHREAD 1
  4973. | #define HAVE_SYSCONF 1
  4974. | #define HAVE_GETRLIMIT 1
  4975. | #define HAVE_SCANDIR 1
  4976. | #define HAVE_PTHREAD_SPIN_LOCK 1
  4977. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  4978. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  4979. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  4980. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  4981. | #define HAVE_POSIX_MEMALIGN 1
  4982. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  4983. | #define HAVE_MEMALIGN 1
  4984. | #define STARPU_HAVE_MEMALIGN 1
  4985. | #define STARPU_USE_DRAND48 1
  4986. | #define STARPU_USE_ERAND48_R 1
  4987. | #define STARPU_HAVE_STRERROR_R 1
  4988. | #define STARPU_HAVE_SETENV 1
  4989. | #define STARPU_HAVE_UNSETENV 1
  4990. | #define STARPU_HAVE_NEARBYINTF 1
  4991. | #define STARPU_HAVE_RINTF 1
  4992. | #define HAVE_MALLOC_H 1
  4993. | #define STARPU_HAVE_MALLOC_H 1
  4994. | #define STARPU_HAVE_SCHED_YIELD 1
  4995. | #define HAVE_AIO_H 1
  4996. | #define HAVE_LIBRT 1
  4997. | #define HAVE_MKOSTEMP 1
  4998. | #define HAVE_MKDTEMP 1
  4999. | #define HAVE_PREAD 1
  5000. | #define HAVE_PWRITE 1
  5001. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5002. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5003. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5004. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5005. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5006. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5007. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5008. | #define STARPU_NMAX_SCHED_CTXS 10
  5009. | #define STARPU_MAXCPUS 64
  5010. | #define STARPU_USE_CPU 1
  5011. | #define STARPU_MAXCUDADEVS 4
  5012. | /* end confdefs.h. */
  5013. | #include <cufft.h>
  5014. |
  5015. | int
  5016. | main ()
  5017. | {
  5018. | if (sizeof (cufftDoubleComplex))
  5019. | return 0;
  5020. | ;
  5021. | return 0;
  5022. | }
  5023. configure:29863: result: no
  5024. configure:29929: checking whether CURAND is available
  5025. configure:29931: result: no
  5026. configure:29975: checking maximum number of OpenCL devices
  5027. configure:29984: result: 8
  5028. configure:30097: checking whether OpenCL is available
  5029. configure:30100: result:
  5030. configure:30113: checking CL/cl.h usability
  5031. configure:30113: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c >&5
  5032. conftest.c:118:10: fatal error: CL/cl.h: No such file or directory
  5033. #include <CL/cl.h>
  5034. ^~~~~~~~~
  5035. compilation terminated.
  5036. configure:30113: $? = 1
  5037. configure: failed program was:
  5038. | /* confdefs.h */
  5039. | #define PACKAGE_NAME "StarPU"
  5040. | #define PACKAGE_TARNAME "starpu"
  5041. | #define PACKAGE_VERSION "1.3.99"
  5042. | #define PACKAGE_STRING "StarPU 1.3.99"
  5043. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5044. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5045. | #define STARPU_MAJOR_VERSION 1
  5046. | #define STARPU_MINOR_VERSION 3
  5047. | #define STARPU_RELEASE_VERSION 99
  5048. | #define PACKAGE "starpu"
  5049. | #define VERSION "1.3.99"
  5050. | #define STARPU_AUTOFPGA 1
  5051. | #define STARPU_MAXFPGADEVS 12
  5052. | #define STARPU_USE_FPGA 1
  5053. | #define STDC_HEADERS 1
  5054. | #define HAVE_SYS_TYPES_H 1
  5055. | #define HAVE_SYS_STAT_H 1
  5056. | #define HAVE_STDLIB_H 1
  5057. | #define HAVE_STRING_H 1
  5058. | #define HAVE_MEMORY_H 1
  5059. | #define HAVE_STRINGS_H 1
  5060. | #define HAVE_INTTYPES_H 1
  5061. | #define HAVE_STDINT_H 1
  5062. | #define HAVE_UNISTD_H 1
  5063. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5064. | #define STARPU_MAXMPIDEVS 0
  5065. | #define HAVE_CXX11 1
  5066. | #define STARPU_HAVE_CXX11 1
  5067. | #define HAVE_DLFCN_H 1
  5068. | #define LT_OBJDIR ".libs/"
  5069. | #define STDC_HEADERS 1
  5070. | #define restrict __restrict
  5071. | #define STARPU_MIC_USE_RMA 1
  5072. | #define STARPU_MAXNUMANODES 2
  5073. | #define STARPU_LINUX_SYS 1
  5074. | #define SIZEOF_VOID_P 8
  5075. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5076. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5077. | #define HAVE_UNISTD_H 1
  5078. | #define STARPU_HAVE_UNISTD_H 1
  5079. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5080. | #define HAVE_LIBPTHREAD 1
  5081. | #define HAVE_SYSCONF 1
  5082. | #define HAVE_GETRLIMIT 1
  5083. | #define HAVE_SCANDIR 1
  5084. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5085. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5086. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5087. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5088. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5089. | #define HAVE_POSIX_MEMALIGN 1
  5090. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5091. | #define HAVE_MEMALIGN 1
  5092. | #define STARPU_HAVE_MEMALIGN 1
  5093. | #define STARPU_USE_DRAND48 1
  5094. | #define STARPU_USE_ERAND48_R 1
  5095. | #define STARPU_HAVE_STRERROR_R 1
  5096. | #define STARPU_HAVE_SETENV 1
  5097. | #define STARPU_HAVE_UNSETENV 1
  5098. | #define STARPU_HAVE_NEARBYINTF 1
  5099. | #define STARPU_HAVE_RINTF 1
  5100. | #define HAVE_MALLOC_H 1
  5101. | #define STARPU_HAVE_MALLOC_H 1
  5102. | #define STARPU_HAVE_SCHED_YIELD 1
  5103. | #define HAVE_AIO_H 1
  5104. | #define HAVE_LIBRT 1
  5105. | #define HAVE_MKOSTEMP 1
  5106. | #define HAVE_MKDTEMP 1
  5107. | #define HAVE_PREAD 1
  5108. | #define HAVE_PWRITE 1
  5109. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5110. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5111. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5112. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5113. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5114. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5115. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5116. | #define STARPU_NMAX_SCHED_CTXS 10
  5117. | #define STARPU_MAXCPUS 64
  5118. | #define STARPU_USE_CPU 1
  5119. | #define STARPU_MAXCUDADEVS 4
  5120. | #define STARPU_MAXOPENCLDEVS 8
  5121. | /* end confdefs.h. */
  5122. | #include <stdio.h>
  5123. | #ifdef HAVE_SYS_TYPES_H
  5124. | # include <sys/types.h>
  5125. | #endif
  5126. | #ifdef HAVE_SYS_STAT_H
  5127. | # include <sys/stat.h>
  5128. | #endif
  5129. | #ifdef STDC_HEADERS
  5130. | # include <stdlib.h>
  5131. | # include <stddef.h>
  5132. | #else
  5133. | # ifdef HAVE_STDLIB_H
  5134. | # include <stdlib.h>
  5135. | # endif
  5136. | #endif
  5137. | #ifdef HAVE_STRING_H
  5138. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5139. | # include <memory.h>
  5140. | # endif
  5141. | # include <string.h>
  5142. | #endif
  5143. | #ifdef HAVE_STRINGS_H
  5144. | # include <strings.h>
  5145. | #endif
  5146. | #ifdef HAVE_INTTYPES_H
  5147. | # include <inttypes.h>
  5148. | #endif
  5149. | #ifdef HAVE_STDINT_H
  5150. | # include <stdint.h>
  5151. | #endif
  5152. | #ifdef HAVE_UNISTD_H
  5153. | # include <unistd.h>
  5154. | #endif
  5155. | #include <CL/cl.h>
  5156. configure:30113: result: no
  5157. configure:30113: checking CL/cl.h presence
  5158. configure:30113: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE conftest.c
  5159. conftest.c:85:10: fatal error: CL/cl.h: No such file or directory
  5160. #include <CL/cl.h>
  5161. ^~~~~~~~~
  5162. compilation terminated.
  5163. configure:30113: $? = 1
  5164. configure: failed program was:
  5165. | /* confdefs.h */
  5166. | #define PACKAGE_NAME "StarPU"
  5167. | #define PACKAGE_TARNAME "starpu"
  5168. | #define PACKAGE_VERSION "1.3.99"
  5169. | #define PACKAGE_STRING "StarPU 1.3.99"
  5170. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5171. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5172. | #define STARPU_MAJOR_VERSION 1
  5173. | #define STARPU_MINOR_VERSION 3
  5174. | #define STARPU_RELEASE_VERSION 99
  5175. | #define PACKAGE "starpu"
  5176. | #define VERSION "1.3.99"
  5177. | #define STARPU_AUTOFPGA 1
  5178. | #define STARPU_MAXFPGADEVS 12
  5179. | #define STARPU_USE_FPGA 1
  5180. | #define STDC_HEADERS 1
  5181. | #define HAVE_SYS_TYPES_H 1
  5182. | #define HAVE_SYS_STAT_H 1
  5183. | #define HAVE_STDLIB_H 1
  5184. | #define HAVE_STRING_H 1
  5185. | #define HAVE_MEMORY_H 1
  5186. | #define HAVE_STRINGS_H 1
  5187. | #define HAVE_INTTYPES_H 1
  5188. | #define HAVE_STDINT_H 1
  5189. | #define HAVE_UNISTD_H 1
  5190. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5191. | #define STARPU_MAXMPIDEVS 0
  5192. | #define HAVE_CXX11 1
  5193. | #define STARPU_HAVE_CXX11 1
  5194. | #define HAVE_DLFCN_H 1
  5195. | #define LT_OBJDIR ".libs/"
  5196. | #define STDC_HEADERS 1
  5197. | #define restrict __restrict
  5198. | #define STARPU_MIC_USE_RMA 1
  5199. | #define STARPU_MAXNUMANODES 2
  5200. | #define STARPU_LINUX_SYS 1
  5201. | #define SIZEOF_VOID_P 8
  5202. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5203. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5204. | #define HAVE_UNISTD_H 1
  5205. | #define STARPU_HAVE_UNISTD_H 1
  5206. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5207. | #define HAVE_LIBPTHREAD 1
  5208. | #define HAVE_SYSCONF 1
  5209. | #define HAVE_GETRLIMIT 1
  5210. | #define HAVE_SCANDIR 1
  5211. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5212. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5213. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5214. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5215. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5216. | #define HAVE_POSIX_MEMALIGN 1
  5217. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5218. | #define HAVE_MEMALIGN 1
  5219. | #define STARPU_HAVE_MEMALIGN 1
  5220. | #define STARPU_USE_DRAND48 1
  5221. | #define STARPU_USE_ERAND48_R 1
  5222. | #define STARPU_HAVE_STRERROR_R 1
  5223. | #define STARPU_HAVE_SETENV 1
  5224. | #define STARPU_HAVE_UNSETENV 1
  5225. | #define STARPU_HAVE_NEARBYINTF 1
  5226. | #define STARPU_HAVE_RINTF 1
  5227. | #define HAVE_MALLOC_H 1
  5228. | #define STARPU_HAVE_MALLOC_H 1
  5229. | #define STARPU_HAVE_SCHED_YIELD 1
  5230. | #define HAVE_AIO_H 1
  5231. | #define HAVE_LIBRT 1
  5232. | #define HAVE_MKOSTEMP 1
  5233. | #define HAVE_MKDTEMP 1
  5234. | #define HAVE_PREAD 1
  5235. | #define HAVE_PWRITE 1
  5236. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5237. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5238. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5239. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5240. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5241. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5242. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5243. | #define STARPU_NMAX_SCHED_CTXS 10
  5244. | #define STARPU_MAXCPUS 64
  5245. | #define STARPU_USE_CPU 1
  5246. | #define STARPU_MAXCUDADEVS 4
  5247. | #define STARPU_MAXOPENCLDEVS 8
  5248. | /* end confdefs.h. */
  5249. | #include <CL/cl.h>
  5250. configure:30113: result: no
  5251. configure:30113: checking for CL/cl.h
  5252. configure:30113: result: no
  5253. configure:30337: checking whether OpenCL is available in /usr/local/cuda no and no
  5254. configure:30343: result:
  5255. configure:30356: checking CL/cl.h usability
  5256. configure:30356: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/usr/local/cuda/include conftest.c >&5
  5257. conftest.c:118:10: fatal error: CL/cl.h: No such file or directory
  5258. #include <CL/cl.h>
  5259. ^~~~~~~~~
  5260. compilation terminated.
  5261. configure:30356: $? = 1
  5262. configure: failed program was:
  5263. | /* confdefs.h */
  5264. | #define PACKAGE_NAME "StarPU"
  5265. | #define PACKAGE_TARNAME "starpu"
  5266. | #define PACKAGE_VERSION "1.3.99"
  5267. | #define PACKAGE_STRING "StarPU 1.3.99"
  5268. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5269. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5270. | #define STARPU_MAJOR_VERSION 1
  5271. | #define STARPU_MINOR_VERSION 3
  5272. | #define STARPU_RELEASE_VERSION 99
  5273. | #define PACKAGE "starpu"
  5274. | #define VERSION "1.3.99"
  5275. | #define STARPU_AUTOFPGA 1
  5276. | #define STARPU_MAXFPGADEVS 12
  5277. | #define STARPU_USE_FPGA 1
  5278. | #define STDC_HEADERS 1
  5279. | #define HAVE_SYS_TYPES_H 1
  5280. | #define HAVE_SYS_STAT_H 1
  5281. | #define HAVE_STDLIB_H 1
  5282. | #define HAVE_STRING_H 1
  5283. | #define HAVE_MEMORY_H 1
  5284. | #define HAVE_STRINGS_H 1
  5285. | #define HAVE_INTTYPES_H 1
  5286. | #define HAVE_STDINT_H 1
  5287. | #define HAVE_UNISTD_H 1
  5288. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5289. | #define STARPU_MAXMPIDEVS 0
  5290. | #define HAVE_CXX11 1
  5291. | #define STARPU_HAVE_CXX11 1
  5292. | #define HAVE_DLFCN_H 1
  5293. | #define LT_OBJDIR ".libs/"
  5294. | #define STDC_HEADERS 1
  5295. | #define restrict __restrict
  5296. | #define STARPU_MIC_USE_RMA 1
  5297. | #define STARPU_MAXNUMANODES 2
  5298. | #define STARPU_LINUX_SYS 1
  5299. | #define SIZEOF_VOID_P 8
  5300. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5301. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5302. | #define HAVE_UNISTD_H 1
  5303. | #define STARPU_HAVE_UNISTD_H 1
  5304. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5305. | #define HAVE_LIBPTHREAD 1
  5306. | #define HAVE_SYSCONF 1
  5307. | #define HAVE_GETRLIMIT 1
  5308. | #define HAVE_SCANDIR 1
  5309. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5310. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5311. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5312. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5313. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5314. | #define HAVE_POSIX_MEMALIGN 1
  5315. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5316. | #define HAVE_MEMALIGN 1
  5317. | #define STARPU_HAVE_MEMALIGN 1
  5318. | #define STARPU_USE_DRAND48 1
  5319. | #define STARPU_USE_ERAND48_R 1
  5320. | #define STARPU_HAVE_STRERROR_R 1
  5321. | #define STARPU_HAVE_SETENV 1
  5322. | #define STARPU_HAVE_UNSETENV 1
  5323. | #define STARPU_HAVE_NEARBYINTF 1
  5324. | #define STARPU_HAVE_RINTF 1
  5325. | #define HAVE_MALLOC_H 1
  5326. | #define STARPU_HAVE_MALLOC_H 1
  5327. | #define STARPU_HAVE_SCHED_YIELD 1
  5328. | #define HAVE_AIO_H 1
  5329. | #define HAVE_LIBRT 1
  5330. | #define HAVE_MKOSTEMP 1
  5331. | #define HAVE_MKDTEMP 1
  5332. | #define HAVE_PREAD 1
  5333. | #define HAVE_PWRITE 1
  5334. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5335. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5336. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5337. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5338. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5339. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5340. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5341. | #define STARPU_NMAX_SCHED_CTXS 10
  5342. | #define STARPU_MAXCPUS 64
  5343. | #define STARPU_USE_CPU 1
  5344. | #define STARPU_MAXCUDADEVS 4
  5345. | #define STARPU_MAXOPENCLDEVS 8
  5346. | /* end confdefs.h. */
  5347. | #include <stdio.h>
  5348. | #ifdef HAVE_SYS_TYPES_H
  5349. | # include <sys/types.h>
  5350. | #endif
  5351. | #ifdef HAVE_SYS_STAT_H
  5352. | # include <sys/stat.h>
  5353. | #endif
  5354. | #ifdef STDC_HEADERS
  5355. | # include <stdlib.h>
  5356. | # include <stddef.h>
  5357. | #else
  5358. | # ifdef HAVE_STDLIB_H
  5359. | # include <stdlib.h>
  5360. | # endif
  5361. | #endif
  5362. | #ifdef HAVE_STRING_H
  5363. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5364. | # include <memory.h>
  5365. | # endif
  5366. | # include <string.h>
  5367. | #endif
  5368. | #ifdef HAVE_STRINGS_H
  5369. | # include <strings.h>
  5370. | #endif
  5371. | #ifdef HAVE_INTTYPES_H
  5372. | # include <inttypes.h>
  5373. | #endif
  5374. | #ifdef HAVE_STDINT_H
  5375. | # include <stdint.h>
  5376. | #endif
  5377. | #ifdef HAVE_UNISTD_H
  5378. | # include <unistd.h>
  5379. | #endif
  5380. | #include <CL/cl.h>
  5381. configure:30356: result: no
  5382. configure:30356: checking CL/cl.h presence
  5383. configure:30356: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/usr/local/cuda/include conftest.c
  5384. conftest.c:85:10: fatal error: CL/cl.h: No such file or directory
  5385. #include <CL/cl.h>
  5386. ^~~~~~~~~
  5387. compilation terminated.
  5388. configure:30356: $? = 1
  5389. configure: failed program was:
  5390. | /* confdefs.h */
  5391. | #define PACKAGE_NAME "StarPU"
  5392. | #define PACKAGE_TARNAME "starpu"
  5393. | #define PACKAGE_VERSION "1.3.99"
  5394. | #define PACKAGE_STRING "StarPU 1.3.99"
  5395. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5396. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5397. | #define STARPU_MAJOR_VERSION 1
  5398. | #define STARPU_MINOR_VERSION 3
  5399. | #define STARPU_RELEASE_VERSION 99
  5400. | #define PACKAGE "starpu"
  5401. | #define VERSION "1.3.99"
  5402. | #define STARPU_AUTOFPGA 1
  5403. | #define STARPU_MAXFPGADEVS 12
  5404. | #define STARPU_USE_FPGA 1
  5405. | #define STDC_HEADERS 1
  5406. | #define HAVE_SYS_TYPES_H 1
  5407. | #define HAVE_SYS_STAT_H 1
  5408. | #define HAVE_STDLIB_H 1
  5409. | #define HAVE_STRING_H 1
  5410. | #define HAVE_MEMORY_H 1
  5411. | #define HAVE_STRINGS_H 1
  5412. | #define HAVE_INTTYPES_H 1
  5413. | #define HAVE_STDINT_H 1
  5414. | #define HAVE_UNISTD_H 1
  5415. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5416. | #define STARPU_MAXMPIDEVS 0
  5417. | #define HAVE_CXX11 1
  5418. | #define STARPU_HAVE_CXX11 1
  5419. | #define HAVE_DLFCN_H 1
  5420. | #define LT_OBJDIR ".libs/"
  5421. | #define STDC_HEADERS 1
  5422. | #define restrict __restrict
  5423. | #define STARPU_MIC_USE_RMA 1
  5424. | #define STARPU_MAXNUMANODES 2
  5425. | #define STARPU_LINUX_SYS 1
  5426. | #define SIZEOF_VOID_P 8
  5427. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5428. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5429. | #define HAVE_UNISTD_H 1
  5430. | #define STARPU_HAVE_UNISTD_H 1
  5431. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5432. | #define HAVE_LIBPTHREAD 1
  5433. | #define HAVE_SYSCONF 1
  5434. | #define HAVE_GETRLIMIT 1
  5435. | #define HAVE_SCANDIR 1
  5436. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5437. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5438. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5439. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5440. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5441. | #define HAVE_POSIX_MEMALIGN 1
  5442. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5443. | #define HAVE_MEMALIGN 1
  5444. | #define STARPU_HAVE_MEMALIGN 1
  5445. | #define STARPU_USE_DRAND48 1
  5446. | #define STARPU_USE_ERAND48_R 1
  5447. | #define STARPU_HAVE_STRERROR_R 1
  5448. | #define STARPU_HAVE_SETENV 1
  5449. | #define STARPU_HAVE_UNSETENV 1
  5450. | #define STARPU_HAVE_NEARBYINTF 1
  5451. | #define STARPU_HAVE_RINTF 1
  5452. | #define HAVE_MALLOC_H 1
  5453. | #define STARPU_HAVE_MALLOC_H 1
  5454. | #define STARPU_HAVE_SCHED_YIELD 1
  5455. | #define HAVE_AIO_H 1
  5456. | #define HAVE_LIBRT 1
  5457. | #define HAVE_MKOSTEMP 1
  5458. | #define HAVE_MKDTEMP 1
  5459. | #define HAVE_PREAD 1
  5460. | #define HAVE_PWRITE 1
  5461. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5462. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5463. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5464. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5465. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5466. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5467. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5468. | #define STARPU_NMAX_SCHED_CTXS 10
  5469. | #define STARPU_MAXCPUS 64
  5470. | #define STARPU_USE_CPU 1
  5471. | #define STARPU_MAXCUDADEVS 4
  5472. | #define STARPU_MAXOPENCLDEVS 8
  5473. | /* end confdefs.h. */
  5474. | #include <CL/cl.h>
  5475. configure:30356: result: no
  5476. configure:30356: checking for CL/cl.h
  5477. configure:30356: result: no
  5478. configure:30337: checking whether OpenCL is available in /c/cuda no and no
  5479. configure:30343: result:
  5480. configure:30356: checking CL/cl.h usability
  5481. configure:30356: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/c/cuda/include conftest.c >&5
  5482. conftest.c:118:10: fatal error: CL/cl.h: No such file or directory
  5483. #include <CL/cl.h>
  5484. ^~~~~~~~~
  5485. compilation terminated.
  5486. configure:30356: $? = 1
  5487. configure: failed program was:
  5488. | /* confdefs.h */
  5489. | #define PACKAGE_NAME "StarPU"
  5490. | #define PACKAGE_TARNAME "starpu"
  5491. | #define PACKAGE_VERSION "1.3.99"
  5492. | #define PACKAGE_STRING "StarPU 1.3.99"
  5493. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5494. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5495. | #define STARPU_MAJOR_VERSION 1
  5496. | #define STARPU_MINOR_VERSION 3
  5497. | #define STARPU_RELEASE_VERSION 99
  5498. | #define PACKAGE "starpu"
  5499. | #define VERSION "1.3.99"
  5500. | #define STARPU_AUTOFPGA 1
  5501. | #define STARPU_MAXFPGADEVS 12
  5502. | #define STARPU_USE_FPGA 1
  5503. | #define STDC_HEADERS 1
  5504. | #define HAVE_SYS_TYPES_H 1
  5505. | #define HAVE_SYS_STAT_H 1
  5506. | #define HAVE_STDLIB_H 1
  5507. | #define HAVE_STRING_H 1
  5508. | #define HAVE_MEMORY_H 1
  5509. | #define HAVE_STRINGS_H 1
  5510. | #define HAVE_INTTYPES_H 1
  5511. | #define HAVE_STDINT_H 1
  5512. | #define HAVE_UNISTD_H 1
  5513. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5514. | #define STARPU_MAXMPIDEVS 0
  5515. | #define HAVE_CXX11 1
  5516. | #define STARPU_HAVE_CXX11 1
  5517. | #define HAVE_DLFCN_H 1
  5518. | #define LT_OBJDIR ".libs/"
  5519. | #define STDC_HEADERS 1
  5520. | #define restrict __restrict
  5521. | #define STARPU_MIC_USE_RMA 1
  5522. | #define STARPU_MAXNUMANODES 2
  5523. | #define STARPU_LINUX_SYS 1
  5524. | #define SIZEOF_VOID_P 8
  5525. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5526. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5527. | #define HAVE_UNISTD_H 1
  5528. | #define STARPU_HAVE_UNISTD_H 1
  5529. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5530. | #define HAVE_LIBPTHREAD 1
  5531. | #define HAVE_SYSCONF 1
  5532. | #define HAVE_GETRLIMIT 1
  5533. | #define HAVE_SCANDIR 1
  5534. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5535. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5536. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5537. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5538. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5539. | #define HAVE_POSIX_MEMALIGN 1
  5540. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5541. | #define HAVE_MEMALIGN 1
  5542. | #define STARPU_HAVE_MEMALIGN 1
  5543. | #define STARPU_USE_DRAND48 1
  5544. | #define STARPU_USE_ERAND48_R 1
  5545. | #define STARPU_HAVE_STRERROR_R 1
  5546. | #define STARPU_HAVE_SETENV 1
  5547. | #define STARPU_HAVE_UNSETENV 1
  5548. | #define STARPU_HAVE_NEARBYINTF 1
  5549. | #define STARPU_HAVE_RINTF 1
  5550. | #define HAVE_MALLOC_H 1
  5551. | #define STARPU_HAVE_MALLOC_H 1
  5552. | #define STARPU_HAVE_SCHED_YIELD 1
  5553. | #define HAVE_AIO_H 1
  5554. | #define HAVE_LIBRT 1
  5555. | #define HAVE_MKOSTEMP 1
  5556. | #define HAVE_MKDTEMP 1
  5557. | #define HAVE_PREAD 1
  5558. | #define HAVE_PWRITE 1
  5559. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5560. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5561. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5562. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5563. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5564. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5565. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5566. | #define STARPU_NMAX_SCHED_CTXS 10
  5567. | #define STARPU_MAXCPUS 64
  5568. | #define STARPU_USE_CPU 1
  5569. | #define STARPU_MAXCUDADEVS 4
  5570. | #define STARPU_MAXOPENCLDEVS 8
  5571. | /* end confdefs.h. */
  5572. | #include <stdio.h>
  5573. | #ifdef HAVE_SYS_TYPES_H
  5574. | # include <sys/types.h>
  5575. | #endif
  5576. | #ifdef HAVE_SYS_STAT_H
  5577. | # include <sys/stat.h>
  5578. | #endif
  5579. | #ifdef STDC_HEADERS
  5580. | # include <stdlib.h>
  5581. | # include <stddef.h>
  5582. | #else
  5583. | # ifdef HAVE_STDLIB_H
  5584. | # include <stdlib.h>
  5585. | # endif
  5586. | #endif
  5587. | #ifdef HAVE_STRING_H
  5588. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5589. | # include <memory.h>
  5590. | # endif
  5591. | # include <string.h>
  5592. | #endif
  5593. | #ifdef HAVE_STRINGS_H
  5594. | # include <strings.h>
  5595. | #endif
  5596. | #ifdef HAVE_INTTYPES_H
  5597. | # include <inttypes.h>
  5598. | #endif
  5599. | #ifdef HAVE_STDINT_H
  5600. | # include <stdint.h>
  5601. | #endif
  5602. | #ifdef HAVE_UNISTD_H
  5603. | # include <unistd.h>
  5604. | #endif
  5605. | #include <CL/cl.h>
  5606. configure:30356: result: no
  5607. configure:30356: checking CL/cl.h presence
  5608. configure:30356: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/c/cuda/include conftest.c
  5609. conftest.c:85:10: fatal error: CL/cl.h: No such file or directory
  5610. #include <CL/cl.h>
  5611. ^~~~~~~~~
  5612. compilation terminated.
  5613. configure:30356: $? = 1
  5614. configure: failed program was:
  5615. | /* confdefs.h */
  5616. | #define PACKAGE_NAME "StarPU"
  5617. | #define PACKAGE_TARNAME "starpu"
  5618. | #define PACKAGE_VERSION "1.3.99"
  5619. | #define PACKAGE_STRING "StarPU 1.3.99"
  5620. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5621. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5622. | #define STARPU_MAJOR_VERSION 1
  5623. | #define STARPU_MINOR_VERSION 3
  5624. | #define STARPU_RELEASE_VERSION 99
  5625. | #define PACKAGE "starpu"
  5626. | #define VERSION "1.3.99"
  5627. | #define STARPU_AUTOFPGA 1
  5628. | #define STARPU_MAXFPGADEVS 12
  5629. | #define STARPU_USE_FPGA 1
  5630. | #define STDC_HEADERS 1
  5631. | #define HAVE_SYS_TYPES_H 1
  5632. | #define HAVE_SYS_STAT_H 1
  5633. | #define HAVE_STDLIB_H 1
  5634. | #define HAVE_STRING_H 1
  5635. | #define HAVE_MEMORY_H 1
  5636. | #define HAVE_STRINGS_H 1
  5637. | #define HAVE_INTTYPES_H 1
  5638. | #define HAVE_STDINT_H 1
  5639. | #define HAVE_UNISTD_H 1
  5640. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5641. | #define STARPU_MAXMPIDEVS 0
  5642. | #define HAVE_CXX11 1
  5643. | #define STARPU_HAVE_CXX11 1
  5644. | #define HAVE_DLFCN_H 1
  5645. | #define LT_OBJDIR ".libs/"
  5646. | #define STDC_HEADERS 1
  5647. | #define restrict __restrict
  5648. | #define STARPU_MIC_USE_RMA 1
  5649. | #define STARPU_MAXNUMANODES 2
  5650. | #define STARPU_LINUX_SYS 1
  5651. | #define SIZEOF_VOID_P 8
  5652. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5653. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5654. | #define HAVE_UNISTD_H 1
  5655. | #define STARPU_HAVE_UNISTD_H 1
  5656. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5657. | #define HAVE_LIBPTHREAD 1
  5658. | #define HAVE_SYSCONF 1
  5659. | #define HAVE_GETRLIMIT 1
  5660. | #define HAVE_SCANDIR 1
  5661. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5662. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5663. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5664. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5665. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5666. | #define HAVE_POSIX_MEMALIGN 1
  5667. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5668. | #define HAVE_MEMALIGN 1
  5669. | #define STARPU_HAVE_MEMALIGN 1
  5670. | #define STARPU_USE_DRAND48 1
  5671. | #define STARPU_USE_ERAND48_R 1
  5672. | #define STARPU_HAVE_STRERROR_R 1
  5673. | #define STARPU_HAVE_SETENV 1
  5674. | #define STARPU_HAVE_UNSETENV 1
  5675. | #define STARPU_HAVE_NEARBYINTF 1
  5676. | #define STARPU_HAVE_RINTF 1
  5677. | #define HAVE_MALLOC_H 1
  5678. | #define STARPU_HAVE_MALLOC_H 1
  5679. | #define STARPU_HAVE_SCHED_YIELD 1
  5680. | #define HAVE_AIO_H 1
  5681. | #define HAVE_LIBRT 1
  5682. | #define HAVE_MKOSTEMP 1
  5683. | #define HAVE_MKDTEMP 1
  5684. | #define HAVE_PREAD 1
  5685. | #define HAVE_PWRITE 1
  5686. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5687. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5688. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5689. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5690. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5691. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5692. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5693. | #define STARPU_NMAX_SCHED_CTXS 10
  5694. | #define STARPU_MAXCPUS 64
  5695. | #define STARPU_USE_CPU 1
  5696. | #define STARPU_MAXCUDADEVS 4
  5697. | #define STARPU_MAXOPENCLDEVS 8
  5698. | /* end confdefs.h. */
  5699. | #include <CL/cl.h>
  5700. configure:30356: result: no
  5701. configure:30356: checking for CL/cl.h
  5702. configure:30356: result: no
  5703. configure:30337: checking whether OpenCL is available in /cygdrive/c/cuda no and no
  5704. configure:30343: result:
  5705. configure:30356: checking CL/cl.h usability
  5706. configure:30356: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/cygdrive/c/cuda/include conftest.c >&5
  5707. conftest.c:118:10: fatal error: CL/cl.h: No such file or directory
  5708. #include <CL/cl.h>
  5709. ^~~~~~~~~
  5710. compilation terminated.
  5711. configure:30356: $? = 1
  5712. configure: failed program was:
  5713. | /* confdefs.h */
  5714. | #define PACKAGE_NAME "StarPU"
  5715. | #define PACKAGE_TARNAME "starpu"
  5716. | #define PACKAGE_VERSION "1.3.99"
  5717. | #define PACKAGE_STRING "StarPU 1.3.99"
  5718. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5719. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5720. | #define STARPU_MAJOR_VERSION 1
  5721. | #define STARPU_MINOR_VERSION 3
  5722. | #define STARPU_RELEASE_VERSION 99
  5723. | #define PACKAGE "starpu"
  5724. | #define VERSION "1.3.99"
  5725. | #define STARPU_AUTOFPGA 1
  5726. | #define STARPU_MAXFPGADEVS 12
  5727. | #define STARPU_USE_FPGA 1
  5728. | #define STDC_HEADERS 1
  5729. | #define HAVE_SYS_TYPES_H 1
  5730. | #define HAVE_SYS_STAT_H 1
  5731. | #define HAVE_STDLIB_H 1
  5732. | #define HAVE_STRING_H 1
  5733. | #define HAVE_MEMORY_H 1
  5734. | #define HAVE_STRINGS_H 1
  5735. | #define HAVE_INTTYPES_H 1
  5736. | #define HAVE_STDINT_H 1
  5737. | #define HAVE_UNISTD_H 1
  5738. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5739. | #define STARPU_MAXMPIDEVS 0
  5740. | #define HAVE_CXX11 1
  5741. | #define STARPU_HAVE_CXX11 1
  5742. | #define HAVE_DLFCN_H 1
  5743. | #define LT_OBJDIR ".libs/"
  5744. | #define STDC_HEADERS 1
  5745. | #define restrict __restrict
  5746. | #define STARPU_MIC_USE_RMA 1
  5747. | #define STARPU_MAXNUMANODES 2
  5748. | #define STARPU_LINUX_SYS 1
  5749. | #define SIZEOF_VOID_P 8
  5750. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5751. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5752. | #define HAVE_UNISTD_H 1
  5753. | #define STARPU_HAVE_UNISTD_H 1
  5754. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5755. | #define HAVE_LIBPTHREAD 1
  5756. | #define HAVE_SYSCONF 1
  5757. | #define HAVE_GETRLIMIT 1
  5758. | #define HAVE_SCANDIR 1
  5759. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5760. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5761. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5762. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5763. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5764. | #define HAVE_POSIX_MEMALIGN 1
  5765. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5766. | #define HAVE_MEMALIGN 1
  5767. | #define STARPU_HAVE_MEMALIGN 1
  5768. | #define STARPU_USE_DRAND48 1
  5769. | #define STARPU_USE_ERAND48_R 1
  5770. | #define STARPU_HAVE_STRERROR_R 1
  5771. | #define STARPU_HAVE_SETENV 1
  5772. | #define STARPU_HAVE_UNSETENV 1
  5773. | #define STARPU_HAVE_NEARBYINTF 1
  5774. | #define STARPU_HAVE_RINTF 1
  5775. | #define HAVE_MALLOC_H 1
  5776. | #define STARPU_HAVE_MALLOC_H 1
  5777. | #define STARPU_HAVE_SCHED_YIELD 1
  5778. | #define HAVE_AIO_H 1
  5779. | #define HAVE_LIBRT 1
  5780. | #define HAVE_MKOSTEMP 1
  5781. | #define HAVE_MKDTEMP 1
  5782. | #define HAVE_PREAD 1
  5783. | #define HAVE_PWRITE 1
  5784. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5785. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5786. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5787. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5788. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5789. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5790. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5791. | #define STARPU_NMAX_SCHED_CTXS 10
  5792. | #define STARPU_MAXCPUS 64
  5793. | #define STARPU_USE_CPU 1
  5794. | #define STARPU_MAXCUDADEVS 4
  5795. | #define STARPU_MAXOPENCLDEVS 8
  5796. | /* end confdefs.h. */
  5797. | #include <stdio.h>
  5798. | #ifdef HAVE_SYS_TYPES_H
  5799. | # include <sys/types.h>
  5800. | #endif
  5801. | #ifdef HAVE_SYS_STAT_H
  5802. | # include <sys/stat.h>
  5803. | #endif
  5804. | #ifdef STDC_HEADERS
  5805. | # include <stdlib.h>
  5806. | # include <stddef.h>
  5807. | #else
  5808. | # ifdef HAVE_STDLIB_H
  5809. | # include <stdlib.h>
  5810. | # endif
  5811. | #endif
  5812. | #ifdef HAVE_STRING_H
  5813. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5814. | # include <memory.h>
  5815. | # endif
  5816. | # include <string.h>
  5817. | #endif
  5818. | #ifdef HAVE_STRINGS_H
  5819. | # include <strings.h>
  5820. | #endif
  5821. | #ifdef HAVE_INTTYPES_H
  5822. | # include <inttypes.h>
  5823. | #endif
  5824. | #ifdef HAVE_STDINT_H
  5825. | # include <stdint.h>
  5826. | #endif
  5827. | #ifdef HAVE_UNISTD_H
  5828. | # include <unistd.h>
  5829. | #endif
  5830. | #include <CL/cl.h>
  5831. configure:30356: result: no
  5832. configure:30356: checking CL/cl.h presence
  5833. configure:30356: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/cygdrive/c/cuda/include conftest.c
  5834. conftest.c:85:10: fatal error: CL/cl.h: No such file or directory
  5835. #include <CL/cl.h>
  5836. ^~~~~~~~~
  5837. compilation terminated.
  5838. configure:30356: $? = 1
  5839. configure: failed program was:
  5840. | /* confdefs.h */
  5841. | #define PACKAGE_NAME "StarPU"
  5842. | #define PACKAGE_TARNAME "starpu"
  5843. | #define PACKAGE_VERSION "1.3.99"
  5844. | #define PACKAGE_STRING "StarPU 1.3.99"
  5845. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5846. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5847. | #define STARPU_MAJOR_VERSION 1
  5848. | #define STARPU_MINOR_VERSION 3
  5849. | #define STARPU_RELEASE_VERSION 99
  5850. | #define PACKAGE "starpu"
  5851. | #define VERSION "1.3.99"
  5852. | #define STARPU_AUTOFPGA 1
  5853. | #define STARPU_MAXFPGADEVS 12
  5854. | #define STARPU_USE_FPGA 1
  5855. | #define STDC_HEADERS 1
  5856. | #define HAVE_SYS_TYPES_H 1
  5857. | #define HAVE_SYS_STAT_H 1
  5858. | #define HAVE_STDLIB_H 1
  5859. | #define HAVE_STRING_H 1
  5860. | #define HAVE_MEMORY_H 1
  5861. | #define HAVE_STRINGS_H 1
  5862. | #define HAVE_INTTYPES_H 1
  5863. | #define HAVE_STDINT_H 1
  5864. | #define HAVE_UNISTD_H 1
  5865. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5866. | #define STARPU_MAXMPIDEVS 0
  5867. | #define HAVE_CXX11 1
  5868. | #define STARPU_HAVE_CXX11 1
  5869. | #define HAVE_DLFCN_H 1
  5870. | #define LT_OBJDIR ".libs/"
  5871. | #define STDC_HEADERS 1
  5872. | #define restrict __restrict
  5873. | #define STARPU_MIC_USE_RMA 1
  5874. | #define STARPU_MAXNUMANODES 2
  5875. | #define STARPU_LINUX_SYS 1
  5876. | #define SIZEOF_VOID_P 8
  5877. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5878. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5879. | #define HAVE_UNISTD_H 1
  5880. | #define STARPU_HAVE_UNISTD_H 1
  5881. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5882. | #define HAVE_LIBPTHREAD 1
  5883. | #define HAVE_SYSCONF 1
  5884. | #define HAVE_GETRLIMIT 1
  5885. | #define HAVE_SCANDIR 1
  5886. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5887. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5888. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5889. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5890. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5891. | #define HAVE_POSIX_MEMALIGN 1
  5892. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5893. | #define HAVE_MEMALIGN 1
  5894. | #define STARPU_HAVE_MEMALIGN 1
  5895. | #define STARPU_USE_DRAND48 1
  5896. | #define STARPU_USE_ERAND48_R 1
  5897. | #define STARPU_HAVE_STRERROR_R 1
  5898. | #define STARPU_HAVE_SETENV 1
  5899. | #define STARPU_HAVE_UNSETENV 1
  5900. | #define STARPU_HAVE_NEARBYINTF 1
  5901. | #define STARPU_HAVE_RINTF 1
  5902. | #define HAVE_MALLOC_H 1
  5903. | #define STARPU_HAVE_MALLOC_H 1
  5904. | #define STARPU_HAVE_SCHED_YIELD 1
  5905. | #define HAVE_AIO_H 1
  5906. | #define HAVE_LIBRT 1
  5907. | #define HAVE_MKOSTEMP 1
  5908. | #define HAVE_MKDTEMP 1
  5909. | #define HAVE_PREAD 1
  5910. | #define HAVE_PWRITE 1
  5911. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  5912. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  5913. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  5914. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  5915. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  5916. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  5917. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  5918. | #define STARPU_NMAX_SCHED_CTXS 10
  5919. | #define STARPU_MAXCPUS 64
  5920. | #define STARPU_USE_CPU 1
  5921. | #define STARPU_MAXCUDADEVS 4
  5922. | #define STARPU_MAXOPENCLDEVS 8
  5923. | /* end confdefs.h. */
  5924. | #include <CL/cl.h>
  5925. configure:30356: result: no
  5926. configure:30356: checking for CL/cl.h
  5927. configure:30356: result: no
  5928. configure:30337: checking whether OpenCL is available in /opt/cuda no and no
  5929. configure:30343: result:
  5930. configure:30356: checking CL/cl.h usability
  5931. configure:30356: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/opt/cuda/include conftest.c >&5
  5932. conftest.c:118:10: fatal error: CL/cl.h: No such file or directory
  5933. #include <CL/cl.h>
  5934. ^~~~~~~~~
  5935. compilation terminated.
  5936. configure:30356: $? = 1
  5937. configure: failed program was:
  5938. | /* confdefs.h */
  5939. | #define PACKAGE_NAME "StarPU"
  5940. | #define PACKAGE_TARNAME "starpu"
  5941. | #define PACKAGE_VERSION "1.3.99"
  5942. | #define PACKAGE_STRING "StarPU 1.3.99"
  5943. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  5944. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  5945. | #define STARPU_MAJOR_VERSION 1
  5946. | #define STARPU_MINOR_VERSION 3
  5947. | #define STARPU_RELEASE_VERSION 99
  5948. | #define PACKAGE "starpu"
  5949. | #define VERSION "1.3.99"
  5950. | #define STARPU_AUTOFPGA 1
  5951. | #define STARPU_MAXFPGADEVS 12
  5952. | #define STARPU_USE_FPGA 1
  5953. | #define STDC_HEADERS 1
  5954. | #define HAVE_SYS_TYPES_H 1
  5955. | #define HAVE_SYS_STAT_H 1
  5956. | #define HAVE_STDLIB_H 1
  5957. | #define HAVE_STRING_H 1
  5958. | #define HAVE_MEMORY_H 1
  5959. | #define HAVE_STRINGS_H 1
  5960. | #define HAVE_INTTYPES_H 1
  5961. | #define HAVE_STDINT_H 1
  5962. | #define HAVE_UNISTD_H 1
  5963. | #define STARPU_NON_BLOCKING_DRIVERS 1
  5964. | #define STARPU_MAXMPIDEVS 0
  5965. | #define HAVE_CXX11 1
  5966. | #define STARPU_HAVE_CXX11 1
  5967. | #define HAVE_DLFCN_H 1
  5968. | #define LT_OBJDIR ".libs/"
  5969. | #define STDC_HEADERS 1
  5970. | #define restrict __restrict
  5971. | #define STARPU_MIC_USE_RMA 1
  5972. | #define STARPU_MAXNUMANODES 2
  5973. | #define STARPU_LINUX_SYS 1
  5974. | #define SIZEOF_VOID_P 8
  5975. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  5976. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  5977. | #define HAVE_UNISTD_H 1
  5978. | #define STARPU_HAVE_UNISTD_H 1
  5979. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  5980. | #define HAVE_LIBPTHREAD 1
  5981. | #define HAVE_SYSCONF 1
  5982. | #define HAVE_GETRLIMIT 1
  5983. | #define HAVE_SCANDIR 1
  5984. | #define HAVE_PTHREAD_SPIN_LOCK 1
  5985. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  5986. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  5987. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  5988. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  5989. | #define HAVE_POSIX_MEMALIGN 1
  5990. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  5991. | #define HAVE_MEMALIGN 1
  5992. | #define STARPU_HAVE_MEMALIGN 1
  5993. | #define STARPU_USE_DRAND48 1
  5994. | #define STARPU_USE_ERAND48_R 1
  5995. | #define STARPU_HAVE_STRERROR_R 1
  5996. | #define STARPU_HAVE_SETENV 1
  5997. | #define STARPU_HAVE_UNSETENV 1
  5998. | #define STARPU_HAVE_NEARBYINTF 1
  5999. | #define STARPU_HAVE_RINTF 1
  6000. | #define HAVE_MALLOC_H 1
  6001. | #define STARPU_HAVE_MALLOC_H 1
  6002. | #define STARPU_HAVE_SCHED_YIELD 1
  6003. | #define HAVE_AIO_H 1
  6004. | #define HAVE_LIBRT 1
  6005. | #define HAVE_MKOSTEMP 1
  6006. | #define HAVE_MKDTEMP 1
  6007. | #define HAVE_PREAD 1
  6008. | #define HAVE_PWRITE 1
  6009. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6010. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6011. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6012. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6013. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6014. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6015. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6016. | #define STARPU_NMAX_SCHED_CTXS 10
  6017. | #define STARPU_MAXCPUS 64
  6018. | #define STARPU_USE_CPU 1
  6019. | #define STARPU_MAXCUDADEVS 4
  6020. | #define STARPU_MAXOPENCLDEVS 8
  6021. | /* end confdefs.h. */
  6022. | #include <stdio.h>
  6023. | #ifdef HAVE_SYS_TYPES_H
  6024. | # include <sys/types.h>
  6025. | #endif
  6026. | #ifdef HAVE_SYS_STAT_H
  6027. | # include <sys/stat.h>
  6028. | #endif
  6029. | #ifdef STDC_HEADERS
  6030. | # include <stdlib.h>
  6031. | # include <stddef.h>
  6032. | #else
  6033. | # ifdef HAVE_STDLIB_H
  6034. | # include <stdlib.h>
  6035. | # endif
  6036. | #endif
  6037. | #ifdef HAVE_STRING_H
  6038. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  6039. | # include <memory.h>
  6040. | # endif
  6041. | # include <string.h>
  6042. | #endif
  6043. | #ifdef HAVE_STRINGS_H
  6044. | # include <strings.h>
  6045. | #endif
  6046. | #ifdef HAVE_INTTYPES_H
  6047. | # include <inttypes.h>
  6048. | #endif
  6049. | #ifdef HAVE_STDINT_H
  6050. | # include <stdint.h>
  6051. | #endif
  6052. | #ifdef HAVE_UNISTD_H
  6053. | # include <unistd.h>
  6054. | #endif
  6055. | #include <CL/cl.h>
  6056. configure:30356: result: no
  6057. configure:30356: checking CL/cl.h presence
  6058. configure:30356: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/opt/cuda/include conftest.c
  6059. conftest.c:85:10: fatal error: CL/cl.h: No such file or directory
  6060. #include <CL/cl.h>
  6061. ^~~~~~~~~
  6062. compilation terminated.
  6063. configure:30356: $? = 1
  6064. configure: failed program was:
  6065. | /* confdefs.h */
  6066. | #define PACKAGE_NAME "StarPU"
  6067. | #define PACKAGE_TARNAME "starpu"
  6068. | #define PACKAGE_VERSION "1.3.99"
  6069. | #define PACKAGE_STRING "StarPU 1.3.99"
  6070. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6071. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6072. | #define STARPU_MAJOR_VERSION 1
  6073. | #define STARPU_MINOR_VERSION 3
  6074. | #define STARPU_RELEASE_VERSION 99
  6075. | #define PACKAGE "starpu"
  6076. | #define VERSION "1.3.99"
  6077. | #define STARPU_AUTOFPGA 1
  6078. | #define STARPU_MAXFPGADEVS 12
  6079. | #define STARPU_USE_FPGA 1
  6080. | #define STDC_HEADERS 1
  6081. | #define HAVE_SYS_TYPES_H 1
  6082. | #define HAVE_SYS_STAT_H 1
  6083. | #define HAVE_STDLIB_H 1
  6084. | #define HAVE_STRING_H 1
  6085. | #define HAVE_MEMORY_H 1
  6086. | #define HAVE_STRINGS_H 1
  6087. | #define HAVE_INTTYPES_H 1
  6088. | #define HAVE_STDINT_H 1
  6089. | #define HAVE_UNISTD_H 1
  6090. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6091. | #define STARPU_MAXMPIDEVS 0
  6092. | #define HAVE_CXX11 1
  6093. | #define STARPU_HAVE_CXX11 1
  6094. | #define HAVE_DLFCN_H 1
  6095. | #define LT_OBJDIR ".libs/"
  6096. | #define STDC_HEADERS 1
  6097. | #define restrict __restrict
  6098. | #define STARPU_MIC_USE_RMA 1
  6099. | #define STARPU_MAXNUMANODES 2
  6100. | #define STARPU_LINUX_SYS 1
  6101. | #define SIZEOF_VOID_P 8
  6102. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6103. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6104. | #define HAVE_UNISTD_H 1
  6105. | #define STARPU_HAVE_UNISTD_H 1
  6106. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6107. | #define HAVE_LIBPTHREAD 1
  6108. | #define HAVE_SYSCONF 1
  6109. | #define HAVE_GETRLIMIT 1
  6110. | #define HAVE_SCANDIR 1
  6111. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6112. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6113. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6114. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6115. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6116. | #define HAVE_POSIX_MEMALIGN 1
  6117. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6118. | #define HAVE_MEMALIGN 1
  6119. | #define STARPU_HAVE_MEMALIGN 1
  6120. | #define STARPU_USE_DRAND48 1
  6121. | #define STARPU_USE_ERAND48_R 1
  6122. | #define STARPU_HAVE_STRERROR_R 1
  6123. | #define STARPU_HAVE_SETENV 1
  6124. | #define STARPU_HAVE_UNSETENV 1
  6125. | #define STARPU_HAVE_NEARBYINTF 1
  6126. | #define STARPU_HAVE_RINTF 1
  6127. | #define HAVE_MALLOC_H 1
  6128. | #define STARPU_HAVE_MALLOC_H 1
  6129. | #define STARPU_HAVE_SCHED_YIELD 1
  6130. | #define HAVE_AIO_H 1
  6131. | #define HAVE_LIBRT 1
  6132. | #define HAVE_MKOSTEMP 1
  6133. | #define HAVE_MKDTEMP 1
  6134. | #define HAVE_PREAD 1
  6135. | #define HAVE_PWRITE 1
  6136. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6137. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6138. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6139. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6140. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6141. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6142. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6143. | #define STARPU_NMAX_SCHED_CTXS 10
  6144. | #define STARPU_MAXCPUS 64
  6145. | #define STARPU_USE_CPU 1
  6146. | #define STARPU_MAXCUDADEVS 4
  6147. | #define STARPU_MAXOPENCLDEVS 8
  6148. | /* end confdefs.h. */
  6149. | #include <CL/cl.h>
  6150. configure:30356: result: no
  6151. configure:30356: checking for CL/cl.h
  6152. configure:30356: result: no
  6153. configure:30337: checking whether OpenCL is available in /.. no and no
  6154. configure:30343: result:
  6155. configure:30356: checking CL/cl.h usability
  6156. configure:30356: gcc -c -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c >&5
  6157. conftest.c:118:10: fatal error: CL/cl.h: No such file or directory
  6158. #include <CL/cl.h>
  6159. ^~~~~~~~~
  6160. compilation terminated.
  6161. configure:30356: $? = 1
  6162. configure: failed program was:
  6163. | /* confdefs.h */
  6164. | #define PACKAGE_NAME "StarPU"
  6165. | #define PACKAGE_TARNAME "starpu"
  6166. | #define PACKAGE_VERSION "1.3.99"
  6167. | #define PACKAGE_STRING "StarPU 1.3.99"
  6168. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6169. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6170. | #define STARPU_MAJOR_VERSION 1
  6171. | #define STARPU_MINOR_VERSION 3
  6172. | #define STARPU_RELEASE_VERSION 99
  6173. | #define PACKAGE "starpu"
  6174. | #define VERSION "1.3.99"
  6175. | #define STARPU_AUTOFPGA 1
  6176. | #define STARPU_MAXFPGADEVS 12
  6177. | #define STARPU_USE_FPGA 1
  6178. | #define STDC_HEADERS 1
  6179. | #define HAVE_SYS_TYPES_H 1
  6180. | #define HAVE_SYS_STAT_H 1
  6181. | #define HAVE_STDLIB_H 1
  6182. | #define HAVE_STRING_H 1
  6183. | #define HAVE_MEMORY_H 1
  6184. | #define HAVE_STRINGS_H 1
  6185. | #define HAVE_INTTYPES_H 1
  6186. | #define HAVE_STDINT_H 1
  6187. | #define HAVE_UNISTD_H 1
  6188. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6189. | #define STARPU_MAXMPIDEVS 0
  6190. | #define HAVE_CXX11 1
  6191. | #define STARPU_HAVE_CXX11 1
  6192. | #define HAVE_DLFCN_H 1
  6193. | #define LT_OBJDIR ".libs/"
  6194. | #define STDC_HEADERS 1
  6195. | #define restrict __restrict
  6196. | #define STARPU_MIC_USE_RMA 1
  6197. | #define STARPU_MAXNUMANODES 2
  6198. | #define STARPU_LINUX_SYS 1
  6199. | #define SIZEOF_VOID_P 8
  6200. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6201. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6202. | #define HAVE_UNISTD_H 1
  6203. | #define STARPU_HAVE_UNISTD_H 1
  6204. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6205. | #define HAVE_LIBPTHREAD 1
  6206. | #define HAVE_SYSCONF 1
  6207. | #define HAVE_GETRLIMIT 1
  6208. | #define HAVE_SCANDIR 1
  6209. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6210. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6211. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6212. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6213. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6214. | #define HAVE_POSIX_MEMALIGN 1
  6215. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6216. | #define HAVE_MEMALIGN 1
  6217. | #define STARPU_HAVE_MEMALIGN 1
  6218. | #define STARPU_USE_DRAND48 1
  6219. | #define STARPU_USE_ERAND48_R 1
  6220. | #define STARPU_HAVE_STRERROR_R 1
  6221. | #define STARPU_HAVE_SETENV 1
  6222. | #define STARPU_HAVE_UNSETENV 1
  6223. | #define STARPU_HAVE_NEARBYINTF 1
  6224. | #define STARPU_HAVE_RINTF 1
  6225. | #define HAVE_MALLOC_H 1
  6226. | #define STARPU_HAVE_MALLOC_H 1
  6227. | #define STARPU_HAVE_SCHED_YIELD 1
  6228. | #define HAVE_AIO_H 1
  6229. | #define HAVE_LIBRT 1
  6230. | #define HAVE_MKOSTEMP 1
  6231. | #define HAVE_MKDTEMP 1
  6232. | #define HAVE_PREAD 1
  6233. | #define HAVE_PWRITE 1
  6234. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6235. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6236. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6237. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6238. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6239. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6240. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6241. | #define STARPU_NMAX_SCHED_CTXS 10
  6242. | #define STARPU_MAXCPUS 64
  6243. | #define STARPU_USE_CPU 1
  6244. | #define STARPU_MAXCUDADEVS 4
  6245. | #define STARPU_MAXOPENCLDEVS 8
  6246. | /* end confdefs.h. */
  6247. | #include <stdio.h>
  6248. | #ifdef HAVE_SYS_TYPES_H
  6249. | # include <sys/types.h>
  6250. | #endif
  6251. | #ifdef HAVE_SYS_STAT_H
  6252. | # include <sys/stat.h>
  6253. | #endif
  6254. | #ifdef STDC_HEADERS
  6255. | # include <stdlib.h>
  6256. | # include <stddef.h>
  6257. | #else
  6258. | # ifdef HAVE_STDLIB_H
  6259. | # include <stdlib.h>
  6260. | # endif
  6261. | #endif
  6262. | #ifdef HAVE_STRING_H
  6263. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  6264. | # include <memory.h>
  6265. | # endif
  6266. | # include <string.h>
  6267. | #endif
  6268. | #ifdef HAVE_STRINGS_H
  6269. | # include <strings.h>
  6270. | #endif
  6271. | #ifdef HAVE_INTTYPES_H
  6272. | # include <inttypes.h>
  6273. | #endif
  6274. | #ifdef HAVE_STDINT_H
  6275. | # include <stdint.h>
  6276. | #endif
  6277. | #ifdef HAVE_UNISTD_H
  6278. | # include <unistd.h>
  6279. | #endif
  6280. | #include <CL/cl.h>
  6281. configure:30356: result: no
  6282. configure:30356: checking CL/cl.h presence
  6283. configure:30356: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -I/../include conftest.c
  6284. conftest.c:85:10: fatal error: CL/cl.h: No such file or directory
  6285. #include <CL/cl.h>
  6286. ^~~~~~~~~
  6287. compilation terminated.
  6288. configure:30356: $? = 1
  6289. configure: failed program was:
  6290. | /* confdefs.h */
  6291. | #define PACKAGE_NAME "StarPU"
  6292. | #define PACKAGE_TARNAME "starpu"
  6293. | #define PACKAGE_VERSION "1.3.99"
  6294. | #define PACKAGE_STRING "StarPU 1.3.99"
  6295. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6296. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6297. | #define STARPU_MAJOR_VERSION 1
  6298. | #define STARPU_MINOR_VERSION 3
  6299. | #define STARPU_RELEASE_VERSION 99
  6300. | #define PACKAGE "starpu"
  6301. | #define VERSION "1.3.99"
  6302. | #define STARPU_AUTOFPGA 1
  6303. | #define STARPU_MAXFPGADEVS 12
  6304. | #define STARPU_USE_FPGA 1
  6305. | #define STDC_HEADERS 1
  6306. | #define HAVE_SYS_TYPES_H 1
  6307. | #define HAVE_SYS_STAT_H 1
  6308. | #define HAVE_STDLIB_H 1
  6309. | #define HAVE_STRING_H 1
  6310. | #define HAVE_MEMORY_H 1
  6311. | #define HAVE_STRINGS_H 1
  6312. | #define HAVE_INTTYPES_H 1
  6313. | #define HAVE_STDINT_H 1
  6314. | #define HAVE_UNISTD_H 1
  6315. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6316. | #define STARPU_MAXMPIDEVS 0
  6317. | #define HAVE_CXX11 1
  6318. | #define STARPU_HAVE_CXX11 1
  6319. | #define HAVE_DLFCN_H 1
  6320. | #define LT_OBJDIR ".libs/"
  6321. | #define STDC_HEADERS 1
  6322. | #define restrict __restrict
  6323. | #define STARPU_MIC_USE_RMA 1
  6324. | #define STARPU_MAXNUMANODES 2
  6325. | #define STARPU_LINUX_SYS 1
  6326. | #define SIZEOF_VOID_P 8
  6327. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6328. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6329. | #define HAVE_UNISTD_H 1
  6330. | #define STARPU_HAVE_UNISTD_H 1
  6331. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6332. | #define HAVE_LIBPTHREAD 1
  6333. | #define HAVE_SYSCONF 1
  6334. | #define HAVE_GETRLIMIT 1
  6335. | #define HAVE_SCANDIR 1
  6336. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6337. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6338. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6339. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6340. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6341. | #define HAVE_POSIX_MEMALIGN 1
  6342. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6343. | #define HAVE_MEMALIGN 1
  6344. | #define STARPU_HAVE_MEMALIGN 1
  6345. | #define STARPU_USE_DRAND48 1
  6346. | #define STARPU_USE_ERAND48_R 1
  6347. | #define STARPU_HAVE_STRERROR_R 1
  6348. | #define STARPU_HAVE_SETENV 1
  6349. | #define STARPU_HAVE_UNSETENV 1
  6350. | #define STARPU_HAVE_NEARBYINTF 1
  6351. | #define STARPU_HAVE_RINTF 1
  6352. | #define HAVE_MALLOC_H 1
  6353. | #define STARPU_HAVE_MALLOC_H 1
  6354. | #define STARPU_HAVE_SCHED_YIELD 1
  6355. | #define HAVE_AIO_H 1
  6356. | #define HAVE_LIBRT 1
  6357. | #define HAVE_MKOSTEMP 1
  6358. | #define HAVE_MKDTEMP 1
  6359. | #define HAVE_PREAD 1
  6360. | #define HAVE_PWRITE 1
  6361. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6362. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6363. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6364. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6365. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6366. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6367. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6368. | #define STARPU_NMAX_SCHED_CTXS 10
  6369. | #define STARPU_MAXCPUS 64
  6370. | #define STARPU_USE_CPU 1
  6371. | #define STARPU_MAXCUDADEVS 4
  6372. | #define STARPU_MAXOPENCLDEVS 8
  6373. | /* end confdefs.h. */
  6374. | #include <CL/cl.h>
  6375. configure:30356: result: no
  6376. configure:30356: checking for CL/cl.h
  6377. configure:30356: result: no
  6378. configure:30592: checking for clEnqueueMarkerWithWaitList
  6379. configure:30592: gcc -o conftest -g -O2 -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl conftest.c -lrt -lpthread >&5
  6380. /tmp/ccygz337.o: In function `main':
  6381. /home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/conftest.c:119: undefined reference to `clEnqueueMarkerWithWaitList'
  6382. collect2: error: ld returned 1 exit status
  6383. configure:30592: $? = 1
  6384. configure: failed program was:
  6385. | /* confdefs.h */
  6386. | #define PACKAGE_NAME "StarPU"
  6387. | #define PACKAGE_TARNAME "starpu"
  6388. | #define PACKAGE_VERSION "1.3.99"
  6389. | #define PACKAGE_STRING "StarPU 1.3.99"
  6390. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6391. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6392. | #define STARPU_MAJOR_VERSION 1
  6393. | #define STARPU_MINOR_VERSION 3
  6394. | #define STARPU_RELEASE_VERSION 99
  6395. | #define PACKAGE "starpu"
  6396. | #define VERSION "1.3.99"
  6397. | #define STARPU_AUTOFPGA 1
  6398. | #define STARPU_MAXFPGADEVS 12
  6399. | #define STARPU_USE_FPGA 1
  6400. | #define STDC_HEADERS 1
  6401. | #define HAVE_SYS_TYPES_H 1
  6402. | #define HAVE_SYS_STAT_H 1
  6403. | #define HAVE_STDLIB_H 1
  6404. | #define HAVE_STRING_H 1
  6405. | #define HAVE_MEMORY_H 1
  6406. | #define HAVE_STRINGS_H 1
  6407. | #define HAVE_INTTYPES_H 1
  6408. | #define HAVE_STDINT_H 1
  6409. | #define HAVE_UNISTD_H 1
  6410. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6411. | #define STARPU_MAXMPIDEVS 0
  6412. | #define HAVE_CXX11 1
  6413. | #define STARPU_HAVE_CXX11 1
  6414. | #define HAVE_DLFCN_H 1
  6415. | #define LT_OBJDIR ".libs/"
  6416. | #define STDC_HEADERS 1
  6417. | #define restrict __restrict
  6418. | #define STARPU_MIC_USE_RMA 1
  6419. | #define STARPU_MAXNUMANODES 2
  6420. | #define STARPU_LINUX_SYS 1
  6421. | #define SIZEOF_VOID_P 8
  6422. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6423. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6424. | #define HAVE_UNISTD_H 1
  6425. | #define STARPU_HAVE_UNISTD_H 1
  6426. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6427. | #define HAVE_LIBPTHREAD 1
  6428. | #define HAVE_SYSCONF 1
  6429. | #define HAVE_GETRLIMIT 1
  6430. | #define HAVE_SCANDIR 1
  6431. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6432. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6433. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6434. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6435. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6436. | #define HAVE_POSIX_MEMALIGN 1
  6437. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6438. | #define HAVE_MEMALIGN 1
  6439. | #define STARPU_HAVE_MEMALIGN 1
  6440. | #define STARPU_USE_DRAND48 1
  6441. | #define STARPU_USE_ERAND48_R 1
  6442. | #define STARPU_HAVE_STRERROR_R 1
  6443. | #define STARPU_HAVE_SETENV 1
  6444. | #define STARPU_HAVE_UNSETENV 1
  6445. | #define STARPU_HAVE_NEARBYINTF 1
  6446. | #define STARPU_HAVE_RINTF 1
  6447. | #define HAVE_MALLOC_H 1
  6448. | #define STARPU_HAVE_MALLOC_H 1
  6449. | #define STARPU_HAVE_SCHED_YIELD 1
  6450. | #define HAVE_AIO_H 1
  6451. | #define HAVE_LIBRT 1
  6452. | #define HAVE_MKOSTEMP 1
  6453. | #define HAVE_MKDTEMP 1
  6454. | #define HAVE_PREAD 1
  6455. | #define HAVE_PWRITE 1
  6456. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6457. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6458. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6459. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6460. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6461. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6462. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6463. | #define STARPU_NMAX_SCHED_CTXS 10
  6464. | #define STARPU_MAXCPUS 64
  6465. | #define STARPU_USE_CPU 1
  6466. | #define STARPU_MAXCUDADEVS 4
  6467. | #define STARPU_MAXOPENCLDEVS 8
  6468. | /* end confdefs.h. */
  6469. | /* Define clEnqueueMarkerWithWaitList to an innocuous variant, in case <limits.h> declares clEnqueueMarkerWithWaitList.
  6470. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  6471. | #define clEnqueueMarkerWithWaitList innocuous_clEnqueueMarkerWithWaitList
  6472. |
  6473. | /* System header to define __stub macros and hopefully few prototypes,
  6474. | which can conflict with char clEnqueueMarkerWithWaitList (); below.
  6475. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  6476. | <limits.h> exists even on freestanding compilers. */
  6477. |
  6478. | #ifdef __STDC__
  6479. | # include <limits.h>
  6480. | #else
  6481. | # include <assert.h>
  6482. | #endif
  6483. |
  6484. | #undef clEnqueueMarkerWithWaitList
  6485. |
  6486. | /* Override any GCC internal prototype to avoid an error.
  6487. | Use char because int might match the return type of a GCC
  6488. | builtin and then its argument prototype would still apply. */
  6489. | #ifdef __cplusplus
  6490. | extern "C"
  6491. | #endif
  6492. | char clEnqueueMarkerWithWaitList ();
  6493. | /* The GNU C library defines this for functions which it implements
  6494. | to always fail with ENOSYS. Some functions are actually named
  6495. | something starting with __ and the normal name is an alias. */
  6496. | #if defined __stub_clEnqueueMarkerWithWaitList || defined __stub___clEnqueueMarkerWithWaitList
  6497. | choke me
  6498. | #endif
  6499. |
  6500. | int
  6501. | main ()
  6502. | {
  6503. | return clEnqueueMarkerWithWaitList ();
  6504. | ;
  6505. | return 0;
  6506. | }
  6507. configure:30592: result: no
  6508. configure:30604: checking whether OpenCL should be used
  6509. configure:30606: result: no
  6510. configure:30634: checking whether asynchronous copy should be disabled
  6511. configure:30647: result: no
  6512. configure:30655: checking whether asynchronous CUDA copy should be disabled
  6513. configure:30668: result: no
  6514. configure:30676: checking whether asynchronous OpenCL copy should be disabled
  6515. configure:30689: result: no
  6516. configure:30697: checking whether asynchronous MIC copy should be disabled
  6517. configure:30710: result: no
  6518. configure:30718: checking whether asynchronous MPI Master Slave copy should be disabled
  6519. configure:30731: result: no
  6520. configure:30770: checking maximum number of MIC devices
  6521. configure:30785: result: 0
  6522. configure:30794: checking maximum number of MIC threads
  6523. configure:30803: result:
  6524. configure:31314: checking whether debug mode should be enabled
  6525. configure:31323: result: no
  6526. configure:31367: checking whether full gdb information should be enabled
  6527. configure:31376: result: yes
  6528. configure:31397: checking whether extra checks should be performed
  6529. configure:31406: result: no
  6530. configure:31423: checking whether debug messages should be displayed
  6531. configure:31432: result: no
  6532. configure:31448: checking whether coverage testing should be enabled
  6533. configure:31457: result: no
  6534. configure:31478: checking whether coverity mode should be enabled
  6535. configure:31487: result: no
  6536. configure:31499: checking whether FxT traces should be generated
  6537. configure:31530: result: no
  6538. configure:31902: checking whether additional locking systems FxT traces should be enabled
  6539. configure:31911: result: no
  6540. configure:31919: checking whether performance debugging should be enabled
  6541. configure:31928: result: no
  6542. configure:31940: checking whether performance model debugging should be enabled
  6543. configure:31949: result: no
  6544. configure:31957: checking whether memory stats should be displayed
  6545. configure:31966: result: no
  6546. configure:31984: checking glpk.h usability
  6547. configure:31984: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  6548. conftest.c:120:10: fatal error: glpk.h: No such file or directory
  6549. #include <glpk.h>
  6550. ^~~~~~~~
  6551. compilation terminated.
  6552. configure:31984: $? = 1
  6553. configure: failed program was:
  6554. | /* confdefs.h */
  6555. | #define PACKAGE_NAME "StarPU"
  6556. | #define PACKAGE_TARNAME "starpu"
  6557. | #define PACKAGE_VERSION "1.3.99"
  6558. | #define PACKAGE_STRING "StarPU 1.3.99"
  6559. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6560. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6561. | #define STARPU_MAJOR_VERSION 1
  6562. | #define STARPU_MINOR_VERSION 3
  6563. | #define STARPU_RELEASE_VERSION 99
  6564. | #define PACKAGE "starpu"
  6565. | #define VERSION "1.3.99"
  6566. | #define STARPU_AUTOFPGA 1
  6567. | #define STARPU_MAXFPGADEVS 12
  6568. | #define STARPU_USE_FPGA 1
  6569. | #define STDC_HEADERS 1
  6570. | #define HAVE_SYS_TYPES_H 1
  6571. | #define HAVE_SYS_STAT_H 1
  6572. | #define HAVE_STDLIB_H 1
  6573. | #define HAVE_STRING_H 1
  6574. | #define HAVE_MEMORY_H 1
  6575. | #define HAVE_STRINGS_H 1
  6576. | #define HAVE_INTTYPES_H 1
  6577. | #define HAVE_STDINT_H 1
  6578. | #define HAVE_UNISTD_H 1
  6579. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6580. | #define STARPU_MAXMPIDEVS 0
  6581. | #define HAVE_CXX11 1
  6582. | #define STARPU_HAVE_CXX11 1
  6583. | #define HAVE_DLFCN_H 1
  6584. | #define LT_OBJDIR ".libs/"
  6585. | #define STDC_HEADERS 1
  6586. | #define restrict __restrict
  6587. | #define STARPU_MIC_USE_RMA 1
  6588. | #define STARPU_MAXNUMANODES 2
  6589. | #define STARPU_LINUX_SYS 1
  6590. | #define SIZEOF_VOID_P 8
  6591. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6592. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6593. | #define HAVE_UNISTD_H 1
  6594. | #define STARPU_HAVE_UNISTD_H 1
  6595. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6596. | #define HAVE_LIBPTHREAD 1
  6597. | #define HAVE_SYSCONF 1
  6598. | #define HAVE_GETRLIMIT 1
  6599. | #define HAVE_SCANDIR 1
  6600. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6601. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6602. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6603. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6604. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6605. | #define HAVE_POSIX_MEMALIGN 1
  6606. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6607. | #define HAVE_MEMALIGN 1
  6608. | #define STARPU_HAVE_MEMALIGN 1
  6609. | #define STARPU_USE_DRAND48 1
  6610. | #define STARPU_USE_ERAND48_R 1
  6611. | #define STARPU_HAVE_STRERROR_R 1
  6612. | #define STARPU_HAVE_SETENV 1
  6613. | #define STARPU_HAVE_UNSETENV 1
  6614. | #define STARPU_HAVE_NEARBYINTF 1
  6615. | #define STARPU_HAVE_RINTF 1
  6616. | #define HAVE_MALLOC_H 1
  6617. | #define STARPU_HAVE_MALLOC_H 1
  6618. | #define STARPU_HAVE_SCHED_YIELD 1
  6619. | #define HAVE_AIO_H 1
  6620. | #define HAVE_LIBRT 1
  6621. | #define HAVE_MKOSTEMP 1
  6622. | #define HAVE_MKDTEMP 1
  6623. | #define HAVE_PREAD 1
  6624. | #define HAVE_PWRITE 1
  6625. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6626. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6627. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6628. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6629. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6630. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6631. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6632. | #define STARPU_NMAX_SCHED_CTXS 10
  6633. | #define STARPU_MAXCPUS 64
  6634. | #define STARPU_USE_CPU 1
  6635. | #define STARPU_MAXCUDADEVS 4
  6636. | #define STARPU_MAXOPENCLDEVS 8
  6637. | #define STARPU_MAXMICDEVS 0
  6638. | #define STARPU_MAXMICCORES 120
  6639. | /* end confdefs.h. */
  6640. | #include <stdio.h>
  6641. | #ifdef HAVE_SYS_TYPES_H
  6642. | # include <sys/types.h>
  6643. | #endif
  6644. | #ifdef HAVE_SYS_STAT_H
  6645. | # include <sys/stat.h>
  6646. | #endif
  6647. | #ifdef STDC_HEADERS
  6648. | # include <stdlib.h>
  6649. | # include <stddef.h>
  6650. | #else
  6651. | # ifdef HAVE_STDLIB_H
  6652. | # include <stdlib.h>
  6653. | # endif
  6654. | #endif
  6655. | #ifdef HAVE_STRING_H
  6656. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  6657. | # include <memory.h>
  6658. | # endif
  6659. | # include <string.h>
  6660. | #endif
  6661. | #ifdef HAVE_STRINGS_H
  6662. | # include <strings.h>
  6663. | #endif
  6664. | #ifdef HAVE_INTTYPES_H
  6665. | # include <inttypes.h>
  6666. | #endif
  6667. | #ifdef HAVE_STDINT_H
  6668. | # include <stdint.h>
  6669. | #endif
  6670. | #ifdef HAVE_UNISTD_H
  6671. | # include <unistd.h>
  6672. | #endif
  6673. | #include <glpk.h>
  6674. configure:31984: result: no
  6675. configure:31984: checking glpk.h presence
  6676. configure:31984: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c
  6677. conftest.c:87:10: fatal error: glpk.h: No such file or directory
  6678. #include <glpk.h>
  6679. ^~~~~~~~
  6680. compilation terminated.
  6681. configure:31984: $? = 1
  6682. configure: failed program was:
  6683. | /* confdefs.h */
  6684. | #define PACKAGE_NAME "StarPU"
  6685. | #define PACKAGE_TARNAME "starpu"
  6686. | #define PACKAGE_VERSION "1.3.99"
  6687. | #define PACKAGE_STRING "StarPU 1.3.99"
  6688. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6689. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6690. | #define STARPU_MAJOR_VERSION 1
  6691. | #define STARPU_MINOR_VERSION 3
  6692. | #define STARPU_RELEASE_VERSION 99
  6693. | #define PACKAGE "starpu"
  6694. | #define VERSION "1.3.99"
  6695. | #define STARPU_AUTOFPGA 1
  6696. | #define STARPU_MAXFPGADEVS 12
  6697. | #define STARPU_USE_FPGA 1
  6698. | #define STDC_HEADERS 1
  6699. | #define HAVE_SYS_TYPES_H 1
  6700. | #define HAVE_SYS_STAT_H 1
  6701. | #define HAVE_STDLIB_H 1
  6702. | #define HAVE_STRING_H 1
  6703. | #define HAVE_MEMORY_H 1
  6704. | #define HAVE_STRINGS_H 1
  6705. | #define HAVE_INTTYPES_H 1
  6706. | #define HAVE_STDINT_H 1
  6707. | #define HAVE_UNISTD_H 1
  6708. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6709. | #define STARPU_MAXMPIDEVS 0
  6710. | #define HAVE_CXX11 1
  6711. | #define STARPU_HAVE_CXX11 1
  6712. | #define HAVE_DLFCN_H 1
  6713. | #define LT_OBJDIR ".libs/"
  6714. | #define STDC_HEADERS 1
  6715. | #define restrict __restrict
  6716. | #define STARPU_MIC_USE_RMA 1
  6717. | #define STARPU_MAXNUMANODES 2
  6718. | #define STARPU_LINUX_SYS 1
  6719. | #define SIZEOF_VOID_P 8
  6720. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6721. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6722. | #define HAVE_UNISTD_H 1
  6723. | #define STARPU_HAVE_UNISTD_H 1
  6724. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6725. | #define HAVE_LIBPTHREAD 1
  6726. | #define HAVE_SYSCONF 1
  6727. | #define HAVE_GETRLIMIT 1
  6728. | #define HAVE_SCANDIR 1
  6729. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6730. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6731. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6732. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6733. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6734. | #define HAVE_POSIX_MEMALIGN 1
  6735. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6736. | #define HAVE_MEMALIGN 1
  6737. | #define STARPU_HAVE_MEMALIGN 1
  6738. | #define STARPU_USE_DRAND48 1
  6739. | #define STARPU_USE_ERAND48_R 1
  6740. | #define STARPU_HAVE_STRERROR_R 1
  6741. | #define STARPU_HAVE_SETENV 1
  6742. | #define STARPU_HAVE_UNSETENV 1
  6743. | #define STARPU_HAVE_NEARBYINTF 1
  6744. | #define STARPU_HAVE_RINTF 1
  6745. | #define HAVE_MALLOC_H 1
  6746. | #define STARPU_HAVE_MALLOC_H 1
  6747. | #define STARPU_HAVE_SCHED_YIELD 1
  6748. | #define HAVE_AIO_H 1
  6749. | #define HAVE_LIBRT 1
  6750. | #define HAVE_MKOSTEMP 1
  6751. | #define HAVE_MKDTEMP 1
  6752. | #define HAVE_PREAD 1
  6753. | #define HAVE_PWRITE 1
  6754. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6755. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6756. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6757. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6758. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6759. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6760. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6761. | #define STARPU_NMAX_SCHED_CTXS 10
  6762. | #define STARPU_MAXCPUS 64
  6763. | #define STARPU_USE_CPU 1
  6764. | #define STARPU_MAXCUDADEVS 4
  6765. | #define STARPU_MAXOPENCLDEVS 8
  6766. | #define STARPU_MAXMICDEVS 0
  6767. | #define STARPU_MAXMICCORES 120
  6768. | /* end confdefs.h. */
  6769. | #include <glpk.h>
  6770. configure:31984: result: no
  6771. configure:31984: checking for glpk.h
  6772. configure:31984: result: no
  6773. configure:31998: checking for main in -lglpk
  6774. configure:32017: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lglpk >&5
  6775. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lglpk
  6776. collect2: error: ld returned 1 exit status
  6777. configure:32017: $? = 1
  6778. configure: failed program was:
  6779. | /* confdefs.h */
  6780. | #define PACKAGE_NAME "StarPU"
  6781. | #define PACKAGE_TARNAME "starpu"
  6782. | #define PACKAGE_VERSION "1.3.99"
  6783. | #define PACKAGE_STRING "StarPU 1.3.99"
  6784. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6785. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6786. | #define STARPU_MAJOR_VERSION 1
  6787. | #define STARPU_MINOR_VERSION 3
  6788. | #define STARPU_RELEASE_VERSION 99
  6789. | #define PACKAGE "starpu"
  6790. | #define VERSION "1.3.99"
  6791. | #define STARPU_AUTOFPGA 1
  6792. | #define STARPU_MAXFPGADEVS 12
  6793. | #define STARPU_USE_FPGA 1
  6794. | #define STDC_HEADERS 1
  6795. | #define HAVE_SYS_TYPES_H 1
  6796. | #define HAVE_SYS_STAT_H 1
  6797. | #define HAVE_STDLIB_H 1
  6798. | #define HAVE_STRING_H 1
  6799. | #define HAVE_MEMORY_H 1
  6800. | #define HAVE_STRINGS_H 1
  6801. | #define HAVE_INTTYPES_H 1
  6802. | #define HAVE_STDINT_H 1
  6803. | #define HAVE_UNISTD_H 1
  6804. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6805. | #define STARPU_MAXMPIDEVS 0
  6806. | #define HAVE_CXX11 1
  6807. | #define STARPU_HAVE_CXX11 1
  6808. | #define HAVE_DLFCN_H 1
  6809. | #define LT_OBJDIR ".libs/"
  6810. | #define STDC_HEADERS 1
  6811. | #define restrict __restrict
  6812. | #define STARPU_MIC_USE_RMA 1
  6813. | #define STARPU_MAXNUMANODES 2
  6814. | #define STARPU_LINUX_SYS 1
  6815. | #define SIZEOF_VOID_P 8
  6816. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6817. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6818. | #define HAVE_UNISTD_H 1
  6819. | #define STARPU_HAVE_UNISTD_H 1
  6820. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6821. | #define HAVE_LIBPTHREAD 1
  6822. | #define HAVE_SYSCONF 1
  6823. | #define HAVE_GETRLIMIT 1
  6824. | #define HAVE_SCANDIR 1
  6825. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6826. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6827. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6828. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6829. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6830. | #define HAVE_POSIX_MEMALIGN 1
  6831. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6832. | #define HAVE_MEMALIGN 1
  6833. | #define STARPU_HAVE_MEMALIGN 1
  6834. | #define STARPU_USE_DRAND48 1
  6835. | #define STARPU_USE_ERAND48_R 1
  6836. | #define STARPU_HAVE_STRERROR_R 1
  6837. | #define STARPU_HAVE_SETENV 1
  6838. | #define STARPU_HAVE_UNSETENV 1
  6839. | #define STARPU_HAVE_NEARBYINTF 1
  6840. | #define STARPU_HAVE_RINTF 1
  6841. | #define HAVE_MALLOC_H 1
  6842. | #define STARPU_HAVE_MALLOC_H 1
  6843. | #define STARPU_HAVE_SCHED_YIELD 1
  6844. | #define HAVE_AIO_H 1
  6845. | #define HAVE_LIBRT 1
  6846. | #define HAVE_MKOSTEMP 1
  6847. | #define HAVE_MKDTEMP 1
  6848. | #define HAVE_PREAD 1
  6849. | #define HAVE_PWRITE 1
  6850. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6851. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6852. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6853. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6854. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6855. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6856. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6857. | #define STARPU_NMAX_SCHED_CTXS 10
  6858. | #define STARPU_MAXCPUS 64
  6859. | #define STARPU_USE_CPU 1
  6860. | #define STARPU_MAXCUDADEVS 4
  6861. | #define STARPU_MAXOPENCLDEVS 8
  6862. | #define STARPU_MAXMICDEVS 0
  6863. | #define STARPU_MAXMICCORES 120
  6864. | /* end confdefs.h. */
  6865. |
  6866. |
  6867. | int
  6868. | main ()
  6869. | {
  6870. | return main ();
  6871. | ;
  6872. | return 0;
  6873. | }
  6874. configure:32026: result: no
  6875. configure:32074: checking Ayudame.h usability
  6876. configure:32074: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  6877. conftest.c:120:10: fatal error: Ayudame.h: No such file or directory
  6878. #include <Ayudame.h>
  6879. ^~~~~~~~~~~
  6880. compilation terminated.
  6881. configure:32074: $? = 1
  6882. configure: failed program was:
  6883. | /* confdefs.h */
  6884. | #define PACKAGE_NAME "StarPU"
  6885. | #define PACKAGE_TARNAME "starpu"
  6886. | #define PACKAGE_VERSION "1.3.99"
  6887. | #define PACKAGE_STRING "StarPU 1.3.99"
  6888. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  6889. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  6890. | #define STARPU_MAJOR_VERSION 1
  6891. | #define STARPU_MINOR_VERSION 3
  6892. | #define STARPU_RELEASE_VERSION 99
  6893. | #define PACKAGE "starpu"
  6894. | #define VERSION "1.3.99"
  6895. | #define STARPU_AUTOFPGA 1
  6896. | #define STARPU_MAXFPGADEVS 12
  6897. | #define STARPU_USE_FPGA 1
  6898. | #define STDC_HEADERS 1
  6899. | #define HAVE_SYS_TYPES_H 1
  6900. | #define HAVE_SYS_STAT_H 1
  6901. | #define HAVE_STDLIB_H 1
  6902. | #define HAVE_STRING_H 1
  6903. | #define HAVE_MEMORY_H 1
  6904. | #define HAVE_STRINGS_H 1
  6905. | #define HAVE_INTTYPES_H 1
  6906. | #define HAVE_STDINT_H 1
  6907. | #define HAVE_UNISTD_H 1
  6908. | #define STARPU_NON_BLOCKING_DRIVERS 1
  6909. | #define STARPU_MAXMPIDEVS 0
  6910. | #define HAVE_CXX11 1
  6911. | #define STARPU_HAVE_CXX11 1
  6912. | #define HAVE_DLFCN_H 1
  6913. | #define LT_OBJDIR ".libs/"
  6914. | #define STDC_HEADERS 1
  6915. | #define restrict __restrict
  6916. | #define STARPU_MIC_USE_RMA 1
  6917. | #define STARPU_MAXNUMANODES 2
  6918. | #define STARPU_LINUX_SYS 1
  6919. | #define SIZEOF_VOID_P 8
  6920. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  6921. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  6922. | #define HAVE_UNISTD_H 1
  6923. | #define STARPU_HAVE_UNISTD_H 1
  6924. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  6925. | #define HAVE_LIBPTHREAD 1
  6926. | #define HAVE_SYSCONF 1
  6927. | #define HAVE_GETRLIMIT 1
  6928. | #define HAVE_SCANDIR 1
  6929. | #define HAVE_PTHREAD_SPIN_LOCK 1
  6930. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  6931. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  6932. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  6933. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  6934. | #define HAVE_POSIX_MEMALIGN 1
  6935. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  6936. | #define HAVE_MEMALIGN 1
  6937. | #define STARPU_HAVE_MEMALIGN 1
  6938. | #define STARPU_USE_DRAND48 1
  6939. | #define STARPU_USE_ERAND48_R 1
  6940. | #define STARPU_HAVE_STRERROR_R 1
  6941. | #define STARPU_HAVE_SETENV 1
  6942. | #define STARPU_HAVE_UNSETENV 1
  6943. | #define STARPU_HAVE_NEARBYINTF 1
  6944. | #define STARPU_HAVE_RINTF 1
  6945. | #define HAVE_MALLOC_H 1
  6946. | #define STARPU_HAVE_MALLOC_H 1
  6947. | #define STARPU_HAVE_SCHED_YIELD 1
  6948. | #define HAVE_AIO_H 1
  6949. | #define HAVE_LIBRT 1
  6950. | #define HAVE_MKOSTEMP 1
  6951. | #define HAVE_MKDTEMP 1
  6952. | #define HAVE_PREAD 1
  6953. | #define HAVE_PWRITE 1
  6954. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  6955. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  6956. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  6957. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  6958. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  6959. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  6960. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  6961. | #define STARPU_NMAX_SCHED_CTXS 10
  6962. | #define STARPU_MAXCPUS 64
  6963. | #define STARPU_USE_CPU 1
  6964. | #define STARPU_MAXCUDADEVS 4
  6965. | #define STARPU_MAXOPENCLDEVS 8
  6966. | #define STARPU_MAXMICDEVS 0
  6967. | #define STARPU_MAXMICCORES 120
  6968. | /* end confdefs.h. */
  6969. | #include <stdio.h>
  6970. | #ifdef HAVE_SYS_TYPES_H
  6971. | # include <sys/types.h>
  6972. | #endif
  6973. | #ifdef HAVE_SYS_STAT_H
  6974. | # include <sys/stat.h>
  6975. | #endif
  6976. | #ifdef STDC_HEADERS
  6977. | # include <stdlib.h>
  6978. | # include <stddef.h>
  6979. | #else
  6980. | # ifdef HAVE_STDLIB_H
  6981. | # include <stdlib.h>
  6982. | # endif
  6983. | #endif
  6984. | #ifdef HAVE_STRING_H
  6985. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  6986. | # include <memory.h>
  6987. | # endif
  6988. | # include <string.h>
  6989. | #endif
  6990. | #ifdef HAVE_STRINGS_H
  6991. | # include <strings.h>
  6992. | #endif
  6993. | #ifdef HAVE_INTTYPES_H
  6994. | # include <inttypes.h>
  6995. | #endif
  6996. | #ifdef HAVE_STDINT_H
  6997. | # include <stdint.h>
  6998. | #endif
  6999. | #ifdef HAVE_UNISTD_H
  7000. | # include <unistd.h>
  7001. | #endif
  7002. | #include <Ayudame.h>
  7003. configure:32074: result: no
  7004. configure:32074: checking Ayudame.h presence
  7005. configure:32074: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c
  7006. conftest.c:87:10: fatal error: Ayudame.h: No such file or directory
  7007. #include <Ayudame.h>
  7008. ^~~~~~~~~~~
  7009. compilation terminated.
  7010. configure:32074: $? = 1
  7011. configure: failed program was:
  7012. | /* confdefs.h */
  7013. | #define PACKAGE_NAME "StarPU"
  7014. | #define PACKAGE_TARNAME "starpu"
  7015. | #define PACKAGE_VERSION "1.3.99"
  7016. | #define PACKAGE_STRING "StarPU 1.3.99"
  7017. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7018. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7019. | #define STARPU_MAJOR_VERSION 1
  7020. | #define STARPU_MINOR_VERSION 3
  7021. | #define STARPU_RELEASE_VERSION 99
  7022. | #define PACKAGE "starpu"
  7023. | #define VERSION "1.3.99"
  7024. | #define STARPU_AUTOFPGA 1
  7025. | #define STARPU_MAXFPGADEVS 12
  7026. | #define STARPU_USE_FPGA 1
  7027. | #define STDC_HEADERS 1
  7028. | #define HAVE_SYS_TYPES_H 1
  7029. | #define HAVE_SYS_STAT_H 1
  7030. | #define HAVE_STDLIB_H 1
  7031. | #define HAVE_STRING_H 1
  7032. | #define HAVE_MEMORY_H 1
  7033. | #define HAVE_STRINGS_H 1
  7034. | #define HAVE_INTTYPES_H 1
  7035. | #define HAVE_STDINT_H 1
  7036. | #define HAVE_UNISTD_H 1
  7037. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7038. | #define STARPU_MAXMPIDEVS 0
  7039. | #define HAVE_CXX11 1
  7040. | #define STARPU_HAVE_CXX11 1
  7041. | #define HAVE_DLFCN_H 1
  7042. | #define LT_OBJDIR ".libs/"
  7043. | #define STDC_HEADERS 1
  7044. | #define restrict __restrict
  7045. | #define STARPU_MIC_USE_RMA 1
  7046. | #define STARPU_MAXNUMANODES 2
  7047. | #define STARPU_LINUX_SYS 1
  7048. | #define SIZEOF_VOID_P 8
  7049. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7050. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7051. | #define HAVE_UNISTD_H 1
  7052. | #define STARPU_HAVE_UNISTD_H 1
  7053. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7054. | #define HAVE_LIBPTHREAD 1
  7055. | #define HAVE_SYSCONF 1
  7056. | #define HAVE_GETRLIMIT 1
  7057. | #define HAVE_SCANDIR 1
  7058. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7059. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7060. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7061. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7062. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7063. | #define HAVE_POSIX_MEMALIGN 1
  7064. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7065. | #define HAVE_MEMALIGN 1
  7066. | #define STARPU_HAVE_MEMALIGN 1
  7067. | #define STARPU_USE_DRAND48 1
  7068. | #define STARPU_USE_ERAND48_R 1
  7069. | #define STARPU_HAVE_STRERROR_R 1
  7070. | #define STARPU_HAVE_SETENV 1
  7071. | #define STARPU_HAVE_UNSETENV 1
  7072. | #define STARPU_HAVE_NEARBYINTF 1
  7073. | #define STARPU_HAVE_RINTF 1
  7074. | #define HAVE_MALLOC_H 1
  7075. | #define STARPU_HAVE_MALLOC_H 1
  7076. | #define STARPU_HAVE_SCHED_YIELD 1
  7077. | #define HAVE_AIO_H 1
  7078. | #define HAVE_LIBRT 1
  7079. | #define HAVE_MKOSTEMP 1
  7080. | #define HAVE_MKDTEMP 1
  7081. | #define HAVE_PREAD 1
  7082. | #define HAVE_PWRITE 1
  7083. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7084. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7085. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7086. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7087. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7088. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7089. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7090. | #define STARPU_NMAX_SCHED_CTXS 10
  7091. | #define STARPU_MAXCPUS 64
  7092. | #define STARPU_USE_CPU 1
  7093. | #define STARPU_MAXCUDADEVS 4
  7094. | #define STARPU_MAXOPENCLDEVS 8
  7095. | #define STARPU_MAXMICDEVS 0
  7096. | #define STARPU_MAXMICCORES 120
  7097. | /* end confdefs.h. */
  7098. | #include <Ayudame.h>
  7099. configure:32074: result: no
  7100. configure:32074: checking for Ayudame.h
  7101. configure:32074: result: no
  7102. configure:32094: checking ayudame.h usability
  7103. configure:32094: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  7104. conftest.c:120:10: fatal error: ayudame.h: No such file or directory
  7105. #include <ayudame.h>
  7106. ^~~~~~~~~~~
  7107. compilation terminated.
  7108. configure:32094: $? = 1
  7109. configure: failed program was:
  7110. | /* confdefs.h */
  7111. | #define PACKAGE_NAME "StarPU"
  7112. | #define PACKAGE_TARNAME "starpu"
  7113. | #define PACKAGE_VERSION "1.3.99"
  7114. | #define PACKAGE_STRING "StarPU 1.3.99"
  7115. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7116. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7117. | #define STARPU_MAJOR_VERSION 1
  7118. | #define STARPU_MINOR_VERSION 3
  7119. | #define STARPU_RELEASE_VERSION 99
  7120. | #define PACKAGE "starpu"
  7121. | #define VERSION "1.3.99"
  7122. | #define STARPU_AUTOFPGA 1
  7123. | #define STARPU_MAXFPGADEVS 12
  7124. | #define STARPU_USE_FPGA 1
  7125. | #define STDC_HEADERS 1
  7126. | #define HAVE_SYS_TYPES_H 1
  7127. | #define HAVE_SYS_STAT_H 1
  7128. | #define HAVE_STDLIB_H 1
  7129. | #define HAVE_STRING_H 1
  7130. | #define HAVE_MEMORY_H 1
  7131. | #define HAVE_STRINGS_H 1
  7132. | #define HAVE_INTTYPES_H 1
  7133. | #define HAVE_STDINT_H 1
  7134. | #define HAVE_UNISTD_H 1
  7135. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7136. | #define STARPU_MAXMPIDEVS 0
  7137. | #define HAVE_CXX11 1
  7138. | #define STARPU_HAVE_CXX11 1
  7139. | #define HAVE_DLFCN_H 1
  7140. | #define LT_OBJDIR ".libs/"
  7141. | #define STDC_HEADERS 1
  7142. | #define restrict __restrict
  7143. | #define STARPU_MIC_USE_RMA 1
  7144. | #define STARPU_MAXNUMANODES 2
  7145. | #define STARPU_LINUX_SYS 1
  7146. | #define SIZEOF_VOID_P 8
  7147. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7148. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7149. | #define HAVE_UNISTD_H 1
  7150. | #define STARPU_HAVE_UNISTD_H 1
  7151. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7152. | #define HAVE_LIBPTHREAD 1
  7153. | #define HAVE_SYSCONF 1
  7154. | #define HAVE_GETRLIMIT 1
  7155. | #define HAVE_SCANDIR 1
  7156. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7157. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7158. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7159. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7160. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7161. | #define HAVE_POSIX_MEMALIGN 1
  7162. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7163. | #define HAVE_MEMALIGN 1
  7164. | #define STARPU_HAVE_MEMALIGN 1
  7165. | #define STARPU_USE_DRAND48 1
  7166. | #define STARPU_USE_ERAND48_R 1
  7167. | #define STARPU_HAVE_STRERROR_R 1
  7168. | #define STARPU_HAVE_SETENV 1
  7169. | #define STARPU_HAVE_UNSETENV 1
  7170. | #define STARPU_HAVE_NEARBYINTF 1
  7171. | #define STARPU_HAVE_RINTF 1
  7172. | #define HAVE_MALLOC_H 1
  7173. | #define STARPU_HAVE_MALLOC_H 1
  7174. | #define STARPU_HAVE_SCHED_YIELD 1
  7175. | #define HAVE_AIO_H 1
  7176. | #define HAVE_LIBRT 1
  7177. | #define HAVE_MKOSTEMP 1
  7178. | #define HAVE_MKDTEMP 1
  7179. | #define HAVE_PREAD 1
  7180. | #define HAVE_PWRITE 1
  7181. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7182. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7183. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7184. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7185. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7186. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7187. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7188. | #define STARPU_NMAX_SCHED_CTXS 10
  7189. | #define STARPU_MAXCPUS 64
  7190. | #define STARPU_USE_CPU 1
  7191. | #define STARPU_MAXCUDADEVS 4
  7192. | #define STARPU_MAXOPENCLDEVS 8
  7193. | #define STARPU_MAXMICDEVS 0
  7194. | #define STARPU_MAXMICCORES 120
  7195. | /* end confdefs.h. */
  7196. | #include <stdio.h>
  7197. | #ifdef HAVE_SYS_TYPES_H
  7198. | # include <sys/types.h>
  7199. | #endif
  7200. | #ifdef HAVE_SYS_STAT_H
  7201. | # include <sys/stat.h>
  7202. | #endif
  7203. | #ifdef STDC_HEADERS
  7204. | # include <stdlib.h>
  7205. | # include <stddef.h>
  7206. | #else
  7207. | # ifdef HAVE_STDLIB_H
  7208. | # include <stdlib.h>
  7209. | # endif
  7210. | #endif
  7211. | #ifdef HAVE_STRING_H
  7212. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  7213. | # include <memory.h>
  7214. | # endif
  7215. | # include <string.h>
  7216. | #endif
  7217. | #ifdef HAVE_STRINGS_H
  7218. | # include <strings.h>
  7219. | #endif
  7220. | #ifdef HAVE_INTTYPES_H
  7221. | # include <inttypes.h>
  7222. | #endif
  7223. | #ifdef HAVE_STDINT_H
  7224. | # include <stdint.h>
  7225. | #endif
  7226. | #ifdef HAVE_UNISTD_H
  7227. | # include <unistd.h>
  7228. | #endif
  7229. | #include <ayudame.h>
  7230. configure:32094: result: no
  7231. configure:32094: checking ayudame.h presence
  7232. configure:32094: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c
  7233. conftest.c:87:10: fatal error: ayudame.h: No such file or directory
  7234. #include <ayudame.h>
  7235. ^~~~~~~~~~~
  7236. compilation terminated.
  7237. configure:32094: $? = 1
  7238. configure: failed program was:
  7239. | /* confdefs.h */
  7240. | #define PACKAGE_NAME "StarPU"
  7241. | #define PACKAGE_TARNAME "starpu"
  7242. | #define PACKAGE_VERSION "1.3.99"
  7243. | #define PACKAGE_STRING "StarPU 1.3.99"
  7244. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7245. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7246. | #define STARPU_MAJOR_VERSION 1
  7247. | #define STARPU_MINOR_VERSION 3
  7248. | #define STARPU_RELEASE_VERSION 99
  7249. | #define PACKAGE "starpu"
  7250. | #define VERSION "1.3.99"
  7251. | #define STARPU_AUTOFPGA 1
  7252. | #define STARPU_MAXFPGADEVS 12
  7253. | #define STARPU_USE_FPGA 1
  7254. | #define STDC_HEADERS 1
  7255. | #define HAVE_SYS_TYPES_H 1
  7256. | #define HAVE_SYS_STAT_H 1
  7257. | #define HAVE_STDLIB_H 1
  7258. | #define HAVE_STRING_H 1
  7259. | #define HAVE_MEMORY_H 1
  7260. | #define HAVE_STRINGS_H 1
  7261. | #define HAVE_INTTYPES_H 1
  7262. | #define HAVE_STDINT_H 1
  7263. | #define HAVE_UNISTD_H 1
  7264. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7265. | #define STARPU_MAXMPIDEVS 0
  7266. | #define HAVE_CXX11 1
  7267. | #define STARPU_HAVE_CXX11 1
  7268. | #define HAVE_DLFCN_H 1
  7269. | #define LT_OBJDIR ".libs/"
  7270. | #define STDC_HEADERS 1
  7271. | #define restrict __restrict
  7272. | #define STARPU_MIC_USE_RMA 1
  7273. | #define STARPU_MAXNUMANODES 2
  7274. | #define STARPU_LINUX_SYS 1
  7275. | #define SIZEOF_VOID_P 8
  7276. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7277. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7278. | #define HAVE_UNISTD_H 1
  7279. | #define STARPU_HAVE_UNISTD_H 1
  7280. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7281. | #define HAVE_LIBPTHREAD 1
  7282. | #define HAVE_SYSCONF 1
  7283. | #define HAVE_GETRLIMIT 1
  7284. | #define HAVE_SCANDIR 1
  7285. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7286. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7287. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7288. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7289. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7290. | #define HAVE_POSIX_MEMALIGN 1
  7291. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7292. | #define HAVE_MEMALIGN 1
  7293. | #define STARPU_HAVE_MEMALIGN 1
  7294. | #define STARPU_USE_DRAND48 1
  7295. | #define STARPU_USE_ERAND48_R 1
  7296. | #define STARPU_HAVE_STRERROR_R 1
  7297. | #define STARPU_HAVE_SETENV 1
  7298. | #define STARPU_HAVE_UNSETENV 1
  7299. | #define STARPU_HAVE_NEARBYINTF 1
  7300. | #define STARPU_HAVE_RINTF 1
  7301. | #define HAVE_MALLOC_H 1
  7302. | #define STARPU_HAVE_MALLOC_H 1
  7303. | #define STARPU_HAVE_SCHED_YIELD 1
  7304. | #define HAVE_AIO_H 1
  7305. | #define HAVE_LIBRT 1
  7306. | #define HAVE_MKOSTEMP 1
  7307. | #define HAVE_MKDTEMP 1
  7308. | #define HAVE_PREAD 1
  7309. | #define HAVE_PWRITE 1
  7310. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7311. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7312. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7313. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7314. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7315. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7316. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7317. | #define STARPU_NMAX_SCHED_CTXS 10
  7318. | #define STARPU_MAXCPUS 64
  7319. | #define STARPU_USE_CPU 1
  7320. | #define STARPU_MAXCUDADEVS 4
  7321. | #define STARPU_MAXOPENCLDEVS 8
  7322. | #define STARPU_MAXMICDEVS 0
  7323. | #define STARPU_MAXMICCORES 120
  7324. | /* end confdefs.h. */
  7325. | #include <ayudame.h>
  7326. configure:32094: result: no
  7327. configure:32094: checking for ayudame.h
  7328. configure:32094: result: no
  7329. configure:32150: checking how many buffers can be manipulated per task
  7330. configure:32159: result: 8
  7331. configure:32167: checking maximum number of nodes to use
  7332. configure:32228: checking maximum number of memory nodes
  7333. configure:32230: result: 16
  7334. configure:32239: checking whether allocation cache should be used
  7335. configure:32248: result: yes
  7336. configure:32282: checking using explicit performance model location
  7337. configure:32284: result: no
  7338. configure:32287: checking performance models location
  7339. configure:32289: result: $HOME/.starpu/sampling/
  7340. configure:32293: checking for clock_gettime in -lrt
  7341. configure:32318: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7342. configure:32318: $? = 0
  7343. configure:32327: result: yes
  7344. configure:32340: checking for clock_gettime
  7345. configure:32340: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7346. configure:32340: $? = 0
  7347. configure:32340: result: yes
  7348. configure:32376: checking Maximum number of workers
  7349. configure:32378: result: 80
  7350. configure:32388: checking Maximum number of workers combinations
  7351. configure:32390: result: 64
  7352. configure:32401: checking maximum number of implementations
  7353. configure:32410: result: 4
  7354. configure:32511: checking calibration heuristic of history-based StarPU calibrator
  7355. configure:32520: result: 50
  7356. configure:32564: checking Maximum number of message-passing kernels
  7357. configure:32573: result: 10
  7358. configure:32595: checking whether compiler support -Wall
  7359. configure:32617: gcc -o conftest -Wall -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7360. conftest.c: In function 'main':
  7361. conftest.c:103:18: warning: unused variable 'hello' [-Wunused-variable]
  7362. const char *hello = "Hello World";
  7363. ^~~~~
  7364. configure:32617: $? = 0
  7365. configure:32620: result: yes
  7366. configure:32639: checking whether compiler support -Werror=implicit
  7367. configure:32661: gcc -o conftest -Werror=implicit -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7368. configure:32661: $? = 0
  7369. configure:32664: result: yes
  7370. configure:32683: checking whether compiler support -Werror=implicit-function-declaration
  7371. configure:32705: gcc -o conftest -Werror=implicit-function-declaration -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7372. configure:32705: $? = 0
  7373. configure:32708: result: yes
  7374. configure:33432: checking for cluster support
  7375. configure:33515: result: no
  7376. configure:33552: checking for OpenMP runtime support
  7377. configure:33562: result: yes
  7378. configure:33594: checking for SOCL
  7379. configure:33619: result: no
  7380. configure:33668: checking for gdb
  7381. configure:33686: found /opt/rh/devtoolset-8/root/usr/bin/gdb
  7382. configure:33699: result: /opt/rh/devtoolset-8/root/usr/bin/gdb
  7383. configure:33927: checking whether OpenGL rendering is enabled
  7384. configure:33931: result: no
  7385. configure:33942: checking for X
  7386. configure:34050: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c
  7387. In file included from /usr/include/sys/types.h:25,
  7388. from /usr/include/X11/Xlib.h:38,
  7389. from conftest.c:99:
  7390. /usr/include/features.h:330:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
  7391. # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
  7392. ^~~~~~~
  7393. configure:34050: $? = 0
  7394. configure:34081: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lX11 -lrt -lrt -lpthread >&5
  7395. configure:34081: $? = 0
  7396. configure:34131: result: libraries , headers
  7397. configure:34230: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread -lX11 >&5
  7398. configure:34230: $? = 0
  7399. configure:34328: checking for gethostbyname
  7400. configure:34328: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7401. configure:34328: $? = 0
  7402. configure:34328: result: yes
  7403. configure:34425: checking for connect
  7404. configure:34425: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7405. configure:34425: $? = 0
  7406. configure:34425: result: yes
  7407. configure:34474: checking for remove
  7408. configure:34474: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7409. configure:34474: $? = 0
  7410. configure:34474: result: yes
  7411. configure:34523: checking for shmat
  7412. configure:34523: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7413. configure:34523: $? = 0
  7414. configure:34523: result: yes
  7415. configure:34581: checking for IceConnectionNumber in -lICE
  7416. configure:34606: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lICE -lrt -lrt -lpthread >&5
  7417. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lICE
  7418. collect2: error: ld returned 1 exit status
  7419. configure:34606: $? = 1
  7420. configure: failed program was:
  7421. | /* confdefs.h */
  7422. | #define PACKAGE_NAME "StarPU"
  7423. | #define PACKAGE_TARNAME "starpu"
  7424. | #define PACKAGE_VERSION "1.3.99"
  7425. | #define PACKAGE_STRING "StarPU 1.3.99"
  7426. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7427. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7428. | #define STARPU_MAJOR_VERSION 1
  7429. | #define STARPU_MINOR_VERSION 3
  7430. | #define STARPU_RELEASE_VERSION 99
  7431. | #define PACKAGE "starpu"
  7432. | #define VERSION "1.3.99"
  7433. | #define STARPU_AUTOFPGA 1
  7434. | #define STARPU_MAXFPGADEVS 12
  7435. | #define STARPU_USE_FPGA 1
  7436. | #define STDC_HEADERS 1
  7437. | #define HAVE_SYS_TYPES_H 1
  7438. | #define HAVE_SYS_STAT_H 1
  7439. | #define HAVE_STDLIB_H 1
  7440. | #define HAVE_STRING_H 1
  7441. | #define HAVE_MEMORY_H 1
  7442. | #define HAVE_STRINGS_H 1
  7443. | #define HAVE_INTTYPES_H 1
  7444. | #define HAVE_STDINT_H 1
  7445. | #define HAVE_UNISTD_H 1
  7446. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7447. | #define STARPU_MAXMPIDEVS 0
  7448. | #define HAVE_CXX11 1
  7449. | #define STARPU_HAVE_CXX11 1
  7450. | #define HAVE_DLFCN_H 1
  7451. | #define LT_OBJDIR ".libs/"
  7452. | #define STDC_HEADERS 1
  7453. | #define restrict __restrict
  7454. | #define STARPU_MIC_USE_RMA 1
  7455. | #define STARPU_MAXNUMANODES 2
  7456. | #define STARPU_LINUX_SYS 1
  7457. | #define SIZEOF_VOID_P 8
  7458. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7459. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7460. | #define HAVE_UNISTD_H 1
  7461. | #define STARPU_HAVE_UNISTD_H 1
  7462. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7463. | #define HAVE_LIBPTHREAD 1
  7464. | #define HAVE_SYSCONF 1
  7465. | #define HAVE_GETRLIMIT 1
  7466. | #define HAVE_SCANDIR 1
  7467. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7468. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7469. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7470. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7471. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7472. | #define HAVE_POSIX_MEMALIGN 1
  7473. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7474. | #define HAVE_MEMALIGN 1
  7475. | #define STARPU_HAVE_MEMALIGN 1
  7476. | #define STARPU_USE_DRAND48 1
  7477. | #define STARPU_USE_ERAND48_R 1
  7478. | #define STARPU_HAVE_STRERROR_R 1
  7479. | #define STARPU_HAVE_SETENV 1
  7480. | #define STARPU_HAVE_UNSETENV 1
  7481. | #define STARPU_HAVE_NEARBYINTF 1
  7482. | #define STARPU_HAVE_RINTF 1
  7483. | #define HAVE_MALLOC_H 1
  7484. | #define STARPU_HAVE_MALLOC_H 1
  7485. | #define STARPU_HAVE_SCHED_YIELD 1
  7486. | #define HAVE_AIO_H 1
  7487. | #define HAVE_LIBRT 1
  7488. | #define HAVE_MKOSTEMP 1
  7489. | #define HAVE_MKDTEMP 1
  7490. | #define HAVE_PREAD 1
  7491. | #define HAVE_PWRITE 1
  7492. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7493. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7494. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7495. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7496. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7497. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7498. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7499. | #define STARPU_NMAX_SCHED_CTXS 10
  7500. | #define STARPU_MAXCPUS 64
  7501. | #define STARPU_USE_CPU 1
  7502. | #define STARPU_MAXCUDADEVS 4
  7503. | #define STARPU_MAXOPENCLDEVS 8
  7504. | #define STARPU_MAXMICDEVS 0
  7505. | #define STARPU_MAXMICCORES 120
  7506. | #define STARPU_NMAXBUFS 8
  7507. | #define STARPU_MAXNODES 16
  7508. | #define STARPU_USE_ALLOCATION_CACHE 1
  7509. | #define HAVE_LIBRT 1
  7510. | #define HAVE_CLOCK_GETTIME 1
  7511. | #define STARPU_NMAXWORKERS 80
  7512. | #define STARPU_NMAX_COMBINEDWORKERS 64
  7513. | #define STARPU_MAXIMPLEMENTATIONS 4
  7514. | #define STARPU_HISTORYMAXERROR 50
  7515. | #define STARPU_MAXMPKERNELS 10
  7516. | #define STARPU_OPENMP 1
  7517. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  7518. | /* end confdefs.h. */
  7519. |
  7520. | /* Override any GCC internal prototype to avoid an error.
  7521. | Use char because int might match the return type of a GCC
  7522. | builtin and then its argument prototype would still apply. */
  7523. | #ifdef __cplusplus
  7524. | extern "C"
  7525. | #endif
  7526. | char IceConnectionNumber ();
  7527. | int
  7528. | main ()
  7529. | {
  7530. | return IceConnectionNumber ();
  7531. | ;
  7532. | return 0;
  7533. | }
  7534. configure:34615: result: no
  7535. configure:35040: checking for OPENBLAS
  7536. configure:35048: $PKG_CONFIG --exists --print-errors "openblas"
  7537. Package openblas was not found in the pkg-config search path.
  7538. Perhaps you should add the directory containing `openblas.pc'
  7539. to the PKG_CONFIG_PATH environment variable
  7540. No package 'openblas' found
  7541. configure:35051: $? = 1
  7542. configure:35066: $PKG_CONFIG --exists --print-errors "openblas"
  7543. Package openblas was not found in the pkg-config search path.
  7544. Perhaps you should add the directory containing `openblas.pc'
  7545. to the PKG_CONFIG_PATH environment variable
  7546. No package 'openblas' found
  7547. configure:35069: $? = 1
  7548. No package 'openblas' found
  7549. configure:35097: result: no
  7550. configure:35549: checking for library containing sgemm_
  7551. configure:35580: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c >&5
  7552. /tmp/ccQlv5FO.o: In function `main':
  7553. /home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/conftest.c:111: undefined reference to `sgemm_'
  7554. collect2: error: ld returned 1 exit status
  7555. configure:35580: $? = 1
  7556. configure: failed program was:
  7557. | /* confdefs.h */
  7558. | #define PACKAGE_NAME "StarPU"
  7559. | #define PACKAGE_TARNAME "starpu"
  7560. | #define PACKAGE_VERSION "1.3.99"
  7561. | #define PACKAGE_STRING "StarPU 1.3.99"
  7562. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7563. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7564. | #define STARPU_MAJOR_VERSION 1
  7565. | #define STARPU_MINOR_VERSION 3
  7566. | #define STARPU_RELEASE_VERSION 99
  7567. | #define PACKAGE "starpu"
  7568. | #define VERSION "1.3.99"
  7569. | #define STARPU_AUTOFPGA 1
  7570. | #define STARPU_MAXFPGADEVS 12
  7571. | #define STARPU_USE_FPGA 1
  7572. | #define STDC_HEADERS 1
  7573. | #define HAVE_SYS_TYPES_H 1
  7574. | #define HAVE_SYS_STAT_H 1
  7575. | #define HAVE_STDLIB_H 1
  7576. | #define HAVE_STRING_H 1
  7577. | #define HAVE_MEMORY_H 1
  7578. | #define HAVE_STRINGS_H 1
  7579. | #define HAVE_INTTYPES_H 1
  7580. | #define HAVE_STDINT_H 1
  7581. | #define HAVE_UNISTD_H 1
  7582. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7583. | #define STARPU_MAXMPIDEVS 0
  7584. | #define HAVE_CXX11 1
  7585. | #define STARPU_HAVE_CXX11 1
  7586. | #define HAVE_DLFCN_H 1
  7587. | #define LT_OBJDIR ".libs/"
  7588. | #define STDC_HEADERS 1
  7589. | #define restrict __restrict
  7590. | #define STARPU_MIC_USE_RMA 1
  7591. | #define STARPU_MAXNUMANODES 2
  7592. | #define STARPU_LINUX_SYS 1
  7593. | #define SIZEOF_VOID_P 8
  7594. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7595. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7596. | #define HAVE_UNISTD_H 1
  7597. | #define STARPU_HAVE_UNISTD_H 1
  7598. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7599. | #define HAVE_LIBPTHREAD 1
  7600. | #define HAVE_SYSCONF 1
  7601. | #define HAVE_GETRLIMIT 1
  7602. | #define HAVE_SCANDIR 1
  7603. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7604. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7605. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7606. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7607. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7608. | #define HAVE_POSIX_MEMALIGN 1
  7609. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7610. | #define HAVE_MEMALIGN 1
  7611. | #define STARPU_HAVE_MEMALIGN 1
  7612. | #define STARPU_USE_DRAND48 1
  7613. | #define STARPU_USE_ERAND48_R 1
  7614. | #define STARPU_HAVE_STRERROR_R 1
  7615. | #define STARPU_HAVE_SETENV 1
  7616. | #define STARPU_HAVE_UNSETENV 1
  7617. | #define STARPU_HAVE_NEARBYINTF 1
  7618. | #define STARPU_HAVE_RINTF 1
  7619. | #define HAVE_MALLOC_H 1
  7620. | #define STARPU_HAVE_MALLOC_H 1
  7621. | #define STARPU_HAVE_SCHED_YIELD 1
  7622. | #define HAVE_AIO_H 1
  7623. | #define HAVE_LIBRT 1
  7624. | #define HAVE_MKOSTEMP 1
  7625. | #define HAVE_MKDTEMP 1
  7626. | #define HAVE_PREAD 1
  7627. | #define HAVE_PWRITE 1
  7628. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7629. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7630. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7631. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7632. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7633. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7634. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7635. | #define STARPU_NMAX_SCHED_CTXS 10
  7636. | #define STARPU_MAXCPUS 64
  7637. | #define STARPU_USE_CPU 1
  7638. | #define STARPU_MAXCUDADEVS 4
  7639. | #define STARPU_MAXOPENCLDEVS 8
  7640. | #define STARPU_MAXMICDEVS 0
  7641. | #define STARPU_MAXMICCORES 120
  7642. | #define STARPU_NMAXBUFS 8
  7643. | #define STARPU_MAXNODES 16
  7644. | #define STARPU_USE_ALLOCATION_CACHE 1
  7645. | #define HAVE_LIBRT 1
  7646. | #define HAVE_CLOCK_GETTIME 1
  7647. | #define STARPU_NMAXWORKERS 80
  7648. | #define STARPU_NMAX_COMBINEDWORKERS 64
  7649. | #define STARPU_MAXIMPLEMENTATIONS 4
  7650. | #define STARPU_HISTORYMAXERROR 50
  7651. | #define STARPU_MAXMPKERNELS 10
  7652. | #define STARPU_OPENMP 1
  7653. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  7654. | #define STARPU_HAVE_X11 1
  7655. | /* end confdefs.h. */
  7656. |
  7657. | /* Override any GCC internal prototype to avoid an error.
  7658. | Use char because int might match the return type of a GCC
  7659. | builtin and then its argument prototype would still apply. */
  7660. | #ifdef __cplusplus
  7661. | extern "C"
  7662. | #endif
  7663. | char sgemm_ ();
  7664. | int
  7665. | main ()
  7666. | {
  7667. | return sgemm_ ();
  7668. | ;
  7669. | return 0;
  7670. | }
  7671. configure:35580: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lblas >&5
  7672. /opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld: cannot find -lblas
  7673. collect2: error: ld returned 1 exit status
  7674. configure:35580: $? = 1
  7675. configure: failed program was:
  7676. | /* confdefs.h */
  7677. | #define PACKAGE_NAME "StarPU"
  7678. | #define PACKAGE_TARNAME "starpu"
  7679. | #define PACKAGE_VERSION "1.3.99"
  7680. | #define PACKAGE_STRING "StarPU 1.3.99"
  7681. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7682. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7683. | #define STARPU_MAJOR_VERSION 1
  7684. | #define STARPU_MINOR_VERSION 3
  7685. | #define STARPU_RELEASE_VERSION 99
  7686. | #define PACKAGE "starpu"
  7687. | #define VERSION "1.3.99"
  7688. | #define STARPU_AUTOFPGA 1
  7689. | #define STARPU_MAXFPGADEVS 12
  7690. | #define STARPU_USE_FPGA 1
  7691. | #define STDC_HEADERS 1
  7692. | #define HAVE_SYS_TYPES_H 1
  7693. | #define HAVE_SYS_STAT_H 1
  7694. | #define HAVE_STDLIB_H 1
  7695. | #define HAVE_STRING_H 1
  7696. | #define HAVE_MEMORY_H 1
  7697. | #define HAVE_STRINGS_H 1
  7698. | #define HAVE_INTTYPES_H 1
  7699. | #define HAVE_STDINT_H 1
  7700. | #define HAVE_UNISTD_H 1
  7701. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7702. | #define STARPU_MAXMPIDEVS 0
  7703. | #define HAVE_CXX11 1
  7704. | #define STARPU_HAVE_CXX11 1
  7705. | #define HAVE_DLFCN_H 1
  7706. | #define LT_OBJDIR ".libs/"
  7707. | #define STDC_HEADERS 1
  7708. | #define restrict __restrict
  7709. | #define STARPU_MIC_USE_RMA 1
  7710. | #define STARPU_MAXNUMANODES 2
  7711. | #define STARPU_LINUX_SYS 1
  7712. | #define SIZEOF_VOID_P 8
  7713. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7714. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7715. | #define HAVE_UNISTD_H 1
  7716. | #define STARPU_HAVE_UNISTD_H 1
  7717. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7718. | #define HAVE_LIBPTHREAD 1
  7719. | #define HAVE_SYSCONF 1
  7720. | #define HAVE_GETRLIMIT 1
  7721. | #define HAVE_SCANDIR 1
  7722. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7723. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7724. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7725. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7726. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7727. | #define HAVE_POSIX_MEMALIGN 1
  7728. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7729. | #define HAVE_MEMALIGN 1
  7730. | #define STARPU_HAVE_MEMALIGN 1
  7731. | #define STARPU_USE_DRAND48 1
  7732. | #define STARPU_USE_ERAND48_R 1
  7733. | #define STARPU_HAVE_STRERROR_R 1
  7734. | #define STARPU_HAVE_SETENV 1
  7735. | #define STARPU_HAVE_UNSETENV 1
  7736. | #define STARPU_HAVE_NEARBYINTF 1
  7737. | #define STARPU_HAVE_RINTF 1
  7738. | #define HAVE_MALLOC_H 1
  7739. | #define STARPU_HAVE_MALLOC_H 1
  7740. | #define STARPU_HAVE_SCHED_YIELD 1
  7741. | #define HAVE_AIO_H 1
  7742. | #define HAVE_LIBRT 1
  7743. | #define HAVE_MKOSTEMP 1
  7744. | #define HAVE_MKDTEMP 1
  7745. | #define HAVE_PREAD 1
  7746. | #define HAVE_PWRITE 1
  7747. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7748. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7749. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7750. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7751. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7752. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7753. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7754. | #define STARPU_NMAX_SCHED_CTXS 10
  7755. | #define STARPU_MAXCPUS 64
  7756. | #define STARPU_USE_CPU 1
  7757. | #define STARPU_MAXCUDADEVS 4
  7758. | #define STARPU_MAXOPENCLDEVS 8
  7759. | #define STARPU_MAXMICDEVS 0
  7760. | #define STARPU_MAXMICCORES 120
  7761. | #define STARPU_NMAXBUFS 8
  7762. | #define STARPU_MAXNODES 16
  7763. | #define STARPU_USE_ALLOCATION_CACHE 1
  7764. | #define HAVE_LIBRT 1
  7765. | #define HAVE_CLOCK_GETTIME 1
  7766. | #define STARPU_NMAXWORKERS 80
  7767. | #define STARPU_NMAX_COMBINEDWORKERS 64
  7768. | #define STARPU_MAXIMPLEMENTATIONS 4
  7769. | #define STARPU_HISTORYMAXERROR 50
  7770. | #define STARPU_MAXMPKERNELS 10
  7771. | #define STARPU_OPENMP 1
  7772. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  7773. | #define STARPU_HAVE_X11 1
  7774. | /* end confdefs.h. */
  7775. |
  7776. | /* Override any GCC internal prototype to avoid an error.
  7777. | Use char because int might match the return type of a GCC
  7778. | builtin and then its argument prototype would still apply. */
  7779. | #ifdef __cplusplus
  7780. | extern "C"
  7781. | #endif
  7782. | char sgemm_ ();
  7783. | int
  7784. | main ()
  7785. | {
  7786. | return sgemm_ ();
  7787. | ;
  7788. | return 0;
  7789. | }
  7790. configure:35597: result: no
  7791. configure:35668: checking which BLAS lib should be used
  7792. configure:35670: result: none
  7793. configure:35688: checking whether multiple linear regression models are disabled
  7794. configure:35808: result: yes
  7795. configure:35841: checking for FFTW
  7796. configure:35849: $PKG_CONFIG --exists --print-errors "fftw3"
  7797. Package fftw3 was not found in the pkg-config search path.
  7798. Perhaps you should add the directory containing `fftw3.pc'
  7799. to the PKG_CONFIG_PATH environment variable
  7800. No package 'fftw3' found
  7801. configure:35852: $? = 1
  7802. configure:35867: $PKG_CONFIG --exists --print-errors "fftw3"
  7803. Package fftw3 was not found in the pkg-config search path.
  7804. Perhaps you should add the directory containing `fftw3.pc'
  7805. to the PKG_CONFIG_PATH environment variable
  7806. No package 'fftw3' found
  7807. configure:35870: $? = 1
  7808. No package 'fftw3' found
  7809. configure:35898: result: no
  7810. configure:35928: checking for FFTWF
  7811. configure:35936: $PKG_CONFIG --exists --print-errors "fftw3f"
  7812. Package fftw3f was not found in the pkg-config search path.
  7813. Perhaps you should add the directory containing `fftw3f.pc'
  7814. to the PKG_CONFIG_PATH environment variable
  7815. No package 'fftw3f' found
  7816. configure:35939: $? = 1
  7817. configure:35954: $PKG_CONFIG --exists --print-errors "fftw3f"
  7818. Package fftw3f was not found in the pkg-config search path.
  7819. Perhaps you should add the directory containing `fftw3f.pc'
  7820. to the PKG_CONFIG_PATH environment variable
  7821. No package 'fftw3f' found
  7822. configure:35957: $? = 1
  7823. No package 'fftw3f' found
  7824. configure:35985: result: no
  7825. configure:36015: checking for FFTWL
  7826. configure:36023: $PKG_CONFIG --exists --print-errors "fftw3l"
  7827. Package fftw3l was not found in the pkg-config search path.
  7828. Perhaps you should add the directory containing `fftw3l.pc'
  7829. to the PKG_CONFIG_PATH environment variable
  7830. No package 'fftw3l' found
  7831. configure:36026: $? = 1
  7832. configure:36041: $PKG_CONFIG --exists --print-errors "fftw3l"
  7833. Package fftw3l was not found in the pkg-config search path.
  7834. Perhaps you should add the directory containing `fftw3l.pc'
  7835. to the PKG_CONFIG_PATH environment variable
  7836. No package 'fftw3l' found
  7837. configure:36044: $? = 1
  7838. No package 'fftw3l' found
  7839. configure:36072: result: no
  7840. configure:36167: checking for HWLOC
  7841. configure:36175: $PKG_CONFIG --exists --print-errors "hwloc"
  7842. configure:36178: $? = 0
  7843. configure:36193: $PKG_CONFIG --exists --print-errors "hwloc"
  7844. configure:36196: $? = 0
  7845. configure:36232: result: yes
  7846. configure:36267: checking whether hwloc_cuda_get_device_osdev_by_index is declared
  7847. configure:36267: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/home/jusers/makni1/jumax/hwloc-2.0.3/install/include -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  7848. In file included from conftest.c:101:
  7849. /home/jusers/makni1/jumax/hwloc-2.0.3/install/include/hwloc/cuda.h:26:10: fatal error: cuda.h: No such file or directory
  7850. #include <cuda.h>
  7851. ^~~~~~~~
  7852. compilation terminated.
  7853. configure:36267: $? = 1
  7854. configure: failed program was:
  7855. | /* confdefs.h */
  7856. | #define PACKAGE_NAME "StarPU"
  7857. | #define PACKAGE_TARNAME "starpu"
  7858. | #define PACKAGE_VERSION "1.3.99"
  7859. | #define PACKAGE_STRING "StarPU 1.3.99"
  7860. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7861. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7862. | #define STARPU_MAJOR_VERSION 1
  7863. | #define STARPU_MINOR_VERSION 3
  7864. | #define STARPU_RELEASE_VERSION 99
  7865. | #define PACKAGE "starpu"
  7866. | #define VERSION "1.3.99"
  7867. | #define STARPU_AUTOFPGA 1
  7868. | #define STARPU_MAXFPGADEVS 12
  7869. | #define STARPU_USE_FPGA 1
  7870. | #define STDC_HEADERS 1
  7871. | #define HAVE_SYS_TYPES_H 1
  7872. | #define HAVE_SYS_STAT_H 1
  7873. | #define HAVE_STDLIB_H 1
  7874. | #define HAVE_STRING_H 1
  7875. | #define HAVE_MEMORY_H 1
  7876. | #define HAVE_STRINGS_H 1
  7877. | #define HAVE_INTTYPES_H 1
  7878. | #define HAVE_STDINT_H 1
  7879. | #define HAVE_UNISTD_H 1
  7880. | #define STARPU_NON_BLOCKING_DRIVERS 1
  7881. | #define STARPU_MAXMPIDEVS 0
  7882. | #define HAVE_CXX11 1
  7883. | #define STARPU_HAVE_CXX11 1
  7884. | #define HAVE_DLFCN_H 1
  7885. | #define LT_OBJDIR ".libs/"
  7886. | #define STDC_HEADERS 1
  7887. | #define restrict __restrict
  7888. | #define STARPU_MIC_USE_RMA 1
  7889. | #define STARPU_MAXNUMANODES 2
  7890. | #define STARPU_LINUX_SYS 1
  7891. | #define SIZEOF_VOID_P 8
  7892. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  7893. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  7894. | #define HAVE_UNISTD_H 1
  7895. | #define STARPU_HAVE_UNISTD_H 1
  7896. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  7897. | #define HAVE_LIBPTHREAD 1
  7898. | #define HAVE_SYSCONF 1
  7899. | #define HAVE_GETRLIMIT 1
  7900. | #define HAVE_SCANDIR 1
  7901. | #define HAVE_PTHREAD_SPIN_LOCK 1
  7902. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  7903. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  7904. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  7905. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  7906. | #define HAVE_POSIX_MEMALIGN 1
  7907. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  7908. | #define HAVE_MEMALIGN 1
  7909. | #define STARPU_HAVE_MEMALIGN 1
  7910. | #define STARPU_USE_DRAND48 1
  7911. | #define STARPU_USE_ERAND48_R 1
  7912. | #define STARPU_HAVE_STRERROR_R 1
  7913. | #define STARPU_HAVE_SETENV 1
  7914. | #define STARPU_HAVE_UNSETENV 1
  7915. | #define STARPU_HAVE_NEARBYINTF 1
  7916. | #define STARPU_HAVE_RINTF 1
  7917. | #define HAVE_MALLOC_H 1
  7918. | #define STARPU_HAVE_MALLOC_H 1
  7919. | #define STARPU_HAVE_SCHED_YIELD 1
  7920. | #define HAVE_AIO_H 1
  7921. | #define HAVE_LIBRT 1
  7922. | #define HAVE_MKOSTEMP 1
  7923. | #define HAVE_MKDTEMP 1
  7924. | #define HAVE_PREAD 1
  7925. | #define HAVE_PWRITE 1
  7926. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  7927. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  7928. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  7929. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  7930. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  7931. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  7932. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  7933. | #define STARPU_NMAX_SCHED_CTXS 10
  7934. | #define STARPU_MAXCPUS 64
  7935. | #define STARPU_USE_CPU 1
  7936. | #define STARPU_MAXCUDADEVS 4
  7937. | #define STARPU_MAXOPENCLDEVS 8
  7938. | #define STARPU_MAXMICDEVS 0
  7939. | #define STARPU_MAXMICCORES 120
  7940. | #define STARPU_NMAXBUFS 8
  7941. | #define STARPU_MAXNODES 16
  7942. | #define STARPU_USE_ALLOCATION_CACHE 1
  7943. | #define HAVE_LIBRT 1
  7944. | #define HAVE_CLOCK_GETTIME 1
  7945. | #define STARPU_NMAXWORKERS 80
  7946. | #define STARPU_NMAX_COMBINEDWORKERS 64
  7947. | #define STARPU_MAXIMPLEMENTATIONS 4
  7948. | #define STARPU_HISTORYMAXERROR 50
  7949. | #define STARPU_MAXMPKERNELS 10
  7950. | #define STARPU_OPENMP 1
  7951. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  7952. | #define STARPU_HAVE_X11 1
  7953. | #define STARPU_HAVE_HWLOC 1
  7954. | /* end confdefs.h. */
  7955. | #include <hwloc/cuda.h>
  7956. |
  7957. | int
  7958. | main ()
  7959. | {
  7960. | #ifndef hwloc_cuda_get_device_osdev_by_index
  7961. | #ifdef __cplusplus
  7962. | (void) hwloc_cuda_get_device_osdev_by_index;
  7963. | #else
  7964. | (void) hwloc_cuda_get_device_osdev_by_index;
  7965. | #endif
  7966. | #endif
  7967. |
  7968. | ;
  7969. | return 0;
  7970. | }
  7971. configure:36267: result: no
  7972. configure:36284: checking for hwloc_topology_dup
  7973. configure:36284: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/home/jusers/makni1/jumax/hwloc-2.0.3/install/include -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/home/jusers/makni1/jumax/hwloc-2.0.3/install/lib -lhwloc -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7974. configure:36284: $? = 0
  7975. configure:36284: result: yes
  7976. configure:36295: checking for hwloc_topology_set_components
  7977. configure:36295: gcc -o conftest -O3 -g -O2 -gdwarf-2 -g3 -g -I/home/jusers/makni1/jumax/hwloc-2.0.3/install/include -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 -L/home/jusers/makni1/jumax/hwloc-2.0.3/install/lib -lhwloc -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g conftest.c -lrt -lrt -lpthread >&5
  7978. /tmp/ccVi3oeg.o: In function `main':
  7979. /home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/conftest.c:137: undefined reference to `hwloc_topology_set_components'
  7980. collect2: error: ld returned 1 exit status
  7981. configure:36295: $? = 1
  7982. configure: failed program was:
  7983. | /* confdefs.h */
  7984. | #define PACKAGE_NAME "StarPU"
  7985. | #define PACKAGE_TARNAME "starpu"
  7986. | #define PACKAGE_VERSION "1.3.99"
  7987. | #define PACKAGE_STRING "StarPU 1.3.99"
  7988. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  7989. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  7990. | #define STARPU_MAJOR_VERSION 1
  7991. | #define STARPU_MINOR_VERSION 3
  7992. | #define STARPU_RELEASE_VERSION 99
  7993. | #define PACKAGE "starpu"
  7994. | #define VERSION "1.3.99"
  7995. | #define STARPU_AUTOFPGA 1
  7996. | #define STARPU_MAXFPGADEVS 12
  7997. | #define STARPU_USE_FPGA 1
  7998. | #define STDC_HEADERS 1
  7999. | #define HAVE_SYS_TYPES_H 1
  8000. | #define HAVE_SYS_STAT_H 1
  8001. | #define HAVE_STDLIB_H 1
  8002. | #define HAVE_STRING_H 1
  8003. | #define HAVE_MEMORY_H 1
  8004. | #define HAVE_STRINGS_H 1
  8005. | #define HAVE_INTTYPES_H 1
  8006. | #define HAVE_STDINT_H 1
  8007. | #define HAVE_UNISTD_H 1
  8008. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8009. | #define STARPU_MAXMPIDEVS 0
  8010. | #define HAVE_CXX11 1
  8011. | #define STARPU_HAVE_CXX11 1
  8012. | #define HAVE_DLFCN_H 1
  8013. | #define LT_OBJDIR ".libs/"
  8014. | #define STDC_HEADERS 1
  8015. | #define restrict __restrict
  8016. | #define STARPU_MIC_USE_RMA 1
  8017. | #define STARPU_MAXNUMANODES 2
  8018. | #define STARPU_LINUX_SYS 1
  8019. | #define SIZEOF_VOID_P 8
  8020. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8021. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8022. | #define HAVE_UNISTD_H 1
  8023. | #define STARPU_HAVE_UNISTD_H 1
  8024. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8025. | #define HAVE_LIBPTHREAD 1
  8026. | #define HAVE_SYSCONF 1
  8027. | #define HAVE_GETRLIMIT 1
  8028. | #define HAVE_SCANDIR 1
  8029. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8030. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8031. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8032. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8033. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8034. | #define HAVE_POSIX_MEMALIGN 1
  8035. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8036. | #define HAVE_MEMALIGN 1
  8037. | #define STARPU_HAVE_MEMALIGN 1
  8038. | #define STARPU_USE_DRAND48 1
  8039. | #define STARPU_USE_ERAND48_R 1
  8040. | #define STARPU_HAVE_STRERROR_R 1
  8041. | #define STARPU_HAVE_SETENV 1
  8042. | #define STARPU_HAVE_UNSETENV 1
  8043. | #define STARPU_HAVE_NEARBYINTF 1
  8044. | #define STARPU_HAVE_RINTF 1
  8045. | #define HAVE_MALLOC_H 1
  8046. | #define STARPU_HAVE_MALLOC_H 1
  8047. | #define STARPU_HAVE_SCHED_YIELD 1
  8048. | #define HAVE_AIO_H 1
  8049. | #define HAVE_LIBRT 1
  8050. | #define HAVE_MKOSTEMP 1
  8051. | #define HAVE_MKDTEMP 1
  8052. | #define HAVE_PREAD 1
  8053. | #define HAVE_PWRITE 1
  8054. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8055. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8056. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8057. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8058. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8059. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8060. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8061. | #define STARPU_NMAX_SCHED_CTXS 10
  8062. | #define STARPU_MAXCPUS 64
  8063. | #define STARPU_USE_CPU 1
  8064. | #define STARPU_MAXCUDADEVS 4
  8065. | #define STARPU_MAXOPENCLDEVS 8
  8066. | #define STARPU_MAXMICDEVS 0
  8067. | #define STARPU_MAXMICCORES 120
  8068. | #define STARPU_NMAXBUFS 8
  8069. | #define STARPU_MAXNODES 16
  8070. | #define STARPU_USE_ALLOCATION_CACHE 1
  8071. | #define HAVE_LIBRT 1
  8072. | #define HAVE_CLOCK_GETTIME 1
  8073. | #define STARPU_NMAXWORKERS 80
  8074. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8075. | #define STARPU_MAXIMPLEMENTATIONS 4
  8076. | #define STARPU_HISTORYMAXERROR 50
  8077. | #define STARPU_MAXMPKERNELS 10
  8078. | #define STARPU_OPENMP 1
  8079. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8080. | #define STARPU_HAVE_X11 1
  8081. | #define STARPU_HAVE_HWLOC 1
  8082. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8083. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8084. | /* end confdefs.h. */
  8085. | /* Define hwloc_topology_set_components to an innocuous variant, in case <limits.h> declares hwloc_topology_set_components.
  8086. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  8087. | #define hwloc_topology_set_components innocuous_hwloc_topology_set_components
  8088. |
  8089. | /* System header to define __stub macros and hopefully few prototypes,
  8090. | which can conflict with char hwloc_topology_set_components (); below.
  8091. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  8092. | <limits.h> exists even on freestanding compilers. */
  8093. |
  8094. | #ifdef __STDC__
  8095. | # include <limits.h>
  8096. | #else
  8097. | # include <assert.h>
  8098. | #endif
  8099. |
  8100. | #undef hwloc_topology_set_components
  8101. |
  8102. | /* Override any GCC internal prototype to avoid an error.
  8103. | Use char because int might match the return type of a GCC
  8104. | builtin and then its argument prototype would still apply. */
  8105. | #ifdef __cplusplus
  8106. | extern "C"
  8107. | #endif
  8108. | char hwloc_topology_set_components ();
  8109. | /* The GNU C library defines this for functions which it implements
  8110. | to always fail with ENOSYS. Some functions are actually named
  8111. | something starting with __ and the normal name is an alias. */
  8112. | #if defined __stub_hwloc_topology_set_components || defined __stub___hwloc_topology_set_components
  8113. | choke me
  8114. | #endif
  8115. |
  8116. | int
  8117. | main ()
  8118. | {
  8119. | return hwloc_topology_set_components ();
  8120. | ;
  8121. | return 0;
  8122. | }
  8123. configure:36295: result: no
  8124. configure:36317: checking whether hwloc should be used
  8125. configure:36319: result: yes
  8126. configure:36324: checking f77.h usability
  8127. configure:36324: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  8128. conftest.c:136:10: fatal error: f77.h: No such file or directory
  8129. #include <f77.h>
  8130. ^~~~~~~
  8131. compilation terminated.
  8132. configure:36324: $? = 1
  8133. configure: failed program was:
  8134. | /* confdefs.h */
  8135. | #define PACKAGE_NAME "StarPU"
  8136. | #define PACKAGE_TARNAME "starpu"
  8137. | #define PACKAGE_VERSION "1.3.99"
  8138. | #define PACKAGE_STRING "StarPU 1.3.99"
  8139. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  8140. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  8141. | #define STARPU_MAJOR_VERSION 1
  8142. | #define STARPU_MINOR_VERSION 3
  8143. | #define STARPU_RELEASE_VERSION 99
  8144. | #define PACKAGE "starpu"
  8145. | #define VERSION "1.3.99"
  8146. | #define STARPU_AUTOFPGA 1
  8147. | #define STARPU_MAXFPGADEVS 12
  8148. | #define STARPU_USE_FPGA 1
  8149. | #define STDC_HEADERS 1
  8150. | #define HAVE_SYS_TYPES_H 1
  8151. | #define HAVE_SYS_STAT_H 1
  8152. | #define HAVE_STDLIB_H 1
  8153. | #define HAVE_STRING_H 1
  8154. | #define HAVE_MEMORY_H 1
  8155. | #define HAVE_STRINGS_H 1
  8156. | #define HAVE_INTTYPES_H 1
  8157. | #define HAVE_STDINT_H 1
  8158. | #define HAVE_UNISTD_H 1
  8159. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8160. | #define STARPU_MAXMPIDEVS 0
  8161. | #define HAVE_CXX11 1
  8162. | #define STARPU_HAVE_CXX11 1
  8163. | #define HAVE_DLFCN_H 1
  8164. | #define LT_OBJDIR ".libs/"
  8165. | #define STDC_HEADERS 1
  8166. | #define restrict __restrict
  8167. | #define STARPU_MIC_USE_RMA 1
  8168. | #define STARPU_MAXNUMANODES 2
  8169. | #define STARPU_LINUX_SYS 1
  8170. | #define SIZEOF_VOID_P 8
  8171. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8172. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8173. | #define HAVE_UNISTD_H 1
  8174. | #define STARPU_HAVE_UNISTD_H 1
  8175. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8176. | #define HAVE_LIBPTHREAD 1
  8177. | #define HAVE_SYSCONF 1
  8178. | #define HAVE_GETRLIMIT 1
  8179. | #define HAVE_SCANDIR 1
  8180. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8181. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8182. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8183. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8184. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8185. | #define HAVE_POSIX_MEMALIGN 1
  8186. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8187. | #define HAVE_MEMALIGN 1
  8188. | #define STARPU_HAVE_MEMALIGN 1
  8189. | #define STARPU_USE_DRAND48 1
  8190. | #define STARPU_USE_ERAND48_R 1
  8191. | #define STARPU_HAVE_STRERROR_R 1
  8192. | #define STARPU_HAVE_SETENV 1
  8193. | #define STARPU_HAVE_UNSETENV 1
  8194. | #define STARPU_HAVE_NEARBYINTF 1
  8195. | #define STARPU_HAVE_RINTF 1
  8196. | #define HAVE_MALLOC_H 1
  8197. | #define STARPU_HAVE_MALLOC_H 1
  8198. | #define STARPU_HAVE_SCHED_YIELD 1
  8199. | #define HAVE_AIO_H 1
  8200. | #define HAVE_LIBRT 1
  8201. | #define HAVE_MKOSTEMP 1
  8202. | #define HAVE_MKDTEMP 1
  8203. | #define HAVE_PREAD 1
  8204. | #define HAVE_PWRITE 1
  8205. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8206. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8207. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8208. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8209. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8210. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8211. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8212. | #define STARPU_NMAX_SCHED_CTXS 10
  8213. | #define STARPU_MAXCPUS 64
  8214. | #define STARPU_USE_CPU 1
  8215. | #define STARPU_MAXCUDADEVS 4
  8216. | #define STARPU_MAXOPENCLDEVS 8
  8217. | #define STARPU_MAXMICDEVS 0
  8218. | #define STARPU_MAXMICCORES 120
  8219. | #define STARPU_NMAXBUFS 8
  8220. | #define STARPU_MAXNODES 16
  8221. | #define STARPU_USE_ALLOCATION_CACHE 1
  8222. | #define HAVE_LIBRT 1
  8223. | #define HAVE_CLOCK_GETTIME 1
  8224. | #define STARPU_NMAXWORKERS 80
  8225. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8226. | #define STARPU_MAXIMPLEMENTATIONS 4
  8227. | #define STARPU_HISTORYMAXERROR 50
  8228. | #define STARPU_MAXMPKERNELS 10
  8229. | #define STARPU_OPENMP 1
  8230. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8231. | #define STARPU_HAVE_X11 1
  8232. | #define STARPU_HAVE_HWLOC 1
  8233. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8234. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8235. | /* end confdefs.h. */
  8236. | #include <stdio.h>
  8237. | #ifdef HAVE_SYS_TYPES_H
  8238. | # include <sys/types.h>
  8239. | #endif
  8240. | #ifdef HAVE_SYS_STAT_H
  8241. | # include <sys/stat.h>
  8242. | #endif
  8243. | #ifdef STDC_HEADERS
  8244. | # include <stdlib.h>
  8245. | # include <stddef.h>
  8246. | #else
  8247. | # ifdef HAVE_STDLIB_H
  8248. | # include <stdlib.h>
  8249. | # endif
  8250. | #endif
  8251. | #ifdef HAVE_STRING_H
  8252. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  8253. | # include <memory.h>
  8254. | # endif
  8255. | # include <string.h>
  8256. | #endif
  8257. | #ifdef HAVE_STRINGS_H
  8258. | # include <strings.h>
  8259. | #endif
  8260. | #ifdef HAVE_INTTYPES_H
  8261. | # include <inttypes.h>
  8262. | #endif
  8263. | #ifdef HAVE_STDINT_H
  8264. | # include <stdint.h>
  8265. | #endif
  8266. | #ifdef HAVE_UNISTD_H
  8267. | # include <unistd.h>
  8268. | #endif
  8269. | #include <f77.h>
  8270. configure:36324: result: no
  8271. configure:36324: checking f77.h presence
  8272. configure:36324: gcc -E -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c
  8273. conftest.c:103:10: fatal error: f77.h: No such file or directory
  8274. #include <f77.h>
  8275. ^~~~~~~
  8276. compilation terminated.
  8277. configure:36324: $? = 1
  8278. configure: failed program was:
  8279. | /* confdefs.h */
  8280. | #define PACKAGE_NAME "StarPU"
  8281. | #define PACKAGE_TARNAME "starpu"
  8282. | #define PACKAGE_VERSION "1.3.99"
  8283. | #define PACKAGE_STRING "StarPU 1.3.99"
  8284. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  8285. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  8286. | #define STARPU_MAJOR_VERSION 1
  8287. | #define STARPU_MINOR_VERSION 3
  8288. | #define STARPU_RELEASE_VERSION 99
  8289. | #define PACKAGE "starpu"
  8290. | #define VERSION "1.3.99"
  8291. | #define STARPU_AUTOFPGA 1
  8292. | #define STARPU_MAXFPGADEVS 12
  8293. | #define STARPU_USE_FPGA 1
  8294. | #define STDC_HEADERS 1
  8295. | #define HAVE_SYS_TYPES_H 1
  8296. | #define HAVE_SYS_STAT_H 1
  8297. | #define HAVE_STDLIB_H 1
  8298. | #define HAVE_STRING_H 1
  8299. | #define HAVE_MEMORY_H 1
  8300. | #define HAVE_STRINGS_H 1
  8301. | #define HAVE_INTTYPES_H 1
  8302. | #define HAVE_STDINT_H 1
  8303. | #define HAVE_UNISTD_H 1
  8304. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8305. | #define STARPU_MAXMPIDEVS 0
  8306. | #define HAVE_CXX11 1
  8307. | #define STARPU_HAVE_CXX11 1
  8308. | #define HAVE_DLFCN_H 1
  8309. | #define LT_OBJDIR ".libs/"
  8310. | #define STDC_HEADERS 1
  8311. | #define restrict __restrict
  8312. | #define STARPU_MIC_USE_RMA 1
  8313. | #define STARPU_MAXNUMANODES 2
  8314. | #define STARPU_LINUX_SYS 1
  8315. | #define SIZEOF_VOID_P 8
  8316. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8317. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8318. | #define HAVE_UNISTD_H 1
  8319. | #define STARPU_HAVE_UNISTD_H 1
  8320. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8321. | #define HAVE_LIBPTHREAD 1
  8322. | #define HAVE_SYSCONF 1
  8323. | #define HAVE_GETRLIMIT 1
  8324. | #define HAVE_SCANDIR 1
  8325. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8326. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8327. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8328. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8329. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8330. | #define HAVE_POSIX_MEMALIGN 1
  8331. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8332. | #define HAVE_MEMALIGN 1
  8333. | #define STARPU_HAVE_MEMALIGN 1
  8334. | #define STARPU_USE_DRAND48 1
  8335. | #define STARPU_USE_ERAND48_R 1
  8336. | #define STARPU_HAVE_STRERROR_R 1
  8337. | #define STARPU_HAVE_SETENV 1
  8338. | #define STARPU_HAVE_UNSETENV 1
  8339. | #define STARPU_HAVE_NEARBYINTF 1
  8340. | #define STARPU_HAVE_RINTF 1
  8341. | #define HAVE_MALLOC_H 1
  8342. | #define STARPU_HAVE_MALLOC_H 1
  8343. | #define STARPU_HAVE_SCHED_YIELD 1
  8344. | #define HAVE_AIO_H 1
  8345. | #define HAVE_LIBRT 1
  8346. | #define HAVE_MKOSTEMP 1
  8347. | #define HAVE_MKDTEMP 1
  8348. | #define HAVE_PREAD 1
  8349. | #define HAVE_PWRITE 1
  8350. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8351. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8352. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8353. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8354. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8355. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8356. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8357. | #define STARPU_NMAX_SCHED_CTXS 10
  8358. | #define STARPU_MAXCPUS 64
  8359. | #define STARPU_USE_CPU 1
  8360. | #define STARPU_MAXCUDADEVS 4
  8361. | #define STARPU_MAXOPENCLDEVS 8
  8362. | #define STARPU_MAXMICDEVS 0
  8363. | #define STARPU_MAXMICCORES 120
  8364. | #define STARPU_NMAXBUFS 8
  8365. | #define STARPU_MAXNODES 16
  8366. | #define STARPU_USE_ALLOCATION_CACHE 1
  8367. | #define HAVE_LIBRT 1
  8368. | #define HAVE_CLOCK_GETTIME 1
  8369. | #define STARPU_NMAXWORKERS 80
  8370. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8371. | #define STARPU_MAXIMPLEMENTATIONS 4
  8372. | #define STARPU_HISTORYMAXERROR 50
  8373. | #define STARPU_MAXMPKERNELS 10
  8374. | #define STARPU_OPENMP 1
  8375. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8376. | #define STARPU_HAVE_X11 1
  8377. | #define STARPU_HAVE_HWLOC 1
  8378. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8379. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8380. | /* end confdefs.h. */
  8381. | #include <f77.h>
  8382. configure:36324: result: no
  8383. configure:36324: checking for f77.h
  8384. configure:36324: result: no
  8385. configure:36363: checking for icc
  8386. configure:36393: result: no
  8387. configure:36462: checking for help2man
  8388. configure:36492: result: no
  8389. configure:36513: checking for struct cudaDeviceProp.pciDomainID
  8390. configure:36513: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  8391. conftest.c:103:10: fatal error: cuda_runtime_api.h: No such file or directory
  8392. #include <cuda_runtime_api.h>
  8393. ^~~~~~~~~~~~~~~~~~~~
  8394. compilation terminated.
  8395. configure:36513: $? = 1
  8396. configure: failed program was:
  8397. | /* confdefs.h */
  8398. | #define PACKAGE_NAME "StarPU"
  8399. | #define PACKAGE_TARNAME "starpu"
  8400. | #define PACKAGE_VERSION "1.3.99"
  8401. | #define PACKAGE_STRING "StarPU 1.3.99"
  8402. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  8403. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  8404. | #define STARPU_MAJOR_VERSION 1
  8405. | #define STARPU_MINOR_VERSION 3
  8406. | #define STARPU_RELEASE_VERSION 99
  8407. | #define PACKAGE "starpu"
  8408. | #define VERSION "1.3.99"
  8409. | #define STARPU_AUTOFPGA 1
  8410. | #define STARPU_MAXFPGADEVS 12
  8411. | #define STARPU_USE_FPGA 1
  8412. | #define STDC_HEADERS 1
  8413. | #define HAVE_SYS_TYPES_H 1
  8414. | #define HAVE_SYS_STAT_H 1
  8415. | #define HAVE_STDLIB_H 1
  8416. | #define HAVE_STRING_H 1
  8417. | #define HAVE_MEMORY_H 1
  8418. | #define HAVE_STRINGS_H 1
  8419. | #define HAVE_INTTYPES_H 1
  8420. | #define HAVE_STDINT_H 1
  8421. | #define HAVE_UNISTD_H 1
  8422. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8423. | #define STARPU_MAXMPIDEVS 0
  8424. | #define HAVE_CXX11 1
  8425. | #define STARPU_HAVE_CXX11 1
  8426. | #define HAVE_DLFCN_H 1
  8427. | #define LT_OBJDIR ".libs/"
  8428. | #define STDC_HEADERS 1
  8429. | #define restrict __restrict
  8430. | #define STARPU_MIC_USE_RMA 1
  8431. | #define STARPU_MAXNUMANODES 2
  8432. | #define STARPU_LINUX_SYS 1
  8433. | #define SIZEOF_VOID_P 8
  8434. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8435. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8436. | #define HAVE_UNISTD_H 1
  8437. | #define STARPU_HAVE_UNISTD_H 1
  8438. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8439. | #define HAVE_LIBPTHREAD 1
  8440. | #define HAVE_SYSCONF 1
  8441. | #define HAVE_GETRLIMIT 1
  8442. | #define HAVE_SCANDIR 1
  8443. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8444. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8445. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8446. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8447. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8448. | #define HAVE_POSIX_MEMALIGN 1
  8449. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8450. | #define HAVE_MEMALIGN 1
  8451. | #define STARPU_HAVE_MEMALIGN 1
  8452. | #define STARPU_USE_DRAND48 1
  8453. | #define STARPU_USE_ERAND48_R 1
  8454. | #define STARPU_HAVE_STRERROR_R 1
  8455. | #define STARPU_HAVE_SETENV 1
  8456. | #define STARPU_HAVE_UNSETENV 1
  8457. | #define STARPU_HAVE_NEARBYINTF 1
  8458. | #define STARPU_HAVE_RINTF 1
  8459. | #define HAVE_MALLOC_H 1
  8460. | #define STARPU_HAVE_MALLOC_H 1
  8461. | #define STARPU_HAVE_SCHED_YIELD 1
  8462. | #define HAVE_AIO_H 1
  8463. | #define HAVE_LIBRT 1
  8464. | #define HAVE_MKOSTEMP 1
  8465. | #define HAVE_MKDTEMP 1
  8466. | #define HAVE_PREAD 1
  8467. | #define HAVE_PWRITE 1
  8468. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8469. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8470. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8471. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8472. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8473. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8474. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8475. | #define STARPU_NMAX_SCHED_CTXS 10
  8476. | #define STARPU_MAXCPUS 64
  8477. | #define STARPU_USE_CPU 1
  8478. | #define STARPU_MAXCUDADEVS 4
  8479. | #define STARPU_MAXOPENCLDEVS 8
  8480. | #define STARPU_MAXMICDEVS 0
  8481. | #define STARPU_MAXMICCORES 120
  8482. | #define STARPU_NMAXBUFS 8
  8483. | #define STARPU_MAXNODES 16
  8484. | #define STARPU_USE_ALLOCATION_CACHE 1
  8485. | #define HAVE_LIBRT 1
  8486. | #define HAVE_CLOCK_GETTIME 1
  8487. | #define STARPU_NMAXWORKERS 80
  8488. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8489. | #define STARPU_MAXIMPLEMENTATIONS 4
  8490. | #define STARPU_HISTORYMAXERROR 50
  8491. | #define STARPU_MAXMPKERNELS 10
  8492. | #define STARPU_OPENMP 1
  8493. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8494. | #define STARPU_HAVE_X11 1
  8495. | #define STARPU_HAVE_HWLOC 1
  8496. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8497. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8498. | /* end confdefs.h. */
  8499. | #include <cuda_runtime_api.h>
  8500. |
  8501. | int
  8502. | main ()
  8503. | {
  8504. | static struct cudaDeviceProp ac_aggr;
  8505. | if (ac_aggr.pciDomainID)
  8506. | return 0;
  8507. | ;
  8508. | return 0;
  8509. | }
  8510. configure:36513: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  8511. conftest.c:103:10: fatal error: cuda_runtime_api.h: No such file or directory
  8512. #include <cuda_runtime_api.h>
  8513. ^~~~~~~~~~~~~~~~~~~~
  8514. compilation terminated.
  8515. configure:36513: $? = 1
  8516. configure: failed program was:
  8517. | /* confdefs.h */
  8518. | #define PACKAGE_NAME "StarPU"
  8519. | #define PACKAGE_TARNAME "starpu"
  8520. | #define PACKAGE_VERSION "1.3.99"
  8521. | #define PACKAGE_STRING "StarPU 1.3.99"
  8522. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  8523. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  8524. | #define STARPU_MAJOR_VERSION 1
  8525. | #define STARPU_MINOR_VERSION 3
  8526. | #define STARPU_RELEASE_VERSION 99
  8527. | #define PACKAGE "starpu"
  8528. | #define VERSION "1.3.99"
  8529. | #define STARPU_AUTOFPGA 1
  8530. | #define STARPU_MAXFPGADEVS 12
  8531. | #define STARPU_USE_FPGA 1
  8532. | #define STDC_HEADERS 1
  8533. | #define HAVE_SYS_TYPES_H 1
  8534. | #define HAVE_SYS_STAT_H 1
  8535. | #define HAVE_STDLIB_H 1
  8536. | #define HAVE_STRING_H 1
  8537. | #define HAVE_MEMORY_H 1
  8538. | #define HAVE_STRINGS_H 1
  8539. | #define HAVE_INTTYPES_H 1
  8540. | #define HAVE_STDINT_H 1
  8541. | #define HAVE_UNISTD_H 1
  8542. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8543. | #define STARPU_MAXMPIDEVS 0
  8544. | #define HAVE_CXX11 1
  8545. | #define STARPU_HAVE_CXX11 1
  8546. | #define HAVE_DLFCN_H 1
  8547. | #define LT_OBJDIR ".libs/"
  8548. | #define STDC_HEADERS 1
  8549. | #define restrict __restrict
  8550. | #define STARPU_MIC_USE_RMA 1
  8551. | #define STARPU_MAXNUMANODES 2
  8552. | #define STARPU_LINUX_SYS 1
  8553. | #define SIZEOF_VOID_P 8
  8554. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8555. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8556. | #define HAVE_UNISTD_H 1
  8557. | #define STARPU_HAVE_UNISTD_H 1
  8558. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8559. | #define HAVE_LIBPTHREAD 1
  8560. | #define HAVE_SYSCONF 1
  8561. | #define HAVE_GETRLIMIT 1
  8562. | #define HAVE_SCANDIR 1
  8563. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8564. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8565. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8566. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8567. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8568. | #define HAVE_POSIX_MEMALIGN 1
  8569. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8570. | #define HAVE_MEMALIGN 1
  8571. | #define STARPU_HAVE_MEMALIGN 1
  8572. | #define STARPU_USE_DRAND48 1
  8573. | #define STARPU_USE_ERAND48_R 1
  8574. | #define STARPU_HAVE_STRERROR_R 1
  8575. | #define STARPU_HAVE_SETENV 1
  8576. | #define STARPU_HAVE_UNSETENV 1
  8577. | #define STARPU_HAVE_NEARBYINTF 1
  8578. | #define STARPU_HAVE_RINTF 1
  8579. | #define HAVE_MALLOC_H 1
  8580. | #define STARPU_HAVE_MALLOC_H 1
  8581. | #define STARPU_HAVE_SCHED_YIELD 1
  8582. | #define HAVE_AIO_H 1
  8583. | #define HAVE_LIBRT 1
  8584. | #define HAVE_MKOSTEMP 1
  8585. | #define HAVE_MKDTEMP 1
  8586. | #define HAVE_PREAD 1
  8587. | #define HAVE_PWRITE 1
  8588. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8589. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8590. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8591. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8592. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8593. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8594. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8595. | #define STARPU_NMAX_SCHED_CTXS 10
  8596. | #define STARPU_MAXCPUS 64
  8597. | #define STARPU_USE_CPU 1
  8598. | #define STARPU_MAXCUDADEVS 4
  8599. | #define STARPU_MAXOPENCLDEVS 8
  8600. | #define STARPU_MAXMICDEVS 0
  8601. | #define STARPU_MAXMICCORES 120
  8602. | #define STARPU_NMAXBUFS 8
  8603. | #define STARPU_MAXNODES 16
  8604. | #define STARPU_USE_ALLOCATION_CACHE 1
  8605. | #define HAVE_LIBRT 1
  8606. | #define HAVE_CLOCK_GETTIME 1
  8607. | #define STARPU_NMAXWORKERS 80
  8608. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8609. | #define STARPU_MAXIMPLEMENTATIONS 4
  8610. | #define STARPU_HISTORYMAXERROR 50
  8611. | #define STARPU_MAXMPKERNELS 10
  8612. | #define STARPU_OPENMP 1
  8613. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8614. | #define STARPU_HAVE_X11 1
  8615. | #define STARPU_HAVE_HWLOC 1
  8616. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8617. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8618. | /* end confdefs.h. */
  8619. | #include <cuda_runtime_api.h>
  8620. |
  8621. | int
  8622. | main ()
  8623. | {
  8624. | static struct cudaDeviceProp ac_aggr;
  8625. | if (sizeof ac_aggr.pciDomainID)
  8626. | return 0;
  8627. | ;
  8628. | return 0;
  8629. | }
  8630. configure:36513: result: no
  8631. configure:36522: checking for struct cudaDeviceProp.pciBusID
  8632. configure:36522: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  8633. conftest.c:103:10: fatal error: cuda_runtime_api.h: No such file or directory
  8634. #include <cuda_runtime_api.h>
  8635. ^~~~~~~~~~~~~~~~~~~~
  8636. compilation terminated.
  8637. configure:36522: $? = 1
  8638. configure: failed program was:
  8639. | /* confdefs.h */
  8640. | #define PACKAGE_NAME "StarPU"
  8641. | #define PACKAGE_TARNAME "starpu"
  8642. | #define PACKAGE_VERSION "1.3.99"
  8643. | #define PACKAGE_STRING "StarPU 1.3.99"
  8644. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  8645. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  8646. | #define STARPU_MAJOR_VERSION 1
  8647. | #define STARPU_MINOR_VERSION 3
  8648. | #define STARPU_RELEASE_VERSION 99
  8649. | #define PACKAGE "starpu"
  8650. | #define VERSION "1.3.99"
  8651. | #define STARPU_AUTOFPGA 1
  8652. | #define STARPU_MAXFPGADEVS 12
  8653. | #define STARPU_USE_FPGA 1
  8654. | #define STDC_HEADERS 1
  8655. | #define HAVE_SYS_TYPES_H 1
  8656. | #define HAVE_SYS_STAT_H 1
  8657. | #define HAVE_STDLIB_H 1
  8658. | #define HAVE_STRING_H 1
  8659. | #define HAVE_MEMORY_H 1
  8660. | #define HAVE_STRINGS_H 1
  8661. | #define HAVE_INTTYPES_H 1
  8662. | #define HAVE_STDINT_H 1
  8663. | #define HAVE_UNISTD_H 1
  8664. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8665. | #define STARPU_MAXMPIDEVS 0
  8666. | #define HAVE_CXX11 1
  8667. | #define STARPU_HAVE_CXX11 1
  8668. | #define HAVE_DLFCN_H 1
  8669. | #define LT_OBJDIR ".libs/"
  8670. | #define STDC_HEADERS 1
  8671. | #define restrict __restrict
  8672. | #define STARPU_MIC_USE_RMA 1
  8673. | #define STARPU_MAXNUMANODES 2
  8674. | #define STARPU_LINUX_SYS 1
  8675. | #define SIZEOF_VOID_P 8
  8676. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8677. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8678. | #define HAVE_UNISTD_H 1
  8679. | #define STARPU_HAVE_UNISTD_H 1
  8680. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8681. | #define HAVE_LIBPTHREAD 1
  8682. | #define HAVE_SYSCONF 1
  8683. | #define HAVE_GETRLIMIT 1
  8684. | #define HAVE_SCANDIR 1
  8685. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8686. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8687. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8688. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8689. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8690. | #define HAVE_POSIX_MEMALIGN 1
  8691. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8692. | #define HAVE_MEMALIGN 1
  8693. | #define STARPU_HAVE_MEMALIGN 1
  8694. | #define STARPU_USE_DRAND48 1
  8695. | #define STARPU_USE_ERAND48_R 1
  8696. | #define STARPU_HAVE_STRERROR_R 1
  8697. | #define STARPU_HAVE_SETENV 1
  8698. | #define STARPU_HAVE_UNSETENV 1
  8699. | #define STARPU_HAVE_NEARBYINTF 1
  8700. | #define STARPU_HAVE_RINTF 1
  8701. | #define HAVE_MALLOC_H 1
  8702. | #define STARPU_HAVE_MALLOC_H 1
  8703. | #define STARPU_HAVE_SCHED_YIELD 1
  8704. | #define HAVE_AIO_H 1
  8705. | #define HAVE_LIBRT 1
  8706. | #define HAVE_MKOSTEMP 1
  8707. | #define HAVE_MKDTEMP 1
  8708. | #define HAVE_PREAD 1
  8709. | #define HAVE_PWRITE 1
  8710. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8711. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8712. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8713. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8714. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8715. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8716. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8717. | #define STARPU_NMAX_SCHED_CTXS 10
  8718. | #define STARPU_MAXCPUS 64
  8719. | #define STARPU_USE_CPU 1
  8720. | #define STARPU_MAXCUDADEVS 4
  8721. | #define STARPU_MAXOPENCLDEVS 8
  8722. | #define STARPU_MAXMICDEVS 0
  8723. | #define STARPU_MAXMICCORES 120
  8724. | #define STARPU_NMAXBUFS 8
  8725. | #define STARPU_MAXNODES 16
  8726. | #define STARPU_USE_ALLOCATION_CACHE 1
  8727. | #define HAVE_LIBRT 1
  8728. | #define HAVE_CLOCK_GETTIME 1
  8729. | #define STARPU_NMAXWORKERS 80
  8730. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8731. | #define STARPU_MAXIMPLEMENTATIONS 4
  8732. | #define STARPU_HISTORYMAXERROR 50
  8733. | #define STARPU_MAXMPKERNELS 10
  8734. | #define STARPU_OPENMP 1
  8735. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8736. | #define STARPU_HAVE_X11 1
  8737. | #define STARPU_HAVE_HWLOC 1
  8738. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8739. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8740. | /* end confdefs.h. */
  8741. | #include <cuda_runtime_api.h>
  8742. |
  8743. | int
  8744. | main ()
  8745. | {
  8746. | static struct cudaDeviceProp ac_aggr;
  8747. | if (ac_aggr.pciBusID)
  8748. | return 0;
  8749. | ;
  8750. | return 0;
  8751. | }
  8752. configure:36522: gcc -c -O3 -g -O2 -gdwarf-2 -g3 -g -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1 conftest.c >&5
  8753. conftest.c:103:10: fatal error: cuda_runtime_api.h: No such file or directory
  8754. #include <cuda_runtime_api.h>
  8755. ^~~~~~~~~~~~~~~~~~~~
  8756. compilation terminated.
  8757. configure:36522: $? = 1
  8758. configure: failed program was:
  8759. | /* confdefs.h */
  8760. | #define PACKAGE_NAME "StarPU"
  8761. | #define PACKAGE_TARNAME "starpu"
  8762. | #define PACKAGE_VERSION "1.3.99"
  8763. | #define PACKAGE_STRING "StarPU 1.3.99"
  8764. | #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  8765. | #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  8766. | #define STARPU_MAJOR_VERSION 1
  8767. | #define STARPU_MINOR_VERSION 3
  8768. | #define STARPU_RELEASE_VERSION 99
  8769. | #define PACKAGE "starpu"
  8770. | #define VERSION "1.3.99"
  8771. | #define STARPU_AUTOFPGA 1
  8772. | #define STARPU_MAXFPGADEVS 12
  8773. | #define STARPU_USE_FPGA 1
  8774. | #define STDC_HEADERS 1
  8775. | #define HAVE_SYS_TYPES_H 1
  8776. | #define HAVE_SYS_STAT_H 1
  8777. | #define HAVE_STDLIB_H 1
  8778. | #define HAVE_STRING_H 1
  8779. | #define HAVE_MEMORY_H 1
  8780. | #define HAVE_STRINGS_H 1
  8781. | #define HAVE_INTTYPES_H 1
  8782. | #define HAVE_STDINT_H 1
  8783. | #define HAVE_UNISTD_H 1
  8784. | #define STARPU_NON_BLOCKING_DRIVERS 1
  8785. | #define STARPU_MAXMPIDEVS 0
  8786. | #define HAVE_CXX11 1
  8787. | #define STARPU_HAVE_CXX11 1
  8788. | #define HAVE_DLFCN_H 1
  8789. | #define LT_OBJDIR ".libs/"
  8790. | #define STDC_HEADERS 1
  8791. | #define restrict __restrict
  8792. | #define STARPU_MIC_USE_RMA 1
  8793. | #define STARPU_MAXNUMANODES 2
  8794. | #define STARPU_LINUX_SYS 1
  8795. | #define SIZEOF_VOID_P 8
  8796. | #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  8797. | #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  8798. | #define HAVE_UNISTD_H 1
  8799. | #define STARPU_HAVE_UNISTD_H 1
  8800. | #define STARPU_HAVE_STRUCT_TIMESPEC 1
  8801. | #define HAVE_LIBPTHREAD 1
  8802. | #define HAVE_SYSCONF 1
  8803. | #define HAVE_GETRLIMIT 1
  8804. | #define HAVE_SCANDIR 1
  8805. | #define HAVE_PTHREAD_SPIN_LOCK 1
  8806. | #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  8807. | #define STARPU_HAVE_PTHREAD_BARRIER 1
  8808. | #define HAVE_PTHREAD_SETAFFINITY_NP 1
  8809. | #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  8810. | #define HAVE_POSIX_MEMALIGN 1
  8811. | #define STARPU_HAVE_POSIX_MEMALIGN 1
  8812. | #define HAVE_MEMALIGN 1
  8813. | #define STARPU_HAVE_MEMALIGN 1
  8814. | #define STARPU_USE_DRAND48 1
  8815. | #define STARPU_USE_ERAND48_R 1
  8816. | #define STARPU_HAVE_STRERROR_R 1
  8817. | #define STARPU_HAVE_SETENV 1
  8818. | #define STARPU_HAVE_UNSETENV 1
  8819. | #define STARPU_HAVE_NEARBYINTF 1
  8820. | #define STARPU_HAVE_RINTF 1
  8821. | #define HAVE_MALLOC_H 1
  8822. | #define STARPU_HAVE_MALLOC_H 1
  8823. | #define STARPU_HAVE_SCHED_YIELD 1
  8824. | #define HAVE_AIO_H 1
  8825. | #define HAVE_LIBRT 1
  8826. | #define HAVE_MKOSTEMP 1
  8827. | #define HAVE_MKDTEMP 1
  8828. | #define HAVE_PREAD 1
  8829. | #define HAVE_PWRITE 1
  8830. | #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  8831. | #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  8832. | #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  8833. | #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  8834. | #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  8835. | #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  8836. | #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  8837. | #define STARPU_NMAX_SCHED_CTXS 10
  8838. | #define STARPU_MAXCPUS 64
  8839. | #define STARPU_USE_CPU 1
  8840. | #define STARPU_MAXCUDADEVS 4
  8841. | #define STARPU_MAXOPENCLDEVS 8
  8842. | #define STARPU_MAXMICDEVS 0
  8843. | #define STARPU_MAXMICCORES 120
  8844. | #define STARPU_NMAXBUFS 8
  8845. | #define STARPU_MAXNODES 16
  8846. | #define STARPU_USE_ALLOCATION_CACHE 1
  8847. | #define HAVE_LIBRT 1
  8848. | #define HAVE_CLOCK_GETTIME 1
  8849. | #define STARPU_NMAXWORKERS 80
  8850. | #define STARPU_NMAX_COMBINEDWORKERS 64
  8851. | #define STARPU_MAXIMPLEMENTATIONS 4
  8852. | #define STARPU_HISTORYMAXERROR 50
  8853. | #define STARPU_MAXMPKERNELS 10
  8854. | #define STARPU_OPENMP 1
  8855. | #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  8856. | #define STARPU_HAVE_X11 1
  8857. | #define STARPU_HAVE_HWLOC 1
  8858. | #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  8859. | #define HAVE_HWLOC_TOPOLOGY_DUP 1
  8860. | /* end confdefs.h. */
  8861. | #include <cuda_runtime_api.h>
  8862. |
  8863. | int
  8864. | main ()
  8865. | {
  8866. | static struct cudaDeviceProp ac_aggr;
  8867. | if (sizeof ac_aggr.pciBusID)
  8868. | return 0;
  8869. | ;
  8870. | return 0;
  8871. | }
  8872. configure:36522: result: no
  8873. configure:36877: checking for doxygen
  8874. configure:36910: result: no
  8875. configure:36920: checking for pdflatex
  8876. configure:36938: found /usr/bin/pdflatex
  8877. configure:36950: result: /usr/bin/pdflatex
  8878. configure:36963: checking for epstopdf
  8879. configure:36996: result: no
  8880. configure:37010: checking whether documentation should be compiled
  8881. configure:37012: result: no
  8882. configure:37014: checking whether documentation is available
  8883. configure:37016: result: no
  8884. configure:37204: checking that generated files are newer than configure
  8885. configure:37210: result: done
  8886. configure:37533: creating ./config.status
  8887. ## ---------------------- ##
  8888. ## Running config.status. ##
  8889. ## ---------------------- ##
  8890. This file was extended by StarPU config.status 1.3.99, which was
  8891. generated by GNU Autoconf 2.69. Invocation command line was
  8892. CONFIG_FILES =
  8893. CONFIG_HEADERS =
  8894. CONFIG_LINKS =
  8895. CONFIG_COMMANDS =
  8896. $ ./config.status
  8897. on jumaxbuild1
  8898. config.status:1701: creating tests/regression/regression.sh
  8899. config.status:1701: creating tests/regression/profiles
  8900. config.status:1701: creating tests/regression/profiles.build.only
  8901. config.status:1701: creating Makefile
  8902. config.status:1701: creating src/Makefile
  8903. config.status:1701: creating tools/Makefile
  8904. config.status:1701: creating tools/starpu_codelet_profile
  8905. config.status:1701: creating tools/starpu_codelet_histo_profile
  8906. config.status:1701: creating tools/starpu_mpi_comm_matrix.py
  8907. config.status:1701: creating tools/starpu_workers_activity
  8908. config.status:1701: creating tools/starpu_paje_draw_histogram
  8909. config.status:1701: creating tools/starpu_paje_state_stats
  8910. config.status:1701: creating tools/starpu_paje_summary
  8911. config.status:1701: creating tools/starpu_mlr_analysis
  8912. config.status:1701: creating tools/starpu_paje_sort
  8913. config.status:1701: creating tools/starpu_smpirun
  8914. config.status:1701: creating socl/Makefile
  8915. config.status:1701: creating socl/src/Makefile
  8916. config.status:1701: creating socl/examples/Makefile
  8917. config.status:1701: creating socl/vendors/socl.icd
  8918. config.status:1701: creating socl/vendors/install/socl.icd
  8919. config.status:1701: creating libstarpu.pc
  8920. config.status:1701: creating starpu-1.0.pc
  8921. config.status:1701: creating starpu-1.1.pc
  8922. config.status:1701: creating starpu-1.2.pc
  8923. config.status:1701: creating starpu-1.3.pc
  8924. config.status:1701: creating mpi/libstarpumpi.pc
  8925. config.status:1701: creating mpi/starpumpi-1.0.pc
  8926. config.status:1701: creating mpi/starpumpi-1.1.pc
  8927. config.status:1701: creating mpi/starpumpi-1.2.pc
  8928. config.status:1701: creating mpi/starpumpi-1.3.pc
  8929. config.status:1701: creating starpufft/Makefile
  8930. config.status:1701: creating starpufft/src/Makefile
  8931. config.status:1701: creating starpufft/tests/Makefile
  8932. config.status:1701: creating starpufft/libstarpufft.pc
  8933. config.status:1701: creating starpufft/starpufft-1.0.pc
  8934. config.status:1701: creating starpufft/starpufft-1.1.pc
  8935. config.status:1701: creating starpufft/starpufft-1.2.pc
  8936. config.status:1701: creating starpufft/starpufft-1.3.pc
  8937. config.status:1701: creating starpurm/Makefile
  8938. config.status:1701: creating starpurm/src/Makefile
  8939. config.status:1701: creating starpurm/examples/Makefile
  8940. config.status:1701: creating starpurm/starpurm-1.3.pc
  8941. config.status:1701: creating examples/Makefile
  8942. config.status:1701: creating examples/stencil/Makefile
  8943. config.status:1701: creating tests/Makefile
  8944. config.status:1701: creating tests/loader-cross.sh
  8945. config.status:1701: creating tests/model-checking/starpu-mc.sh
  8946. config.status:1701: creating examples/loader-cross.sh
  8947. config.status:1701: creating examples/stencil/loader-cross.sh
  8948. config.status:1701: creating mpi/Makefile
  8949. config.status:1701: creating mpi/src/Makefile
  8950. config.status:1701: creating mpi/tests/Makefile
  8951. config.status:1701: creating mpi/examples/Makefile
  8952. config.status:1701: creating sc_hypervisor/Makefile
  8953. config.status:1701: creating sc_hypervisor/src/Makefile
  8954. config.status:1701: creating sc_hypervisor/examples/Makefile
  8955. config.status:1701: creating doc/Makefile
  8956. config.status:1701: creating doc/doxygen/Makefile
  8957. config.status:1701: creating doc/doxygen/doxygen-config.cfg
  8958. config.status:1701: creating doc/doxygen/doxygen_filter.sh
  8959. config.status:1701: creating doc/doxygen_dev/Makefile
  8960. config.status:1701: creating doc/doxygen_dev/doxygen-config.cfg
  8961. config.status:1701: creating doc/doxygen_dev/doxygen_filter.sh
  8962. config.status:1701: creating tools/msvc/starpu_var.bat
  8963. config.status:1701: creating min-dgels/Makefile
  8964. config.status:1701: creating src/common/config.h
  8965. config.status:1701: creating include/starpu_config.h
  8966. config.status:1701: creating starpurm/include/starpurm_config.h
  8967. config.status:1867: starpurm/include/starpurm_config.h is unchanged
  8968. config.status:1946: executing depfiles commands
  8969. config.status:1946: executing libtool commands
  8970. config.status:1946: executing executable-scripts commands
  8971. configure:40711:
  8972. CPUs enabled: yes
  8973. CUDA enabled: no
  8974. OpenCL enabled: no
  8975. Fpga enabled: yes
  8976. MIC enabled: no
  8977. Compile-time limits
  8978. (change these with --enable-maxcpus, --enable-maxcudadev,
  8979. --enable-maxopencldev, --enable-maxfpgadev, --enable-maxmicdev, --enable-maxnodes,
  8980. --enable-maxbuffers)
  8981. (Note these numbers do not represent the number of detected
  8982. devices, but the maximum number of devices StarPU can manage)
  8983. Maximum number of CPUs: 64
  8984. Maximum number of CUDA devices: 0
  8985. Maximum number of OpenCL devices: 0
  8986. Maximum number of Fpga devices: 12
  8987. Maximum number of MIC threads: 0
  8988. Maximum number of MPI master-slave devices: 1
  8989. Maximum number of memory nodes: 16
  8990. Maximum number of task buffers: 8
  8991. GPU-GPU transfers: no
  8992. Allocation cache: yes
  8993. Magma enabled: no
  8994. BLAS library: none
  8995. hwloc: yes
  8996. FxT trace enabled: no
  8997. Documentation: no
  8998. Examples: yes
  8999. StarPU Extensions:
  9000. StarPU MPI enabled: no
  9001. StarPU MPI(nmad) enabled: no
  9002. MPI test suite: no
  9003. Master-Slave MPI enabled: no
  9004. FFT Support: no
  9005. Resource Management enable: no
  9006. OpenMP runtime support enabled: yes
  9007. Cluster support enabled: no
  9008. SOCL enabled: no
  9009. SOCL test suite: no
  9010. Scheduler Hypervisor: no
  9011. simgrid enabled: no
  9012. ayudame enabled: no
  9013. Native fortran support: no
  9014. Native MPI fortran support: no
  9015. Support for multiple linear regression models: no
  9016. ## ---------------- ##
  9017. ## Cache variables. ##
  9018. ## ---------------- ##
  9019. ac_cv_build=x86_64-unknown-linux-gnu
  9020. ac_cv_c_compiler_gnu=yes
  9021. ac_cv_c_restrict=__restrict
  9022. ac_cv_cxx_compiler_gnu=yes
  9023. ac_cv_env_BLAS_LIBS_set=
  9024. ac_cv_env_BLAS_LIBS_value=
  9025. ac_cv_env_BLAS_OPENBLAS_CFLAGS_set=
  9026. ac_cv_env_BLAS_OPENBLAS_CFLAGS_value=
  9027. ac_cv_env_BLAS_OPENBLAS_LIBS_set=
  9028. ac_cv_env_BLAS_OPENBLAS_LIBS_value=
  9029. ac_cv_env_CCC_set=
  9030. ac_cv_env_CCC_value=
  9031. ac_cv_env_CC_set=
  9032. ac_cv_env_CC_value=
  9033. ac_cv_env_CFLAGS_set=
  9034. ac_cv_env_CFLAGS_value=
  9035. ac_cv_env_CPPFLAGS_set=
  9036. ac_cv_env_CPPFLAGS_value=
  9037. ac_cv_env_CPP_set=
  9038. ac_cv_env_CPP_value=
  9039. ac_cv_env_CXXCPP_set=
  9040. ac_cv_env_CXXCPP_value=
  9041. ac_cv_env_CXXFLAGS_set=
  9042. ac_cv_env_CXXFLAGS_value=
  9043. ac_cv_env_CXX_set=
  9044. ac_cv_env_CXX_value=
  9045. ac_cv_env_DGELS_LIBS_set=
  9046. ac_cv_env_DGELS_LIBS_value=
  9047. ac_cv_env_F77_set=
  9048. ac_cv_env_F77_value=
  9049. ac_cv_env_FCFLAGS_set=
  9050. ac_cv_env_FCFLAGS_value=
  9051. ac_cv_env_FC_set=
  9052. ac_cv_env_FC_value=
  9053. ac_cv_env_FFLAGS_set=
  9054. ac_cv_env_FFLAGS_value=
  9055. ac_cv_env_FFTWF_CFLAGS_set=
  9056. ac_cv_env_FFTWF_CFLAGS_value=
  9057. ac_cv_env_FFTWF_LIBS_set=
  9058. ac_cv_env_FFTWF_LIBS_value=
  9059. ac_cv_env_FFTWL_CFLAGS_set=
  9060. ac_cv_env_FFTWL_CFLAGS_value=
  9061. ac_cv_env_FFTWL_LIBS_set=
  9062. ac_cv_env_FFTWL_LIBS_value=
  9063. ac_cv_env_FFTW_CFLAGS_set=
  9064. ac_cv_env_FFTW_CFLAGS_value=
  9065. ac_cv_env_FFTW_LIBS_set=
  9066. ac_cv_env_FFTW_LIBS_value=
  9067. ac_cv_env_FXT_CFLAGS_set=
  9068. ac_cv_env_FXT_CFLAGS_value=
  9069. ac_cv_env_FXT_LDFLAGS_set=
  9070. ac_cv_env_FXT_LDFLAGS_value=
  9071. ac_cv_env_FXT_LIBS_set=
  9072. ac_cv_env_FXT_LIBS_value=
  9073. ac_cv_env_HWLOC_CFLAGS_set=
  9074. ac_cv_env_HWLOC_CFLAGS_value=
  9075. ac_cv_env_HWLOC_LIBS_set=
  9076. ac_cv_env_HWLOC_LIBS_value=
  9077. ac_cv_env_LDFLAGS_set=
  9078. ac_cv_env_LDFLAGS_value=
  9079. ac_cv_env_LIBS_set=
  9080. ac_cv_env_LIBS_value=
  9081. ac_cv_env_MAGMA_CFLAGS_set=
  9082. ac_cv_env_MAGMA_CFLAGS_value=
  9083. ac_cv_env_MAGMA_LIBS_set=
  9084. ac_cv_env_MAGMA_LIBS_value=
  9085. ac_cv_env_NMAD_CFLAGS_set=
  9086. ac_cv_env_NMAD_CFLAGS_value=
  9087. ac_cv_env_NMAD_LIBS_set=
  9088. ac_cv_env_NMAD_LIBS_value=
  9089. ac_cv_env_NVCCFLAGS_set=
  9090. ac_cv_env_NVCCFLAGS_value=
  9091. ac_cv_env_NVCC_CC_set=
  9092. ac_cv_env_NVCC_CC_value=
  9093. ac_cv_env_NVCC_set=
  9094. ac_cv_env_NVCC_value=
  9095. ac_cv_env_OPENBLAS_CFLAGS_set=
  9096. ac_cv_env_OPENBLAS_CFLAGS_value=
  9097. ac_cv_env_OPENBLAS_LIBS_set=
  9098. ac_cv_env_OPENBLAS_LIBS_value=
  9099. ac_cv_env_PKG_CONFIG_set=
  9100. ac_cv_env_PKG_CONFIG_value=
  9101. ac_cv_env_POTI_CFLAGS_set=
  9102. ac_cv_env_POTI_CFLAGS_value=
  9103. ac_cv_env_POTI_LIBS_set=
  9104. ac_cv_env_POTI_LIBS_value=
  9105. ac_cv_env_STARPU_MS_LIB_set=
  9106. ac_cv_env_STARPU_MS_LIB_value=
  9107. ac_cv_env_XMKMF_set=
  9108. ac_cv_env_XMKMF_value=
  9109. ac_cv_env_build_alias_set=
  9110. ac_cv_env_build_alias_value=
  9111. ac_cv_env_host_alias_set=
  9112. ac_cv_env_host_alias_value=
  9113. ac_cv_env_target_alias_set=
  9114. ac_cv_env_target_alias_value=
  9115. ac_cv_f77_compiler_gnu=yes
  9116. ac_cv_fc_compiler_gnu=yes
  9117. ac_cv_func_clEnqueueMarkerWithWaitList=no
  9118. ac_cv_func_clock_gettime=yes
  9119. ac_cv_func_connect=yes
  9120. ac_cv_func_copy_file_range=no
  9121. ac_cv_func_drand48=yes
  9122. ac_cv_func_erand48_r=yes
  9123. ac_cv_func_gethostbyname=yes
  9124. ac_cv_func_getrlimit=yes
  9125. ac_cv_func_hwloc_topology_dup=yes
  9126. ac_cv_func_hwloc_topology_set_components=no
  9127. ac_cv_func_memalign=yes
  9128. ac_cv_func_mkdtemp=yes
  9129. ac_cv_func_mkostemp=yes
  9130. ac_cv_func_nearbyintf=yes
  9131. ac_cv_func_posix_memalign=yes
  9132. ac_cv_func_pread=yes
  9133. ac_cv_func_pthread_barrier_init=yes
  9134. ac_cv_func_pthread_setaffinity_np=yes
  9135. ac_cv_func_pthread_setname_np=yes
  9136. ac_cv_func_pthread_spin_lock=yes
  9137. ac_cv_func_pwrite=yes
  9138. ac_cv_func_remove=yes
  9139. ac_cv_func_rintf=yes
  9140. ac_cv_func_scandir=yes
  9141. ac_cv_func_sched_yield=yes
  9142. ac_cv_func_setenv=yes
  9143. ac_cv_func_shmat=yes
  9144. ac_cv_func_strerror_r=yes
  9145. ac_cv_func_sysconf=yes
  9146. ac_cv_func_unsetenv=yes
  9147. ac_cv_have_decl_hwloc_cuda_get_device_osdev_by_index=no
  9148. ac_cv_have_sync_bool_compare_and_swap=yes
  9149. ac_cv_have_sync_fetch_and_add=yes
  9150. ac_cv_have_sync_fetch_and_or=yes
  9151. ac_cv_have_sync_lock_test_and_set=yes
  9152. ac_cv_have_sync_synchronize=yes
  9153. ac_cv_have_sync_val_compare_and_swap=yes
  9154. ac_cv_have_x='have_x=yes ac_x_includes='\'''\'' ac_x_libraries='\'''\'''
  9155. ac_cv_header_Ayudame_h=no
  9156. ac_cv_header_aio_h=yes
  9157. ac_cv_header_ayudame_h=no
  9158. ac_cv_header_dlfcn_h=yes
  9159. ac_cv_header_f77_h=no
  9160. ac_cv_header_fpga_h=no
  9161. ac_cv_header_glpk_h=no
  9162. ac_cv_header_inttypes_h=yes
  9163. ac_cv_header_malloc_h=yes
  9164. ac_cv_header_memory_h=yes
  9165. ac_cv_header_stdc=yes
  9166. ac_cv_header_stdint_h=yes
  9167. ac_cv_header_stdlib_h=yes
  9168. ac_cv_header_string_h=yes
  9169. ac_cv_header_strings_h=yes
  9170. ac_cv_header_sys_stat_h=yes
  9171. ac_cv_header_sys_types_h=yes
  9172. ac_cv_header_unistd_h=yes
  9173. ac_cv_header_valgrind_helgrind_h=no
  9174. ac_cv_header_valgrind_memcheck_h=no
  9175. ac_cv_header_valgrind_valgrind_h=no
  9176. ac_cv_host=x86_64-unknown-linux-gnu
  9177. ac_cv_lib_ICE_IceConnectionNumber=no
  9178. ac_cv_lib_fpga=ac_cv_lib_fpga_main
  9179. ac_cv_lib_fpga_main=no
  9180. ac_cv_lib_glpk_main=no
  9181. ac_cv_lib_pthread_pthread_create=yes
  9182. ac_cv_lib_rt_aio_read=yes
  9183. ac_cv_lib_rt_clock_gettime=yes
  9184. ac_cv_lib_ws2_32=ac_cv_lib_ws2_32_main
  9185. ac_cv_lib_ws2_32_main=no
  9186. ac_cv_member_struct_cudaDeviceProp_pciBusID=no
  9187. ac_cv_member_struct_cudaDeviceProp_pciDomainID=no
  9188. ac_cv_objext=o
  9189. ac_cv_path_EGREP='/usr/bin/grep -E'
  9190. ac_cv_path_FGREP='/usr/bin/grep -F'
  9191. ac_cv_path_GDB=/opt/rh/devtoolset-8/root/usr/bin/gdb
  9192. ac_cv_path_GREP=/usr/bin/grep
  9193. ac_cv_path_REALBASH=/bin/bash
  9194. ac_cv_path_SED=/usr/bin/sed
  9195. ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
  9196. ac_cv_path_install='/usr/bin/install -c'
  9197. ac_cv_path_mkdir=/usr/bin/mkdir
  9198. ac_cv_path_mpicc_path=no
  9199. ac_cv_path_mpicxx_path=no
  9200. ac_cv_path_mpiexec_path=no
  9201. ac_cv_path_mpiexec_path_bis=no
  9202. ac_cv_path_pdflatexcommand=/usr/bin/pdflatex
  9203. ac_cv_prog_AWK=gawk
  9204. ac_cv_prog_CPP='gcc -E'
  9205. ac_cv_prog_CXXCPP='g++ -E'
  9206. ac_cv_prog_PROG_DATE=date
  9207. ac_cv_prog_PROG_STAT=gstat
  9208. ac_cv_prog_ac_ct_AR=ar
  9209. ac_cv_prog_ac_ct_CC=gcc
  9210. ac_cv_prog_ac_ct_CXX=g++
  9211. ac_cv_prog_ac_ct_F77=gfortran
  9212. ac_cv_prog_ac_ct_FC=gfortran
  9213. ac_cv_prog_ac_ct_OBJDUMP=objdump
  9214. ac_cv_prog_ac_ct_RANLIB=ranlib
  9215. ac_cv_prog_ac_ct_STRIP=strip
  9216. ac_cv_prog_cc_c89=
  9217. ac_cv_prog_cc_g=yes
  9218. ac_cv_prog_cc_gcc_c_o=yes
  9219. ac_cv_prog_cxx_g=yes
  9220. ac_cv_prog_f77_g=yes
  9221. ac_cv_prog_fc_g=yes
  9222. ac_cv_prog_make_make_set=yes
  9223. ac_cv_search_set_mempolicy=no
  9224. ac_cv_search_sgemm_=no
  9225. ac_cv_search_sqrt='none required'
  9226. ac_cv_sizeof_void_p=8
  9227. ac_cv_target=x86_64-unknown-linux-gnu
  9228. ac_cv_type_cufftDoubleComplex=no
  9229. ac_cv_type_struct_timespec=yes
  9230. am_cv_CC_dependencies_compiler_type=gcc3
  9231. am_cv_CXX_dependencies_compiler_type=gcc3
  9232. am_cv_ar_interface=ar
  9233. am_cv_make_support_nested_variables=yes
  9234. ax_cv_cxx_compile_cxx11=yes
  9235. lt_cv_ar_at_file=@
  9236. lt_cv_archive_cmds_need_lc=no
  9237. lt_cv_deplibs_check_method=pass_all
  9238. lt_cv_file_magic_cmd='$MAGIC_CMD'
  9239. lt_cv_file_magic_test_file=
  9240. lt_cv_ld_reload_flag=-r
  9241. lt_cv_nm_interface='BSD nm'
  9242. lt_cv_objdir=.libs
  9243. lt_cv_path_LD=/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld
  9244. lt_cv_path_LDCXX='/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64'
  9245. lt_cv_path_NM='/opt/rh/devtoolset-8/root/usr/bin/nm -B'
  9246. lt_cv_path_mainfest_tool=no
  9247. lt_cv_prog_compiler_c_o=yes
  9248. lt_cv_prog_compiler_c_o_CXX=yes
  9249. lt_cv_prog_compiler_c_o_F77=yes
  9250. lt_cv_prog_compiler_c_o_FC=yes
  9251. lt_cv_prog_compiler_pic='-fPIC -DPIC'
  9252. lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
  9253. lt_cv_prog_compiler_pic_F77=-fPIC
  9254. lt_cv_prog_compiler_pic_FC=-fPIC
  9255. lt_cv_prog_compiler_pic_works=yes
  9256. lt_cv_prog_compiler_pic_works_CXX=yes
  9257. lt_cv_prog_compiler_pic_works_F77=yes
  9258. lt_cv_prog_compiler_pic_works_FC=yes
  9259. lt_cv_prog_compiler_rtti_exceptions=no
  9260. lt_cv_prog_compiler_static_works=no
  9261. lt_cv_prog_compiler_static_works_CXX=no
  9262. lt_cv_prog_compiler_static_works_F77=no
  9263. lt_cv_prog_compiler_static_works_FC=no
  9264. lt_cv_prog_gnu_ld=yes
  9265. lt_cv_prog_gnu_ldcxx=yes
  9266. lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
  9267. lt_cv_shlibpath_overrides_runpath=no
  9268. lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
  9269. lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
  9270. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
  9271. lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
  9272. lt_cv_sys_max_cmd_len=1572864
  9273. lt_cv_to_host_file_cmd=func_convert_file_noop
  9274. lt_cv_to_tool_file_cmd=func_convert_file_noop
  9275. pkg_cv_HWLOC_CFLAGS='-I/home/jusers/makni1/jumax/hwloc-2.0.3/install/include '
  9276. pkg_cv_HWLOC_LIBS='-L/home/jusers/makni1/jumax/hwloc-2.0.3/install/lib -lhwloc '
  9277. ## ----------------- ##
  9278. ## Output variables. ##
  9279. ## ----------------- ##
  9280. ACLOCAL='${SHELL} /home/jusers/makni1/jumax/makni2/starpu.git/build-aux/missing aclocal-1.13'
  9281. AMDEPBACKSLASH='\'
  9282. AMDEP_FALSE='#'
  9283. AMDEP_TRUE=''
  9284. AMTAR='$${TAR-tar}'
  9285. AM_BACKSLASH='\'
  9286. AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
  9287. AM_DEFAULT_VERBOSITY='0'
  9288. AM_V='$(V)'
  9289. AR='ar'
  9290. AS='as'
  9291. ATLASDIR=''
  9292. ATLAS_BLAS_LIB_FALSE=''
  9293. ATLAS_BLAS_LIB_TRUE='#'
  9294. AUTOCONF='${SHELL} /home/jusers/makni1/jumax/makni2/starpu.git/build-aux/missing autoconf'
  9295. AUTOHEADER='${SHELL} /home/jusers/makni1/jumax/makni2/starpu.git/build-aux/missing autoheader'
  9296. AUTOMAKE='${SHELL} /home/jusers/makni1/jumax/makni2/starpu.git/build-aux/missing automake-1.13'
  9297. AVAILABLE_DOC_FALSE=''
  9298. AVAILABLE_DOC_TRUE='#'
  9299. AWK='gawk'
  9300. BLAS_LIB='none'
  9301. BLAS_LIBS=''
  9302. BLAS_OPENBLAS_CFLAGS=''
  9303. BLAS_OPENBLAS_LIBS=''
  9304. BUILD_DOC_FALSE=''
  9305. BUILD_DOC_TRUE='#'
  9306. BUILD_EXAMPLES_FALSE='#'
  9307. BUILD_EXAMPLES_TRUE=''
  9308. BUILD_SOCL_FALSE=''
  9309. BUILD_SOCL_TRUE='#'
  9310. BUILD_STARPUFFT_EXAMPLES_FALSE=''
  9311. BUILD_STARPUFFT_EXAMPLES_TRUE='#'
  9312. BUILD_STARPUFFT_FALSE=''
  9313. BUILD_STARPUFFT_TRUE='#'
  9314. BUILD_STARPURM_EXAMPLES_FALSE=''
  9315. BUILD_STARPURM_EXAMPLES_TRUE='#'
  9316. BUILD_STARPURM_FALSE=''
  9317. BUILD_STARPURM_TRUE='#'
  9318. BUILD_TESTS_FALSE='#'
  9319. BUILD_TESTS_TRUE=''
  9320. CC='gcc'
  9321. CCDEPMODE='depmode=gcc3'
  9322. CC_OR_MPICC='gcc'
  9323. CFLAGS='-O3 -g -O2 -gdwarf-2 -g3 -g '
  9324. COVERAGE='no'
  9325. CPP='gcc -E'
  9326. CPPFLAGS=' -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include -D_GNU_SOURCE -D_FORTIFY_SOURCE=1'
  9327. CXX='g++'
  9328. CXXCPP='g++ -E'
  9329. CXXDEPMODE='depmode=gcc3'
  9330. CXXFLAGS='-O3 -g -O2 -gdwarf-2 -g3 -g '
  9331. CYGPATH_W='echo'
  9332. DEFS='-DHAVE_CONFIG_H'
  9333. DEPDIR='.deps'
  9334. DGELS_LIBS=''
  9335. DLB_CFLAGS=''
  9336. DLB_LIBS=''
  9337. DLLTOOL='false'
  9338. DSYMUTIL=''
  9339. DUMPBIN=''
  9340. ECHO_C=''
  9341. ECHO_N='-n'
  9342. ECHO_T=''
  9343. EGREP='/usr/bin/grep -E'
  9344. EXEEXT=''
  9345. F77='gfortran'
  9346. FC='gfortran'
  9347. FCFLAGS='-O3 -g -O2 -gdwarf-2 -g3 -g '
  9348. FFLAGS='-O3 -g -O2 -gdwarf-2 -g3 -g '
  9349. FFTWF_CFLAGS=''
  9350. FFTWF_LIBS=''
  9351. FFTWL_CFLAGS=''
  9352. FFTWL_LIBS=''
  9353. FFTW_CFLAGS=''
  9354. FFTW_LIBS=''
  9355. FGREP='/usr/bin/grep -F'
  9356. FXTDIR=''
  9357. FXT_CFLAGS=''
  9358. FXT_LDFLAGS=''
  9359. FXT_LIBS=''
  9360. GDB='/opt/rh/devtoolset-8/root/usr/bin/gdb'
  9361. GLOBAL_AM_CFLAGS=' -Wall -Werror=implicit -Werror=implicit-function-declaration'
  9362. GOTODIR=''
  9363. GOTO_BLAS_LIB_FALSE=''
  9364. GOTO_BLAS_LIB_TRUE='#'
  9365. GREP='/usr/bin/grep'
  9366. HAVE_CXX11='1'
  9367. HAVE_FFTWFL=''
  9368. HAVE_OPENGL_FALSE=''
  9369. HAVE_OPENGL_TRUE='#'
  9370. HAVE_X11_FALSE='#'
  9371. HAVE_X11_TRUE=''
  9372. HELP2MAN=''
  9373. HWLOC_CFLAGS='-I/home/jusers/makni1/jumax/hwloc-2.0.3/install/include '
  9374. HWLOC_LIBS='-L/home/jusers/makni1/jumax/hwloc-2.0.3/install/lib -lhwloc '
  9375. HWLOC_REQUIRES='hwloc'
  9376. ICC=''
  9377. INSTALL_DATA='${INSTALL} -m 644'
  9378. INSTALL_PROGRAM='${INSTALL}'
  9379. INSTALL_SCRIPT='${INSTALL}'
  9380. INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
  9381. LD='/opt/rh/devtoolset-8/root/usr/libexec/gcc/x86_64-redhat-linux/8/ld -m elf_x86_64'
  9382. LDFLAGS=' -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl -gdwarf-2 -g3 -g '
  9383. LIBOBJS=''
  9384. LIBS='-lrt -lrt -lpthread '
  9385. LIBSOCL_INTERFACE_AGE='0'
  9386. LIBSOCL_INTERFACE_CURRENT='0'
  9387. LIBSOCL_INTERFACE_REVISION='0'
  9388. LIBSTARPUFFT_INTERFACE_AGE='0'
  9389. LIBSTARPUFFT_INTERFACE_CURRENT='0'
  9390. LIBSTARPUFFT_INTERFACE_REVISION='0'
  9391. LIBSTARPUMPI_INTERFACE_AGE='0'
  9392. LIBSTARPUMPI_INTERFACE_CURRENT='0'
  9393. LIBSTARPUMPI_INTERFACE_REVISION='0'
  9394. LIBSTARPURM_INTERFACE_AGE='0'
  9395. LIBSTARPURM_INTERFACE_CURRENT='0'
  9396. LIBSTARPURM_INTERFACE_REVISION='0'
  9397. LIBSTARPU_INTERFACE_AGE='0'
  9398. LIBSTARPU_INTERFACE_CURRENT='0'
  9399. LIBSTARPU_INTERFACE_REVISION='0'
  9400. LIBSTARPU_LDFLAGS=' -L/home/jusers/makni1/jumax/hwloc-2.0.3/install/lib -lhwloc '
  9401. LIBSTARPU_LINK='libstarpu-1.3.la'
  9402. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  9403. LIPO=''
  9404. LN_S='ln -s'
  9405. LTLIBOBJS=''
  9406. MAGMA_CFLAGS=''
  9407. MAGMA_LIBS=''
  9408. MAKEINFO='${SHELL} /home/jusers/makni1/jumax/makni2/starpu.git/build-aux/missing makeinfo'
  9409. MANIFEST_TOOL=':'
  9410. MKDIR_P='/usr/bin/mkdir -p'
  9411. MKL_BLAS_LIB_FALSE=''
  9412. MKL_BLAS_LIB_TRUE='#'
  9413. MPICC='no'
  9414. MPICC_LDFLAGS=''
  9415. MPICXX='no'
  9416. MPIEXEC=''
  9417. MPIEXEC_ARGS=''
  9418. MPIFORT=''
  9419. NM='/opt/rh/devtoolset-8/root/usr/bin/nm -B'
  9420. NMAD_CFLAGS=''
  9421. NMAD_LIBS=''
  9422. NMEDIT=''
  9423. NO_BLAS_LIB_FALSE='#'
  9424. NO_BLAS_LIB_TRUE=''
  9425. NVCC=''
  9426. NVCCFLAGS=''
  9427. NVCC_CC=''
  9428. OBJDUMP='objdump'
  9429. OBJEXT='o'
  9430. OPENBLAS_CFLAGS=''
  9431. OPENBLAS_LIBS=''
  9432. OPENMP_CFLAGS=''
  9433. OTOOL64=''
  9434. OTOOL=''
  9435. PACKAGE='starpu'
  9436. PACKAGE_BUGREPORT='starpu-devel@lists.gforge.inria.fr'
  9437. PACKAGE_NAME='StarPU'
  9438. PACKAGE_STRING='StarPU 1.3.99'
  9439. PACKAGE_TARNAME='starpu'
  9440. PACKAGE_URL='http://runtime.bordeaux.inria.fr/StarPU/'
  9441. PACKAGE_VERSION='1.3.99'
  9442. PATH_SEPARATOR=':'
  9443. PKG_CONFIG='/usr/bin/pkg-config'
  9444. POTI_CFLAGS=''
  9445. POTI_LIBS=''
  9446. PROG_DATE='date'
  9447. PROG_STAT='gstat'
  9448. RANLIB='ranlib'
  9449. REALBASH='/bin/bash'
  9450. SED='/usr/bin/sed'
  9451. SET_MAKE=''
  9452. SHELL='/bin/sh'
  9453. SIMGRID_CFLAGS=''
  9454. SIMGRID_LIBS=''
  9455. SIMGRID_MC=''
  9456. SOCL_OCL_LIB_OPENCL_DIR=''
  9457. SOCL_VENDORS='vendors/install/socl.icd'
  9458. STARPURM_HAVE_DLB_FALSE=''
  9459. STARPURM_HAVE_DLB_TRUE='#'
  9460. STARPU_BLAS_LDFLAGS=' '
  9461. STARPU_BUILD_DIR='/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu'
  9462. STARPU_BUILD_SC_HYPERVISOR_FALSE=''
  9463. STARPU_BUILD_SC_HYPERVISOR_TRUE='#'
  9464. STARPU_CLUSTER_FALSE=''
  9465. STARPU_CLUSTER_TRUE='#'
  9466. STARPU_COI_CPPFLAGS=''
  9467. STARPU_COI_LDFLAGS=''
  9468. STARPU_COVERAGE_ENABLED_FALSE=''
  9469. STARPU_COVERAGE_ENABLED_TRUE='#'
  9470. STARPU_COVERITY_FALSE=''
  9471. STARPU_COVERITY_TRUE='#'
  9472. STARPU_CROSS_COMPILING_FALSE=''
  9473. STARPU_CROSS_COMPILING_TRUE='#'
  9474. STARPU_CUDA_CPPFLAGS=''
  9475. STARPU_CUDA_FORTRAN_LDFLAGS=''
  9476. STARPU_CUDA_LDFLAGS=''
  9477. STARPU_CUFFT_LDFLAGS=''
  9478. STARPU_CURAND_LDFLAGS=''
  9479. STARPU_DEVEL_FALSE=''
  9480. STARPU_DEVEL_TRUE='#'
  9481. STARPU_EFFECTIVE_VERSION='1.3'
  9482. STARPU_EXPORTED_LIBS=''
  9483. STARPU_EXPORT_DYNAMIC=''
  9484. STARPU_FPGA_CPPFLAGS=' -I/opt/Software/maxeler/maxcompiler-2018.3.1/include/slic -I/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../../FPGA_dev/install/include'
  9485. STARPU_FPGA_LDFLAGS=' -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib -lslic -L/opt/Software/maxeler/maxcompiler-2018.3.1/lib/maxeleros-sim/lib -lmaxeleros -lpthread -lm -lrt -lcurl'
  9486. STARPU_GLPK_LDFLAGS=' '
  9487. STARPU_HAVE_AM111_FALSE='#'
  9488. STARPU_HAVE_AM111_TRUE=''
  9489. STARPU_HAVE_CUFFTDOUBLECOMPLEX_FALSE=''
  9490. STARPU_HAVE_CUFFTDOUBLECOMPLEX_TRUE='#'
  9491. STARPU_HAVE_CXX11='1'
  9492. STARPU_HAVE_CXX11_FALSE='#'
  9493. STARPU_HAVE_CXX11_TRUE=''
  9494. STARPU_HAVE_DARWIN_FALSE=''
  9495. STARPU_HAVE_DARWIN_TRUE='#'
  9496. STARPU_HAVE_F77_FALSE=''
  9497. STARPU_HAVE_F77_H='no'
  9498. STARPU_HAVE_F77_H_FALSE=''
  9499. STARPU_HAVE_F77_H_TRUE='#'
  9500. STARPU_HAVE_F77_TRUE='#'
  9501. STARPU_HAVE_FC_FALSE=''
  9502. STARPU_HAVE_FC_TRUE='#'
  9503. STARPU_HAVE_FFTW=''
  9504. STARPU_HAVE_FFTWF=''
  9505. STARPU_HAVE_FFTWF_FALSE=''
  9506. STARPU_HAVE_FFTWF_TRUE='#'
  9507. STARPU_HAVE_FFTWL_FALSE=''
  9508. STARPU_HAVE_FFTWL_TRUE='#'
  9509. STARPU_HAVE_FFTW_FALSE=''
  9510. STARPU_HAVE_FFTW_TRUE='#'
  9511. STARPU_HAVE_HDF5_FALSE=''
  9512. STARPU_HAVE_HDF5_TRUE='#'
  9513. STARPU_HAVE_HELP2MAN_FALSE=''
  9514. STARPU_HAVE_HELP2MAN_TRUE='#'
  9515. STARPU_HAVE_HWLOC='1'
  9516. STARPU_HAVE_HWLOC_FALSE='#'
  9517. STARPU_HAVE_HWLOC_TRUE=''
  9518. STARPU_HAVE_ICC_FALSE=''
  9519. STARPU_HAVE_ICC_TRUE='#'
  9520. STARPU_HAVE_LEVELDB_FALSE=''
  9521. STARPU_HAVE_LEVELDB_TRUE='#'
  9522. STARPU_HAVE_MAGMA=''
  9523. STARPU_HAVE_MAGMA_FALSE=''
  9524. STARPU_HAVE_MAGMA_TRUE='#'
  9525. STARPU_HAVE_MPIFORT_FALSE=''
  9526. STARPU_HAVE_MPIFORT_TRUE='#'
  9527. STARPU_HAVE_MS_LIB_FALSE=''
  9528. STARPU_HAVE_MS_LIB_TRUE='#'
  9529. STARPU_HAVE_OPENMP_FALSE=''
  9530. STARPU_HAVE_OPENMP_TRUE='#'
  9531. STARPU_HAVE_WINDOWS_FALSE=''
  9532. STARPU_HAVE_WINDOWS_TRUE='#'
  9533. STARPU_HDF5_LDFLAGS=' '
  9534. STARPU_HWLOC_HAVE_TOPOLOGY_DUP_FALSE='#'
  9535. STARPU_HWLOC_HAVE_TOPOLOGY_DUP_TRUE=''
  9536. STARPU_LAPACK_LDFLAGS=''
  9537. STARPU_LEVELDB_LDFLAGS=''
  9538. STARPU_LIBNUMA_LDFLAGS=' '
  9539. STARPU_LINUX_SYS_FALSE='#'
  9540. STARPU_LINUX_SYS_TRUE=''
  9541. STARPU_LONG_CHECK_FALSE=''
  9542. STARPU_LONG_CHECK_TRUE='#'
  9543. STARPU_MAJOR_VERSION='1'
  9544. STARPU_MINOR_VERSION='3'
  9545. STARPU_MPI_CHECK_FALSE=''
  9546. STARPU_MPI_CHECK_TRUE='#'
  9547. STARPU_MS_LIB=''
  9548. STARPU_MS_LIB_ARCH='X64'
  9549. STARPU_NEW_CHECK_FALSE=''
  9550. STARPU_NEW_CHECK_TRUE='#'
  9551. STARPU_OPENBLAS=''
  9552. STARPU_OPENBLAS_LDFLAGS=''
  9553. STARPU_OPENBSD_SYS_FALSE=''
  9554. STARPU_OPENBSD_SYS_TRUE='#'
  9555. STARPU_OPENCL_CPPFLAGS=''
  9556. STARPU_OPENCL_DATAdir=''
  9557. STARPU_OPENCL_LDFLAGS=''
  9558. STARPU_OPENGL_RENDER='no'
  9559. STARPU_OPENGL_RENDER_LDFLAGS=''
  9560. STARPU_OPENMP_FALSE='#'
  9561. STARPU_OPENMP_TRUE=''
  9562. STARPU_PERF_DEBUG='no'
  9563. STARPU_QUICK_CHECK_FALSE=''
  9564. STARPU_QUICK_CHECK_TRUE='#'
  9565. STARPU_RELEASE_VERSION='99'
  9566. STARPU_SANITIZE_FALSE=''
  9567. STARPU_SANITIZE_TRUE='#'
  9568. STARPU_SCIF_CPPFLAGS=''
  9569. STARPU_SCIF_LDFLAGS=''
  9570. STARPU_SC_HYPERVISOR=''
  9571. STARPU_SC_HYPERVISOR_DEBUG='no'
  9572. STARPU_SC_HYPERVISOR_DEBUG_FALSE=''
  9573. STARPU_SC_HYPERVISOR_DEBUG_TRUE='#'
  9574. STARPU_SIMGRID_FALSE=''
  9575. STARPU_SIMGRID_MC_FALSE=''
  9576. STARPU_SIMGRID_MC_TRUE='#'
  9577. STARPU_SIMGRID_TRUE='#'
  9578. STARPU_SRC_DIR='/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/..'
  9579. STARPU_USE_AYUDAME1_FALSE='#'
  9580. STARPU_USE_AYUDAME1_TRUE=''
  9581. STARPU_USE_AYUDAME2_FALSE='#'
  9582. STARPU_USE_AYUDAME2_TRUE=''
  9583. STARPU_USE_CPU='yes'
  9584. STARPU_USE_CPU_FALSE='#'
  9585. STARPU_USE_CPU_TRUE=''
  9586. STARPU_USE_CUDA='no'
  9587. STARPU_USE_CUDA_FALSE=''
  9588. STARPU_USE_CUDA_TRUE='#'
  9589. STARPU_USE_FPGA='yes'
  9590. STARPU_USE_FPGA_FALSE='#'
  9591. STARPU_USE_FPGA_TRUE=''
  9592. STARPU_USE_FXT='no'
  9593. STARPU_USE_FXT_FALSE=''
  9594. STARPU_USE_FXT_TRUE='#'
  9595. STARPU_USE_MIC_FALSE=''
  9596. STARPU_USE_MIC_TRUE='#'
  9597. STARPU_USE_MIN_DGELS_FALSE=''
  9598. STARPU_USE_MIN_DGELS_TRUE='#'
  9599. STARPU_USE_MPI_FALSE=''
  9600. STARPU_USE_MPI_MASTER_SLAVE_FALSE=''
  9601. STARPU_USE_MPI_MASTER_SLAVE_TRUE='#'
  9602. STARPU_USE_MPI_MPI_FALSE=''
  9603. STARPU_USE_MPI_MPI_TRUE='#'
  9604. STARPU_USE_MPI_NMAD_FALSE=''
  9605. STARPU_USE_MPI_NMAD_TRUE='#'
  9606. STARPU_USE_MPI_TRUE='#'
  9607. STARPU_USE_MP_FALSE=''
  9608. STARPU_USE_MP_TRUE='#'
  9609. STARPU_USE_OPENCL='no'
  9610. STARPU_USE_OPENCL_FALSE=''
  9611. STARPU_USE_OPENCL_TRUE='#'
  9612. STARPU_USE_SC_HYPERVISOR_FALSE=''
  9613. STARPU_USE_SC_HYPERVISOR_TRUE='#'
  9614. STARPU_USE_SOCL_FALSE=''
  9615. STARPU_USE_SOCL_TRUE='#'
  9616. STRIP='strip'
  9617. SYSTEM_BLAS_LIB_FALSE=''
  9618. SYSTEM_BLAS_LIB_TRUE='#'
  9619. USE_MPI_FALSE=''
  9620. USE_MPI_TRUE='#'
  9621. VERSION='1.3.99'
  9622. XMKMF=''
  9623. X_CFLAGS=''
  9624. X_EXTRA_LIBS=''
  9625. X_LIBS=''
  9626. X_PRE_LIBS=''
  9627. ac_ct_AR='ar'
  9628. ac_ct_CC='gcc'
  9629. ac_ct_CXX='g++'
  9630. ac_ct_DUMPBIN=''
  9631. ac_ct_F77='gfortran'
  9632. ac_ct_FC='gfortran'
  9633. am__EXEEXT_FALSE=''
  9634. am__EXEEXT_TRUE='#'
  9635. am__fastdepCC_FALSE='#'
  9636. am__fastdepCC_TRUE=''
  9637. am__fastdepCXX_FALSE='#'
  9638. am__fastdepCXX_TRUE=''
  9639. am__include='include'
  9640. am__isrc=' -I$(srcdir)'
  9641. am__leading_dot='.'
  9642. am__nodep='_no'
  9643. am__quote=''
  9644. am__tar='$${TAR-tar} chof - "$$tardir"'
  9645. am__untar='$${TAR-tar} xf -'
  9646. bindir='${exec_prefix}/bin'
  9647. build='x86_64-unknown-linux-gnu'
  9648. build_alias=''
  9649. build_cpu='x86_64'
  9650. build_os='linux-gnu'
  9651. build_vendor='unknown'
  9652. datadir='${datarootdir}'
  9653. datarootdir='${prefix}/share'
  9654. docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
  9655. doxygencommand=''
  9656. dvidir='${docdir}'
  9657. epstopdfcommand=''
  9658. exec_prefix='${prefix}'
  9659. gitcommand=''
  9660. host='x86_64-unknown-linux-gnu'
  9661. host_alias=''
  9662. host_cpu='x86_64'
  9663. host_os='linux-gnu'
  9664. host_vendor='unknown'
  9665. htmldir='${docdir}'
  9666. includedir='${prefix}/include'
  9667. infodir='${datarootdir}/info'
  9668. install_sh='${SHELL} /home/jusers/makni1/jumax/makni2/starpu.git/build-aux/install-sh'
  9669. libdir='${exec_prefix}/lib'
  9670. libexecdir='${exec_prefix}/libexec'
  9671. localedir='${datarootdir}/locale'
  9672. localstatedir='${prefix}/var'
  9673. mandir='${datarootdir}/man'
  9674. mkdir_p='$(MKDIR_P)'
  9675. mpicc_path='no'
  9676. mpicxx_path='no'
  9677. mpiexec_path=''
  9678. mpiexec_path_bis='no'
  9679. mpifort_path=''
  9680. oldincludedir='/usr/include'
  9681. pdfdir='${docdir}'
  9682. pdflatexcommand='/usr/bin/pdflatex'
  9683. pkglibdir='${libdir}/starpu'
  9684. prefix='/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/../install'
  9685. program_transform_name='s,x,x,'
  9686. psdir='${docdir}'
  9687. sbindir='${exec_prefix}/sbin'
  9688. sharedstatedir='${prefix}/com'
  9689. smpirun_path=''
  9690. sysconfdir='${prefix}/etc'
  9691. target='x86_64-unknown-linux-gnu'
  9692. target_alias=''
  9693. target_cpu='x86_64'
  9694. target_os='linux-gnu'
  9695. target_vendor='unknown'
  9696. ## ----------- ##
  9697. ## confdefs.h. ##
  9698. ## ----------- ##
  9699. /* confdefs.h */
  9700. #define PACKAGE_NAME "StarPU"
  9701. #define PACKAGE_TARNAME "starpu"
  9702. #define PACKAGE_VERSION "1.3.99"
  9703. #define PACKAGE_STRING "StarPU 1.3.99"
  9704. #define PACKAGE_BUGREPORT "starpu-devel@lists.gforge.inria.fr"
  9705. #define PACKAGE_URL "http://runtime.bordeaux.inria.fr/StarPU/"
  9706. #define STARPU_MAJOR_VERSION 1
  9707. #define STARPU_MINOR_VERSION 3
  9708. #define STARPU_RELEASE_VERSION 99
  9709. #define PACKAGE "starpu"
  9710. #define VERSION "1.3.99"
  9711. #define STARPU_AUTOFPGA 1
  9712. #define STARPU_MAXFPGADEVS 12
  9713. #define STARPU_USE_FPGA 1
  9714. #define STDC_HEADERS 1
  9715. #define HAVE_SYS_TYPES_H 1
  9716. #define HAVE_SYS_STAT_H 1
  9717. #define HAVE_STDLIB_H 1
  9718. #define HAVE_STRING_H 1
  9719. #define HAVE_MEMORY_H 1
  9720. #define HAVE_STRINGS_H 1
  9721. #define HAVE_INTTYPES_H 1
  9722. #define HAVE_STDINT_H 1
  9723. #define HAVE_UNISTD_H 1
  9724. #define STARPU_NON_BLOCKING_DRIVERS 1
  9725. #define STARPU_MAXMPIDEVS 0
  9726. #define HAVE_CXX11 1
  9727. #define STARPU_HAVE_CXX11 1
  9728. #define HAVE_DLFCN_H 1
  9729. #define LT_OBJDIR ".libs/"
  9730. #define STDC_HEADERS 1
  9731. #define restrict __restrict
  9732. #define STARPU_MIC_USE_RMA 1
  9733. #define STARPU_MAXNUMANODES 2
  9734. #define STARPU_LINUX_SYS 1
  9735. #define SIZEOF_VOID_P 8
  9736. #define STARPU_BUILD_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu"
  9737. #define STARPU_SRC_DIR "/home/jusers/makni1/jumax/makni2/starpu.git/build_starpu/.."
  9738. #define HAVE_UNISTD_H 1
  9739. #define STARPU_HAVE_UNISTD_H 1
  9740. #define STARPU_HAVE_STRUCT_TIMESPEC 1
  9741. #define HAVE_LIBPTHREAD 1
  9742. #define HAVE_SYSCONF 1
  9743. #define HAVE_GETRLIMIT 1
  9744. #define HAVE_SCANDIR 1
  9745. #define HAVE_PTHREAD_SPIN_LOCK 1
  9746. #define STARPU_HAVE_PTHREAD_SPIN_LOCK 1
  9747. #define STARPU_HAVE_PTHREAD_BARRIER 1
  9748. #define HAVE_PTHREAD_SETAFFINITY_NP 1
  9749. #define STARPU_HAVE_PTHREAD_SETNAME_NP 1
  9750. #define HAVE_POSIX_MEMALIGN 1
  9751. #define STARPU_HAVE_POSIX_MEMALIGN 1
  9752. #define HAVE_MEMALIGN 1
  9753. #define STARPU_HAVE_MEMALIGN 1
  9754. #define STARPU_USE_DRAND48 1
  9755. #define STARPU_USE_ERAND48_R 1
  9756. #define STARPU_HAVE_STRERROR_R 1
  9757. #define STARPU_HAVE_SETENV 1
  9758. #define STARPU_HAVE_UNSETENV 1
  9759. #define STARPU_HAVE_NEARBYINTF 1
  9760. #define STARPU_HAVE_RINTF 1
  9761. #define HAVE_MALLOC_H 1
  9762. #define STARPU_HAVE_MALLOC_H 1
  9763. #define STARPU_HAVE_SCHED_YIELD 1
  9764. #define HAVE_AIO_H 1
  9765. #define HAVE_LIBRT 1
  9766. #define HAVE_MKOSTEMP 1
  9767. #define HAVE_MKDTEMP 1
  9768. #define HAVE_PREAD 1
  9769. #define HAVE_PWRITE 1
  9770. #define STARPU_HAVE_SYNC_VAL_COMPARE_AND_SWAP 1
  9771. #define STARPU_HAVE_SYNC_BOOL_COMPARE_AND_SWAP 1
  9772. #define STARPU_HAVE_SYNC_FETCH_AND_ADD 1
  9773. #define STARPU_HAVE_SYNC_FETCH_AND_OR 1
  9774. #define STARPU_HAVE_SYNC_LOCK_TEST_AND_SET 1
  9775. #define STARPU_HAVE_SYNC_SYNCHRONIZE 1
  9776. #define STARPU_HAVE_STATEMENT_EXPRESSIONS 1
  9777. #define STARPU_NMAX_SCHED_CTXS 10
  9778. #define STARPU_MAXCPUS 64
  9779. #define STARPU_USE_CPU 1
  9780. #define STARPU_MAXCUDADEVS 4
  9781. #define STARPU_MAXOPENCLDEVS 8
  9782. #define STARPU_MAXMICDEVS 0
  9783. #define STARPU_MAXMICCORES 120
  9784. #define STARPU_NMAXBUFS 8
  9785. #define STARPU_MAXNODES 16
  9786. #define STARPU_USE_ALLOCATION_CACHE 1
  9787. #define HAVE_LIBRT 1
  9788. #define HAVE_CLOCK_GETTIME 1
  9789. #define STARPU_NMAXWORKERS 80
  9790. #define STARPU_NMAX_COMBINEDWORKERS 64
  9791. #define STARPU_MAXIMPLEMENTATIONS 4
  9792. #define STARPU_HISTORYMAXERROR 50
  9793. #define STARPU_MAXMPKERNELS 10
  9794. #define STARPU_OPENMP 1
  9795. #define STARPU_GDB_PATH "/opt/rh/devtoolset-8/root/usr/bin/gdb"
  9796. #define STARPU_HAVE_X11 1
  9797. #define STARPU_HAVE_HWLOC 1
  9798. #define HAVE_DECL_HWLOC_CUDA_GET_DEVICE_OSDEV_BY_INDEX 0
  9799. #define HAVE_HWLOC_TOPOLOGY_DUP 1
  9800. configure: exit 0