Commit adc3089b authored by claes's avatar claes

*** empty log message ***

parent 91fe11d2
......@@ -593,7 +593,7 @@ EOF
# Create an empty directory database
echo "Creating directory database"
wb_cmd create volume/name=\"directory\"/class=\$DirectoryVolume/ident=254.254.254.253
wb_cmd create volume/directory
return
fi
......@@ -710,9 +710,14 @@ pwrc_delete_func()
then
echo "Project root deleted"
else
echo "Unable to delete project root"
pwrc_status=$pwrc__rootdelete
if rmdir $proot
then
echo "Project root deleted"
else
echo "Unable to delete project root"
pwrc_status=$pwrc__rootdelete
return
fi
fi
fi
......
......@@ -509,7 +509,7 @@ reload_continue()
return
fi
echo -n "Do you wan't to continue ? [y/n/go] "
echo -n "Do you want to continue ? [y/n/go] "
read repl
case $repl in
go ) go=1; return ;;
......@@ -583,6 +583,10 @@ usage()
createload Create new loadfiles.
createboot Create bootfiles for all nodes in the project.
convertge Convert ge graphs.
Note!
The first pass (dumpdb) must be executed on NEWTON and then you must move to
PWR40 and run the following passes beginning with userclasses.
EOF
}
......
......@@ -155,7 +155,7 @@ CompileRtNode()
ld_opt="`eval echo $pwr_obj/rt_io_user.o`"
fi
if g++ $link_debug -L/lib/thread -L$pwrp_lib -L$pwr_lib \
if g++ $link_debug -L/lib/thread -L$pwrp_lib -L$pwrp_cmn/x86_linux/lib -L$pwr_lib \
-o $pwrp_exe/$OutFile \
$pwr_obj/rt_plc_process.o \
$pwrp_obj/${FileName}.o \
......@@ -292,7 +292,7 @@ then
pwrp_gc="$pwrp_tmp"
# Suppress all warnings, -x
cc_cmd="gcc -c -x c -w $cc_debug -D_REENTRANT -DOS_LINUX -I$pwr_inc -I$pwrp_inc -I$pwrp_tmp"
cc_cmd="gcc -c -x c -w $cc_debug -D_REENTRANT -DOS_LINUX -I$pwr_inc -I$pwrp_inc -I$pwrp_tmp -I$pwrp_cmn/common/inc"
FileTypeStr="`echo $vFileType| cut -f $FileTypeIdx -d ,`"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment